File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ const tabularOnelineClauses = expandPhrases([
172
172
'DROP IDENTITY' ,
173
173
'DROP INDEX' ,
174
174
'DROP LANGUAGE' ,
175
- 'DROP MATERIALIZED VIEW' ,
175
+ 'DROP MATERIALIZED VIEW [IF EXISTS] ' ,
176
176
'DROP OPERATOR' ,
177
177
'DROP OPERATOR CLASS' ,
178
178
'DROP OPERATOR FAMILY' ,
@@ -216,7 +216,7 @@ const tabularOnelineClauses = expandPhrases([
216
216
'REFRESH MATERIALIZED VIEW' ,
217
217
'REINDEX' ,
218
218
'RELEASE SAVEPOINT' ,
219
- 'RESET' ,
219
+ 'RESET [ALL|ROLE|SESSION AUTHORIZATION] ' ,
220
220
'REVOKE' ,
221
221
'ROLLBACK' ,
222
222
'ROLLBACK PREPARED' ,
@@ -252,11 +252,15 @@ const reservedPhrases = expandPhrases([
252
252
'PRIMARY KEY' ,
253
253
'GENERATED {ALWAYS | BY DEFAULT} AS IDENTITY' ,
254
254
'ON {UPDATE | DELETE} [SET NULL | SET DEFAULT]' ,
255
+ 'DO {NOTHING | UPDATE}' ,
256
+ 'AS MATERIALIZED' ,
255
257
'{ROWS | RANGE | GROUPS} BETWEEN' ,
256
258
// https://www.postgresql.org/docs/current/datatype-datetime.html
257
259
'[TIMESTAMP | TIME] {WITH | WITHOUT} TIME ZONE' ,
258
260
// comparison operator
259
261
'IS [NOT] DISTINCT FROM' ,
262
+ 'NULLS {FIRST | LAST}' ,
263
+ 'WITH ORDINALITY' ,
260
264
] ) ;
261
265
262
266
// https://www.postgresql.org/docs/14/index.html
You can’t perform that action at this time.
0 commit comments