This repository was archived by the owner on Mar 25, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 1
1
//
2
2
// PostgreSQL reserved words
3
+ // see: https://www.postgresql.org/docs/current/sql-keywords-appendix.html
3
4
//
4
5
module . exports = {
5
6
"AES128" : true ,
@@ -13,6 +14,7 @@ module.exports = {
13
14
"ARRAY" : true ,
14
15
"AS" : true ,
15
16
"ASC" : true ,
17
+ "ASYMMETRIC" : true ,
16
18
"AUTHORIZATION" : true ,
17
19
"BACKUP" : true ,
18
20
"BETWEEN" : true ,
@@ -29,7 +31,9 @@ module.exports = {
29
31
"CREATE" : true ,
30
32
"CREDENTIALS" : true ,
31
33
"CROSS" : true ,
34
+ "CURRENT_CATALOG" : true ,
32
35
"CURRENT_DATE" : true ,
36
+ "CURRENT_ROLE" : true ,
33
37
"CURRENT_TIME" : true ,
34
38
"CURRENT_TIMESTAMP" : true ,
35
39
"CURRENT_USER" : true ,
@@ -54,6 +58,7 @@ module.exports = {
54
58
"EXCEPT" : true ,
55
59
"EXPLICIT" : true ,
56
60
"FALSE" : true ,
61
+ "FETCH" : true ,
57
62
"FOR" : true ,
58
63
"FOREIGN" : true ,
59
64
"FREEZE" : true ,
@@ -76,6 +81,7 @@ module.exports = {
76
81
"IS" : true ,
77
82
"ISNULL" : true ,
78
83
"JOIN" : true ,
84
+ "LATERAL" : true ,
79
85
"LEADING" : true ,
80
86
"LEFT" : true ,
81
87
"LIKE" : true ,
@@ -119,11 +125,13 @@ module.exports = {
119
125
"REJECTLOG" : true ,
120
126
"RESORT" : true ,
121
127
"RESTORE" : true ,
128
+ "RETURNING" : true ,
122
129
"RIGHT" : true ,
123
130
"SELECT" : true ,
124
131
"SESSION_USER" : true ,
125
132
"SIMILAR" : true ,
126
133
"SOME" : true ,
134
+ "SYMMETRIC" : true ,
127
135
"SYSDATE" : true ,
128
136
"SYSTEM" : true ,
129
137
"TABLE" : true ,
@@ -141,10 +149,12 @@ module.exports = {
141
149
"UNIQUE" : true ,
142
150
"USER" : true ,
143
151
"USING" : true ,
152
+ "VARIADIC" : true ,
144
153
"VERBOSE" : true ,
145
154
"WALLET" : true ,
146
155
"WHEN" : true ,
147
156
"WHERE" : true ,
157
+ "WINDOW" : true ,
148
158
"WITH" : true ,
149
159
"WITHOUT" : true ,
150
160
} ;
You can’t perform that action at this time.
0 commit comments