Skip to content

Commit

Permalink
Update keywords list for PostgreSQL 16 (add SYSTEM_USER)
Browse files Browse the repository at this point in the history
  • Loading branch information
nene committed Feb 11, 2024
1 parent 4b97baf commit 454a713
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/keywords/postgresql.keywords.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// https://www.postgresql.org/docs/14/sql-keywords-appendix.html
// TODO: update for Postgres 16
// https://www.postgresql.org/docs/16/sql-keywords-appendix.html
export const postgresqlKeywords: Record<string, boolean> = {
ALL: true, // reserved
ANALYSE: true, // reserved
Expand Down Expand Up @@ -126,6 +125,7 @@ export const postgresqlKeywords: Record<string, boolean> = {
SOME: true, // reserved
// SUBSTRING: true, // (cannot be function or type)
SYMMETRIC: true, // reserved
SYSTEM_USER: true, // reserved
TABLE: true, // reserved
TABLESAMPLE: true, // reserved (can be function or type)
THEN: true, // reserved
Expand Down

0 comments on commit 454a713

Please sign in to comment.