duckdb 0.7.2-dev225.0 → 0.7.2-dev314.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/package.json +1 -1
  2. package/src/duckdb/extension/parquet/column_reader.cpp +5 -6
  3. package/src/duckdb/extension/parquet/include/column_reader.hpp +1 -2
  4. package/src/duckdb/extension/parquet/include/generated_column_reader.hpp +1 -11
  5. package/src/duckdb/extension/parquet/parquet_statistics.cpp +26 -32
  6. package/src/duckdb/src/common/sort/sort_state.cpp +5 -7
  7. package/src/duckdb/src/execution/column_binding_resolver.cpp +6 -0
  8. package/src/duckdb/src/execution/operator/aggregate/physical_perfecthash_aggregate.cpp +4 -5
  9. package/src/duckdb/src/execution/operator/aggregate/physical_window.cpp +1 -1
  10. package/src/duckdb/src/execution/operator/helper/physical_vacuum.cpp +2 -3
  11. package/src/duckdb/src/execution/operator/join/physical_blockwise_nl_join.cpp +32 -6
  12. package/src/duckdb/src/execution/physical_plan/plan_aggregate.cpp +15 -15
  13. package/src/duckdb/src/execution/physical_plan/plan_comparison_join.cpp +18 -12
  14. package/src/duckdb/src/function/aggregate/distributive/bitstring_agg.cpp +6 -13
  15. package/src/duckdb/src/function/aggregate/distributive/count.cpp +2 -4
  16. package/src/duckdb/src/function/aggregate/distributive/sum.cpp +11 -13
  17. package/src/duckdb/src/function/scalar/date/date_diff.cpp +0 -1
  18. package/src/duckdb/src/function/scalar/date/date_part.cpp +17 -25
  19. package/src/duckdb/src/function/scalar/date/date_sub.cpp +0 -1
  20. package/src/duckdb/src/function/scalar/date/date_trunc.cpp +10 -14
  21. package/src/duckdb/src/function/scalar/generic/stats.cpp +2 -4
  22. package/src/duckdb/src/function/scalar/list/flatten.cpp +5 -12
  23. package/src/duckdb/src/function/scalar/list/list_concat.cpp +3 -8
  24. package/src/duckdb/src/function/scalar/list/list_extract.cpp +5 -12
  25. package/src/duckdb/src/function/scalar/list/list_value.cpp +5 -9
  26. package/src/duckdb/src/function/scalar/math/numeric.cpp +14 -17
  27. package/src/duckdb/src/function/scalar/operators/arithmetic.cpp +27 -34
  28. package/src/duckdb/src/function/scalar/string/caseconvert.cpp +2 -6
  29. package/src/duckdb/src/function/scalar/string/instr.cpp +2 -6
  30. package/src/duckdb/src/function/scalar/string/length.cpp +2 -6
  31. package/src/duckdb/src/function/scalar/string/like.cpp +2 -6
  32. package/src/duckdb/src/function/scalar/string/substring.cpp +2 -6
  33. package/src/duckdb/src/function/scalar/struct/struct_extract.cpp +4 -9
  34. package/src/duckdb/src/function/scalar/struct/struct_insert.cpp +10 -13
  35. package/src/duckdb/src/function/scalar/struct/struct_pack.cpp +5 -6
  36. package/src/duckdb/src/function/table/version/pragma_version.cpp +2 -2
  37. package/src/duckdb/src/include/duckdb/execution/operator/aggregate/physical_perfecthash_aggregate.hpp +1 -1
  38. package/src/duckdb/src/include/duckdb/function/aggregate_function.hpp +12 -3
  39. package/src/duckdb/src/include/duckdb/function/scalar_function.hpp +2 -2
  40. package/src/duckdb/src/include/duckdb/planner/bind_context.hpp +2 -0
  41. package/src/duckdb/src/include/duckdb/storage/checkpoint/table_data_writer.hpp +3 -2
  42. package/src/duckdb/src/include/duckdb/storage/compression/chimp/chimp_compress.hpp +2 -2
  43. package/src/duckdb/src/include/duckdb/storage/compression/chimp/chimp_fetch.hpp +1 -1
  44. package/src/duckdb/src/include/duckdb/storage/compression/chimp/chimp_scan.hpp +1 -1
  45. package/src/duckdb/src/include/duckdb/storage/compression/patas/patas_compress.hpp +2 -2
  46. package/src/duckdb/src/include/duckdb/storage/compression/patas/patas_fetch.hpp +1 -1
  47. package/src/duckdb/src/include/duckdb/storage/compression/patas/patas_scan.hpp +1 -1
  48. package/src/duckdb/src/include/duckdb/storage/data_pointer.hpp +5 -2
  49. package/src/duckdb/src/include/duckdb/storage/data_table.hpp +1 -1
  50. package/src/duckdb/src/include/duckdb/storage/statistics/base_statistics.hpp +93 -31
  51. package/src/duckdb/src/include/duckdb/storage/statistics/column_statistics.hpp +22 -3
  52. package/src/duckdb/src/include/duckdb/storage/statistics/distinct_statistics.hpp +6 -6
  53. package/src/duckdb/src/include/duckdb/storage/statistics/list_stats.hpp +41 -0
  54. package/src/duckdb/src/include/duckdb/storage/statistics/numeric_stats.hpp +157 -0
  55. package/src/duckdb/src/include/duckdb/storage/statistics/segment_statistics.hpp +2 -7
  56. package/src/duckdb/src/include/duckdb/storage/statistics/string_stats.hpp +74 -0
  57. package/src/duckdb/src/include/duckdb/storage/statistics/struct_stats.hpp +42 -0
  58. package/src/duckdb/src/include/duckdb/storage/string_uncompressed.hpp +2 -3
  59. package/src/duckdb/src/include/duckdb/storage/table/column_segment.hpp +2 -2
  60. package/src/duckdb/src/include/duckdb/storage/table/persistent_table_data.hpp +2 -1
  61. package/src/duckdb/src/include/duckdb/storage/table/row_group.hpp +4 -3
  62. package/src/duckdb/src/include/duckdb/storage/table/row_group_collection.hpp +3 -2
  63. package/src/duckdb/src/include/duckdb/storage/table/table_statistics.hpp +5 -0
  64. package/src/duckdb/src/main/config.cpp +66 -1
  65. package/src/duckdb/src/optimizer/join_order/cardinality_estimator.cpp +0 -1
  66. package/src/duckdb/src/optimizer/statistics/expression/propagate_aggregate.cpp +9 -3
  67. package/src/duckdb/src/optimizer/statistics/expression/propagate_and_compress.cpp +6 -7
  68. package/src/duckdb/src/optimizer/statistics/expression/propagate_cast.cpp +14 -11
  69. package/src/duckdb/src/optimizer/statistics/expression/propagate_columnref.cpp +1 -1
  70. package/src/duckdb/src/optimizer/statistics/expression/propagate_comparison.cpp +13 -15
  71. package/src/duckdb/src/optimizer/statistics/expression/propagate_conjunction.cpp +0 -1
  72. package/src/duckdb/src/optimizer/statistics/expression/propagate_constant.cpp +3 -75
  73. package/src/duckdb/src/optimizer/statistics/expression/propagate_function.cpp +7 -2
  74. package/src/duckdb/src/optimizer/statistics/expression/propagate_operator.cpp +10 -0
  75. package/src/duckdb/src/optimizer/statistics/operator/propagate_aggregate.cpp +2 -3
  76. package/src/duckdb/src/optimizer/statistics/operator/propagate_filter.cpp +28 -31
  77. package/src/duckdb/src/optimizer/statistics/operator/propagate_join.cpp +4 -5
  78. package/src/duckdb/src/optimizer/statistics/operator/propagate_set_operation.cpp +3 -3
  79. package/src/duckdb/src/optimizer/statistics_propagator.cpp +1 -1
  80. package/src/duckdb/src/parser/transform/tableref/transform_join.cpp +4 -0
  81. package/src/duckdb/src/planner/bind_context.cpp +16 -0
  82. package/src/duckdb/src/planner/binder/query_node/plan_select_node.cpp +0 -1
  83. package/src/duckdb/src/planner/binder/tableref/bind_joinref.cpp +9 -0
  84. package/src/duckdb/src/planner/binder.cpp +2 -1
  85. package/src/duckdb/src/planner/bound_result_modifier.cpp +1 -1
  86. package/src/duckdb/src/planner/expression/bound_window_expression.cpp +1 -1
  87. package/src/duckdb/src/planner/filter/constant_filter.cpp +4 -6
  88. package/src/duckdb/src/storage/checkpoint/row_group_writer.cpp +1 -1
  89. package/src/duckdb/src/storage/checkpoint/table_data_reader.cpp +1 -4
  90. package/src/duckdb/src/storage/checkpoint/table_data_writer.cpp +4 -4
  91. package/src/duckdb/src/storage/compression/bitpacking.cpp +3 -3
  92. package/src/duckdb/src/storage/compression/fixed_size_uncompressed.cpp +3 -3
  93. package/src/duckdb/src/storage/compression/numeric_constant.cpp +9 -10
  94. package/src/duckdb/src/storage/compression/patas.cpp +1 -1
  95. package/src/duckdb/src/storage/compression/rle.cpp +2 -2
  96. package/src/duckdb/src/storage/compression/validity_uncompressed.cpp +5 -5
  97. package/src/duckdb/src/storage/data_table.cpp +4 -6
  98. package/src/duckdb/src/storage/statistics/base_statistics.cpp +373 -128
  99. package/src/duckdb/src/storage/statistics/column_statistics.cpp +58 -3
  100. package/src/duckdb/src/storage/statistics/distinct_statistics.cpp +4 -9
  101. package/src/duckdb/src/storage/statistics/list_stats.cpp +117 -0
  102. package/src/duckdb/src/storage/statistics/numeric_stats.cpp +529 -0
  103. package/src/duckdb/src/storage/statistics/segment_statistics.cpp +2 -11
  104. package/src/duckdb/src/storage/statistics/string_stats.cpp +273 -0
  105. package/src/duckdb/src/storage/statistics/struct_stats.cpp +131 -0
  106. package/src/duckdb/src/storage/storage_info.cpp +1 -1
  107. package/src/duckdb/src/storage/table/column_checkpoint_state.cpp +3 -4
  108. package/src/duckdb/src/storage/table/column_data.cpp +16 -14
  109. package/src/duckdb/src/storage/table/column_data_checkpointer.cpp +2 -3
  110. package/src/duckdb/src/storage/table/column_segment.cpp +6 -8
  111. package/src/duckdb/src/storage/table/list_column_data.cpp +7 -11
  112. package/src/duckdb/src/storage/table/row_group.cpp +24 -23
  113. package/src/duckdb/src/storage/table/row_group_collection.cpp +12 -12
  114. package/src/duckdb/src/storage/table/standard_column_data.cpp +6 -6
  115. package/src/duckdb/src/storage/table/struct_column_data.cpp +15 -16
  116. package/src/duckdb/src/storage/table/table_statistics.cpp +27 -7
  117. package/src/duckdb/src/storage/table/update_segment.cpp +10 -12
  118. package/src/duckdb/third_party/libpg_query/include/parser/gram.hpp +923 -919
  119. package/src/duckdb/third_party/libpg_query/include/parser/kwlist.hpp +2 -0
  120. package/src/duckdb/third_party/libpg_query/src_backend_parser_gram.cpp +15684 -15571
  121. package/src/duckdb/ub_src_storage_statistics.cpp +4 -6
  122. package/src/duckdb/src/include/duckdb/storage/statistics/list_statistics.hpp +0 -36
  123. package/src/duckdb/src/include/duckdb/storage/statistics/numeric_statistics.hpp +0 -75
  124. package/src/duckdb/src/include/duckdb/storage/statistics/string_statistics.hpp +0 -49
  125. package/src/duckdb/src/include/duckdb/storage/statistics/struct_statistics.hpp +0 -36
  126. package/src/duckdb/src/include/duckdb/storage/statistics/validity_statistics.hpp +0 -45
  127. package/src/duckdb/src/storage/statistics/list_statistics.cpp +0 -94
  128. package/src/duckdb/src/storage/statistics/numeric_statistics.cpp +0 -307
  129. package/src/duckdb/src/storage/statistics/string_statistics.cpp +0 -220
  130. package/src/duckdb/src/storage/statistics/struct_statistics.cpp +0 -108
  131. package/src/duckdb/src/storage/statistics/validity_statistics.cpp +0 -91
@@ -72,465 +72,467 @@
72
72
  ANALYSE = 288,
73
73
  ANALYZE = 289,
74
74
  AND = 290,
75
- ANY = 291,
76
- ARRAY = 292,
77
- AS = 293,
78
- ASC_P = 294,
79
- ASSERTION = 295,
80
- ASSIGNMENT = 296,
81
- ASYMMETRIC = 297,
82
- AT = 298,
83
- ATTACH = 299,
84
- ATTRIBUTE = 300,
85
- AUTHORIZATION = 301,
86
- BACKWARD = 302,
87
- BEFORE = 303,
88
- BEGIN_P = 304,
89
- BETWEEN = 305,
90
- BIGINT = 306,
91
- BINARY = 307,
92
- BIT = 308,
93
- BOOLEAN_P = 309,
94
- BOTH = 310,
95
- BY = 311,
96
- CACHE = 312,
97
- CALL_P = 313,
98
- CALLED = 314,
99
- CASCADE = 315,
100
- CASCADED = 316,
101
- CASE = 317,
102
- CAST = 318,
103
- CATALOG_P = 319,
104
- CHAIN = 320,
105
- CHAR_P = 321,
106
- CHARACTER = 322,
107
- CHARACTERISTICS = 323,
108
- CHECK_P = 324,
109
- CHECKPOINT = 325,
110
- CLASS = 326,
111
- CLOSE = 327,
112
- CLUSTER = 328,
113
- COALESCE = 329,
114
- COLLATE = 330,
115
- COLLATION = 331,
116
- COLUMN = 332,
117
- COLUMNS = 333,
118
- COMMENT = 334,
119
- COMMENTS = 335,
120
- COMMIT = 336,
121
- COMMITTED = 337,
122
- COMPRESSION = 338,
123
- CONCURRENTLY = 339,
124
- CONFIGURATION = 340,
125
- CONFLICT = 341,
126
- CONNECTION = 342,
127
- CONSTRAINT = 343,
128
- CONSTRAINTS = 344,
129
- CONTENT_P = 345,
130
- CONTINUE_P = 346,
131
- CONVERSION_P = 347,
132
- COPY = 348,
133
- COST = 349,
134
- CREATE_P = 350,
135
- CROSS = 351,
136
- CSV = 352,
137
- CUBE = 353,
138
- CURRENT_P = 354,
139
- CURRENT_CATALOG = 355,
140
- CURRENT_DATE = 356,
141
- CURRENT_ROLE = 357,
142
- CURRENT_SCHEMA = 358,
143
- CURRENT_TIME = 359,
144
- CURRENT_TIMESTAMP = 360,
145
- CURRENT_USER = 361,
146
- CURSOR = 362,
147
- CYCLE = 363,
148
- DATA_P = 364,
149
- DATABASE = 365,
150
- DAY_P = 366,
151
- DAYS_P = 367,
152
- DEALLOCATE = 368,
153
- DEC = 369,
154
- DECIMAL_P = 370,
155
- DECLARE = 371,
156
- DEFAULT = 372,
157
- DEFAULTS = 373,
158
- DEFERRABLE = 374,
159
- DEFERRED = 375,
160
- DEFINER = 376,
161
- DELETE_P = 377,
162
- DELIMITER = 378,
163
- DELIMITERS = 379,
164
- DEPENDS = 380,
165
- DESC_P = 381,
166
- DESCRIBE = 382,
167
- DETACH = 383,
168
- DICTIONARY = 384,
169
- DISABLE_P = 385,
170
- DISCARD = 386,
171
- DISTINCT = 387,
172
- DO = 388,
173
- DOCUMENT_P = 389,
174
- DOMAIN_P = 390,
175
- DOUBLE_P = 391,
176
- DROP = 392,
177
- EACH = 393,
178
- ELSE = 394,
179
- ENABLE_P = 395,
180
- ENCODING = 396,
181
- ENCRYPTED = 397,
182
- END_P = 398,
183
- ENUM_P = 399,
184
- ESCAPE = 400,
185
- EVENT = 401,
186
- EXCEPT = 402,
187
- EXCLUDE = 403,
188
- EXCLUDING = 404,
189
- EXCLUSIVE = 405,
190
- EXECUTE = 406,
191
- EXISTS = 407,
192
- EXPLAIN = 408,
193
- EXPORT_P = 409,
194
- EXPORT_STATE = 410,
195
- EXTENSION = 411,
196
- EXTERNAL = 412,
197
- EXTRACT = 413,
198
- FALSE_P = 414,
199
- FAMILY = 415,
200
- FETCH = 416,
201
- FILTER = 417,
202
- FIRST_P = 418,
203
- FLOAT_P = 419,
204
- FOLLOWING = 420,
205
- FOR = 421,
206
- FORCE = 422,
207
- FOREIGN = 423,
208
- FORWARD = 424,
209
- FREEZE = 425,
210
- FROM = 426,
211
- FULL = 427,
212
- FUNCTION = 428,
213
- FUNCTIONS = 429,
214
- GENERATED = 430,
215
- GLOB = 431,
216
- GLOBAL = 432,
217
- GRANT = 433,
218
- GRANTED = 434,
219
- GROUP_P = 435,
220
- GROUPING = 436,
221
- GROUPING_ID = 437,
222
- HANDLER = 438,
223
- HAVING = 439,
224
- HEADER_P = 440,
225
- HOLD = 441,
226
- HOUR_P = 442,
227
- HOURS_P = 443,
228
- IDENTITY_P = 444,
229
- IF_P = 445,
230
- IGNORE_P = 446,
231
- ILIKE = 447,
232
- IMMEDIATE = 448,
233
- IMMUTABLE = 449,
234
- IMPLICIT_P = 450,
235
- IMPORT_P = 451,
236
- IN_P = 452,
237
- INCLUDE_P = 453,
238
- INCLUDING = 454,
239
- INCREMENT = 455,
240
- INDEX = 456,
241
- INDEXES = 457,
242
- INHERIT = 458,
243
- INHERITS = 459,
244
- INITIALLY = 460,
245
- INLINE_P = 461,
246
- INNER_P = 462,
247
- INOUT = 463,
248
- INPUT_P = 464,
249
- INSENSITIVE = 465,
250
- INSERT = 466,
251
- INSTALL = 467,
252
- INSTEAD = 468,
253
- INT_P = 469,
254
- INTEGER = 470,
255
- INTERSECT = 471,
256
- INTERVAL = 472,
257
- INTO = 473,
258
- INVOKER = 474,
259
- IS = 475,
260
- ISNULL = 476,
261
- ISOLATION = 477,
262
- JOIN = 478,
263
- JSON = 479,
264
- KEY = 480,
265
- LABEL = 481,
266
- LANGUAGE = 482,
267
- LARGE_P = 483,
268
- LAST_P = 484,
269
- LATERAL_P = 485,
270
- LEADING = 486,
271
- LEAKPROOF = 487,
272
- LEFT = 488,
273
- LEVEL = 489,
274
- LIKE = 490,
275
- LIMIT = 491,
276
- LISTEN = 492,
277
- LOAD = 493,
278
- LOCAL = 494,
279
- LOCALTIME = 495,
280
- LOCALTIMESTAMP = 496,
281
- LOCATION = 497,
282
- LOCK_P = 498,
283
- LOCKED = 499,
284
- LOGGED = 500,
285
- MACRO = 501,
286
- MAP = 502,
287
- MAPPING = 503,
288
- MATCH = 504,
289
- MATERIALIZED = 505,
290
- MAXVALUE = 506,
291
- METHOD = 507,
292
- MICROSECOND_P = 508,
293
- MICROSECONDS_P = 509,
294
- MILLISECOND_P = 510,
295
- MILLISECONDS_P = 511,
296
- MINUTE_P = 512,
297
- MINUTES_P = 513,
298
- MINVALUE = 514,
299
- MODE = 515,
300
- MONTH_P = 516,
301
- MONTHS_P = 517,
302
- MOVE = 518,
303
- NAME_P = 519,
304
- NAMES = 520,
305
- NATIONAL = 521,
306
- NATURAL = 522,
307
- NCHAR = 523,
308
- NEW = 524,
309
- NEXT = 525,
310
- NO = 526,
311
- NONE = 527,
312
- NOT = 528,
313
- NOTHING = 529,
314
- NOTIFY = 530,
315
- NOTNULL = 531,
316
- NOWAIT = 532,
317
- NULL_P = 533,
318
- NULLIF = 534,
319
- NULLS_P = 535,
320
- NUMERIC = 536,
321
- OBJECT_P = 537,
322
- OF = 538,
323
- OFF = 539,
324
- OFFSET = 540,
325
- OIDS = 541,
326
- OLD = 542,
327
- ON = 543,
328
- ONLY = 544,
329
- OPERATOR = 545,
330
- OPTION = 546,
331
- OPTIONS = 547,
332
- OR = 548,
333
- ORDER = 549,
334
- ORDINALITY = 550,
335
- OUT_P = 551,
336
- OUTER_P = 552,
337
- OVER = 553,
338
- OVERLAPS = 554,
339
- OVERLAY = 555,
340
- OVERRIDING = 556,
341
- OWNED = 557,
342
- OWNER = 558,
343
- PARALLEL = 559,
344
- PARSER = 560,
345
- PARTIAL = 561,
346
- PARTITION = 562,
347
- PASSING = 563,
348
- PASSWORD = 564,
349
- PERCENT = 565,
350
- PIVOT = 566,
351
- PIVOT_LONGER = 567,
352
- PIVOT_WIDER = 568,
353
- PLACING = 569,
354
- PLANS = 570,
355
- POLICY = 571,
356
- POSITION = 572,
357
- POSITIONAL = 573,
358
- PRAGMA_P = 574,
359
- PRECEDING = 575,
360
- PRECISION = 576,
361
- PREPARE = 577,
362
- PREPARED = 578,
363
- PRESERVE = 579,
364
- PRIMARY = 580,
365
- PRIOR = 581,
366
- PRIVILEGES = 582,
367
- PROCEDURAL = 583,
368
- PROCEDURE = 584,
369
- PROGRAM = 585,
370
- PUBLICATION = 586,
371
- QUALIFY = 587,
372
- QUOTE = 588,
373
- RANGE = 589,
374
- READ_P = 590,
375
- REAL = 591,
376
- REASSIGN = 592,
377
- RECHECK = 593,
378
- RECURSIVE = 594,
379
- REF = 595,
380
- REFERENCES = 596,
381
- REFERENCING = 597,
382
- REFRESH = 598,
383
- REINDEX = 599,
384
- RELATIVE_P = 600,
385
- RELEASE = 601,
386
- RENAME = 602,
387
- REPEATABLE = 603,
388
- REPLACE = 604,
389
- REPLICA = 605,
390
- RESET = 606,
391
- RESPECT_P = 607,
392
- RESTART = 608,
393
- RESTRICT = 609,
394
- RETURNING = 610,
395
- RETURNS = 611,
396
- REVOKE = 612,
397
- RIGHT = 613,
398
- ROLE = 614,
399
- ROLLBACK = 615,
400
- ROLLUP = 616,
401
- ROW = 617,
402
- ROWS = 618,
403
- RULE = 619,
404
- SAMPLE = 620,
405
- SAVEPOINT = 621,
406
- SCHEMA = 622,
407
- SCHEMAS = 623,
408
- SCROLL = 624,
409
- SEARCH = 625,
410
- SECOND_P = 626,
411
- SECONDS_P = 627,
412
- SECURITY = 628,
413
- SELECT = 629,
414
- SEQUENCE = 630,
415
- SEQUENCES = 631,
416
- SERIALIZABLE = 632,
417
- SERVER = 633,
418
- SESSION = 634,
419
- SESSION_USER = 635,
420
- SET = 636,
421
- SETOF = 637,
422
- SETS = 638,
423
- SHARE = 639,
424
- SHOW = 640,
425
- SIMILAR = 641,
426
- SIMPLE = 642,
427
- SKIP = 643,
428
- SMALLINT = 644,
429
- SNAPSHOT = 645,
430
- SOME = 646,
431
- SQL_P = 647,
432
- STABLE = 648,
433
- STANDALONE_P = 649,
434
- START = 650,
435
- STATEMENT = 651,
436
- STATISTICS = 652,
437
- STDIN = 653,
438
- STDOUT = 654,
439
- STORAGE = 655,
440
- STORED = 656,
441
- STRICT_P = 657,
442
- STRIP_P = 658,
443
- STRUCT = 659,
444
- SUBSCRIPTION = 660,
445
- SUBSTRING = 661,
446
- SUMMARIZE = 662,
447
- SYMMETRIC = 663,
448
- SYSID = 664,
449
- SYSTEM_P = 665,
450
- TABLE = 666,
451
- TABLES = 667,
452
- TABLESAMPLE = 668,
453
- TABLESPACE = 669,
454
- TEMP = 670,
455
- TEMPLATE = 671,
456
- TEMPORARY = 672,
457
- TEXT_P = 673,
458
- THEN = 674,
459
- TIME = 675,
460
- TIMESTAMP = 676,
461
- TO = 677,
462
- TRAILING = 678,
463
- TRANSACTION = 679,
464
- TRANSFORM = 680,
465
- TREAT = 681,
466
- TRIGGER = 682,
467
- TRIM = 683,
468
- TRUE_P = 684,
469
- TRUNCATE = 685,
470
- TRUSTED = 686,
471
- TRY_CAST = 687,
472
- TYPE_P = 688,
473
- TYPES_P = 689,
474
- UNBOUNDED = 690,
475
- UNCOMMITTED = 691,
476
- UNENCRYPTED = 692,
477
- UNION = 693,
478
- UNIQUE = 694,
479
- UNKNOWN = 695,
480
- UNLISTEN = 696,
481
- UNLOGGED = 697,
482
- UNPIVOT = 698,
483
- UNTIL = 699,
484
- UPDATE = 700,
485
- USE_P = 701,
486
- USER = 702,
487
- USING = 703,
488
- VACUUM = 704,
489
- VALID = 705,
490
- VALIDATE = 706,
491
- VALIDATOR = 707,
492
- VALUE_P = 708,
493
- VALUES = 709,
494
- VARCHAR = 710,
495
- VARIADIC = 711,
496
- VARYING = 712,
497
- VERBOSE = 713,
498
- VERSION_P = 714,
499
- VIEW = 715,
500
- VIEWS = 716,
501
- VIRTUAL = 717,
502
- VOLATILE = 718,
503
- WHEN = 719,
504
- WHERE = 720,
505
- WHITESPACE_P = 721,
506
- WINDOW = 722,
507
- WITH = 723,
508
- WITHIN = 724,
509
- WITHOUT = 725,
510
- WORK = 726,
511
- WRAPPER = 727,
512
- WRITE_P = 728,
513
- XML_P = 729,
514
- XMLATTRIBUTES = 730,
515
- XMLCONCAT = 731,
516
- XMLELEMENT = 732,
517
- XMLEXISTS = 733,
518
- XMLFOREST = 734,
519
- XMLNAMESPACES = 735,
520
- XMLPARSE = 736,
521
- XMLPI = 737,
522
- XMLROOT = 738,
523
- XMLSERIALIZE = 739,
524
- XMLTABLE = 740,
525
- YEAR_P = 741,
526
- YEARS_P = 742,
527
- YES_P = 743,
528
- ZONE = 744,
529
- NOT_LA = 745,
530
- NULLS_LA = 746,
531
- WITH_LA = 747,
532
- POSTFIXOP = 748,
533
- UMINUS = 749
75
+ ANTI = 291,
76
+ ANY = 292,
77
+ ARRAY = 293,
78
+ AS = 294,
79
+ ASC_P = 295,
80
+ ASSERTION = 296,
81
+ ASSIGNMENT = 297,
82
+ ASYMMETRIC = 298,
83
+ AT = 299,
84
+ ATTACH = 300,
85
+ ATTRIBUTE = 301,
86
+ AUTHORIZATION = 302,
87
+ BACKWARD = 303,
88
+ BEFORE = 304,
89
+ BEGIN_P = 305,
90
+ BETWEEN = 306,
91
+ BIGINT = 307,
92
+ BINARY = 308,
93
+ BIT = 309,
94
+ BOOLEAN_P = 310,
95
+ BOTH = 311,
96
+ BY = 312,
97
+ CACHE = 313,
98
+ CALL_P = 314,
99
+ CALLED = 315,
100
+ CASCADE = 316,
101
+ CASCADED = 317,
102
+ CASE = 318,
103
+ CAST = 319,
104
+ CATALOG_P = 320,
105
+ CHAIN = 321,
106
+ CHAR_P = 322,
107
+ CHARACTER = 323,
108
+ CHARACTERISTICS = 324,
109
+ CHECK_P = 325,
110
+ CHECKPOINT = 326,
111
+ CLASS = 327,
112
+ CLOSE = 328,
113
+ CLUSTER = 329,
114
+ COALESCE = 330,
115
+ COLLATE = 331,
116
+ COLLATION = 332,
117
+ COLUMN = 333,
118
+ COLUMNS = 334,
119
+ COMMENT = 335,
120
+ COMMENTS = 336,
121
+ COMMIT = 337,
122
+ COMMITTED = 338,
123
+ COMPRESSION = 339,
124
+ CONCURRENTLY = 340,
125
+ CONFIGURATION = 341,
126
+ CONFLICT = 342,
127
+ CONNECTION = 343,
128
+ CONSTRAINT = 344,
129
+ CONSTRAINTS = 345,
130
+ CONTENT_P = 346,
131
+ CONTINUE_P = 347,
132
+ CONVERSION_P = 348,
133
+ COPY = 349,
134
+ COST = 350,
135
+ CREATE_P = 351,
136
+ CROSS = 352,
137
+ CSV = 353,
138
+ CUBE = 354,
139
+ CURRENT_P = 355,
140
+ CURRENT_CATALOG = 356,
141
+ CURRENT_DATE = 357,
142
+ CURRENT_ROLE = 358,
143
+ CURRENT_SCHEMA = 359,
144
+ CURRENT_TIME = 360,
145
+ CURRENT_TIMESTAMP = 361,
146
+ CURRENT_USER = 362,
147
+ CURSOR = 363,
148
+ CYCLE = 364,
149
+ DATA_P = 365,
150
+ DATABASE = 366,
151
+ DAY_P = 367,
152
+ DAYS_P = 368,
153
+ DEALLOCATE = 369,
154
+ DEC = 370,
155
+ DECIMAL_P = 371,
156
+ DECLARE = 372,
157
+ DEFAULT = 373,
158
+ DEFAULTS = 374,
159
+ DEFERRABLE = 375,
160
+ DEFERRED = 376,
161
+ DEFINER = 377,
162
+ DELETE_P = 378,
163
+ DELIMITER = 379,
164
+ DELIMITERS = 380,
165
+ DEPENDS = 381,
166
+ DESC_P = 382,
167
+ DESCRIBE = 383,
168
+ DETACH = 384,
169
+ DICTIONARY = 385,
170
+ DISABLE_P = 386,
171
+ DISCARD = 387,
172
+ DISTINCT = 388,
173
+ DO = 389,
174
+ DOCUMENT_P = 390,
175
+ DOMAIN_P = 391,
176
+ DOUBLE_P = 392,
177
+ DROP = 393,
178
+ EACH = 394,
179
+ ELSE = 395,
180
+ ENABLE_P = 396,
181
+ ENCODING = 397,
182
+ ENCRYPTED = 398,
183
+ END_P = 399,
184
+ ENUM_P = 400,
185
+ ESCAPE = 401,
186
+ EVENT = 402,
187
+ EXCEPT = 403,
188
+ EXCLUDE = 404,
189
+ EXCLUDING = 405,
190
+ EXCLUSIVE = 406,
191
+ EXECUTE = 407,
192
+ EXISTS = 408,
193
+ EXPLAIN = 409,
194
+ EXPORT_P = 410,
195
+ EXPORT_STATE = 411,
196
+ EXTENSION = 412,
197
+ EXTERNAL = 413,
198
+ EXTRACT = 414,
199
+ FALSE_P = 415,
200
+ FAMILY = 416,
201
+ FETCH = 417,
202
+ FILTER = 418,
203
+ FIRST_P = 419,
204
+ FLOAT_P = 420,
205
+ FOLLOWING = 421,
206
+ FOR = 422,
207
+ FORCE = 423,
208
+ FOREIGN = 424,
209
+ FORWARD = 425,
210
+ FREEZE = 426,
211
+ FROM = 427,
212
+ FULL = 428,
213
+ FUNCTION = 429,
214
+ FUNCTIONS = 430,
215
+ GENERATED = 431,
216
+ GLOB = 432,
217
+ GLOBAL = 433,
218
+ GRANT = 434,
219
+ GRANTED = 435,
220
+ GROUP_P = 436,
221
+ GROUPING = 437,
222
+ GROUPING_ID = 438,
223
+ HANDLER = 439,
224
+ HAVING = 440,
225
+ HEADER_P = 441,
226
+ HOLD = 442,
227
+ HOUR_P = 443,
228
+ HOURS_P = 444,
229
+ IDENTITY_P = 445,
230
+ IF_P = 446,
231
+ IGNORE_P = 447,
232
+ ILIKE = 448,
233
+ IMMEDIATE = 449,
234
+ IMMUTABLE = 450,
235
+ IMPLICIT_P = 451,
236
+ IMPORT_P = 452,
237
+ IN_P = 453,
238
+ INCLUDE_P = 454,
239
+ INCLUDING = 455,
240
+ INCREMENT = 456,
241
+ INDEX = 457,
242
+ INDEXES = 458,
243
+ INHERIT = 459,
244
+ INHERITS = 460,
245
+ INITIALLY = 461,
246
+ INLINE_P = 462,
247
+ INNER_P = 463,
248
+ INOUT = 464,
249
+ INPUT_P = 465,
250
+ INSENSITIVE = 466,
251
+ INSERT = 467,
252
+ INSTALL = 468,
253
+ INSTEAD = 469,
254
+ INT_P = 470,
255
+ INTEGER = 471,
256
+ INTERSECT = 472,
257
+ INTERVAL = 473,
258
+ INTO = 474,
259
+ INVOKER = 475,
260
+ IS = 476,
261
+ ISNULL = 477,
262
+ ISOLATION = 478,
263
+ JOIN = 479,
264
+ JSON = 480,
265
+ KEY = 481,
266
+ LABEL = 482,
267
+ LANGUAGE = 483,
268
+ LARGE_P = 484,
269
+ LAST_P = 485,
270
+ LATERAL_P = 486,
271
+ LEADING = 487,
272
+ LEAKPROOF = 488,
273
+ LEFT = 489,
274
+ LEVEL = 490,
275
+ LIKE = 491,
276
+ LIMIT = 492,
277
+ LISTEN = 493,
278
+ LOAD = 494,
279
+ LOCAL = 495,
280
+ LOCALTIME = 496,
281
+ LOCALTIMESTAMP = 497,
282
+ LOCATION = 498,
283
+ LOCK_P = 499,
284
+ LOCKED = 500,
285
+ LOGGED = 501,
286
+ MACRO = 502,
287
+ MAP = 503,
288
+ MAPPING = 504,
289
+ MATCH = 505,
290
+ MATERIALIZED = 506,
291
+ MAXVALUE = 507,
292
+ METHOD = 508,
293
+ MICROSECOND_P = 509,
294
+ MICROSECONDS_P = 510,
295
+ MILLISECOND_P = 511,
296
+ MILLISECONDS_P = 512,
297
+ MINUTE_P = 513,
298
+ MINUTES_P = 514,
299
+ MINVALUE = 515,
300
+ MODE = 516,
301
+ MONTH_P = 517,
302
+ MONTHS_P = 518,
303
+ MOVE = 519,
304
+ NAME_P = 520,
305
+ NAMES = 521,
306
+ NATIONAL = 522,
307
+ NATURAL = 523,
308
+ NCHAR = 524,
309
+ NEW = 525,
310
+ NEXT = 526,
311
+ NO = 527,
312
+ NONE = 528,
313
+ NOT = 529,
314
+ NOTHING = 530,
315
+ NOTIFY = 531,
316
+ NOTNULL = 532,
317
+ NOWAIT = 533,
318
+ NULL_P = 534,
319
+ NULLIF = 535,
320
+ NULLS_P = 536,
321
+ NUMERIC = 537,
322
+ OBJECT_P = 538,
323
+ OF = 539,
324
+ OFF = 540,
325
+ OFFSET = 541,
326
+ OIDS = 542,
327
+ OLD = 543,
328
+ ON = 544,
329
+ ONLY = 545,
330
+ OPERATOR = 546,
331
+ OPTION = 547,
332
+ OPTIONS = 548,
333
+ OR = 549,
334
+ ORDER = 550,
335
+ ORDINALITY = 551,
336
+ OUT_P = 552,
337
+ OUTER_P = 553,
338
+ OVER = 554,
339
+ OVERLAPS = 555,
340
+ OVERLAY = 556,
341
+ OVERRIDING = 557,
342
+ OWNED = 558,
343
+ OWNER = 559,
344
+ PARALLEL = 560,
345
+ PARSER = 561,
346
+ PARTIAL = 562,
347
+ PARTITION = 563,
348
+ PASSING = 564,
349
+ PASSWORD = 565,
350
+ PERCENT = 566,
351
+ PIVOT = 567,
352
+ PIVOT_LONGER = 568,
353
+ PIVOT_WIDER = 569,
354
+ PLACING = 570,
355
+ PLANS = 571,
356
+ POLICY = 572,
357
+ POSITION = 573,
358
+ POSITIONAL = 574,
359
+ PRAGMA_P = 575,
360
+ PRECEDING = 576,
361
+ PRECISION = 577,
362
+ PREPARE = 578,
363
+ PREPARED = 579,
364
+ PRESERVE = 580,
365
+ PRIMARY = 581,
366
+ PRIOR = 582,
367
+ PRIVILEGES = 583,
368
+ PROCEDURAL = 584,
369
+ PROCEDURE = 585,
370
+ PROGRAM = 586,
371
+ PUBLICATION = 587,
372
+ QUALIFY = 588,
373
+ QUOTE = 589,
374
+ RANGE = 590,
375
+ READ_P = 591,
376
+ REAL = 592,
377
+ REASSIGN = 593,
378
+ RECHECK = 594,
379
+ RECURSIVE = 595,
380
+ REF = 596,
381
+ REFERENCES = 597,
382
+ REFERENCING = 598,
383
+ REFRESH = 599,
384
+ REINDEX = 600,
385
+ RELATIVE_P = 601,
386
+ RELEASE = 602,
387
+ RENAME = 603,
388
+ REPEATABLE = 604,
389
+ REPLACE = 605,
390
+ REPLICA = 606,
391
+ RESET = 607,
392
+ RESPECT_P = 608,
393
+ RESTART = 609,
394
+ RESTRICT = 610,
395
+ RETURNING = 611,
396
+ RETURNS = 612,
397
+ REVOKE = 613,
398
+ RIGHT = 614,
399
+ ROLE = 615,
400
+ ROLLBACK = 616,
401
+ ROLLUP = 617,
402
+ ROW = 618,
403
+ ROWS = 619,
404
+ RULE = 620,
405
+ SAMPLE = 621,
406
+ SAVEPOINT = 622,
407
+ SCHEMA = 623,
408
+ SCHEMAS = 624,
409
+ SCROLL = 625,
410
+ SEARCH = 626,
411
+ SECOND_P = 627,
412
+ SECONDS_P = 628,
413
+ SECURITY = 629,
414
+ SELECT = 630,
415
+ SEMI = 631,
416
+ SEQUENCE = 632,
417
+ SEQUENCES = 633,
418
+ SERIALIZABLE = 634,
419
+ SERVER = 635,
420
+ SESSION = 636,
421
+ SESSION_USER = 637,
422
+ SET = 638,
423
+ SETOF = 639,
424
+ SETS = 640,
425
+ SHARE = 641,
426
+ SHOW = 642,
427
+ SIMILAR = 643,
428
+ SIMPLE = 644,
429
+ SKIP = 645,
430
+ SMALLINT = 646,
431
+ SNAPSHOT = 647,
432
+ SOME = 648,
433
+ SQL_P = 649,
434
+ STABLE = 650,
435
+ STANDALONE_P = 651,
436
+ START = 652,
437
+ STATEMENT = 653,
438
+ STATISTICS = 654,
439
+ STDIN = 655,
440
+ STDOUT = 656,
441
+ STORAGE = 657,
442
+ STORED = 658,
443
+ STRICT_P = 659,
444
+ STRIP_P = 660,
445
+ STRUCT = 661,
446
+ SUBSCRIPTION = 662,
447
+ SUBSTRING = 663,
448
+ SUMMARIZE = 664,
449
+ SYMMETRIC = 665,
450
+ SYSID = 666,
451
+ SYSTEM_P = 667,
452
+ TABLE = 668,
453
+ TABLES = 669,
454
+ TABLESAMPLE = 670,
455
+ TABLESPACE = 671,
456
+ TEMP = 672,
457
+ TEMPLATE = 673,
458
+ TEMPORARY = 674,
459
+ TEXT_P = 675,
460
+ THEN = 676,
461
+ TIME = 677,
462
+ TIMESTAMP = 678,
463
+ TO = 679,
464
+ TRAILING = 680,
465
+ TRANSACTION = 681,
466
+ TRANSFORM = 682,
467
+ TREAT = 683,
468
+ TRIGGER = 684,
469
+ TRIM = 685,
470
+ TRUE_P = 686,
471
+ TRUNCATE = 687,
472
+ TRUSTED = 688,
473
+ TRY_CAST = 689,
474
+ TYPE_P = 690,
475
+ TYPES_P = 691,
476
+ UNBOUNDED = 692,
477
+ UNCOMMITTED = 693,
478
+ UNENCRYPTED = 694,
479
+ UNION = 695,
480
+ UNIQUE = 696,
481
+ UNKNOWN = 697,
482
+ UNLISTEN = 698,
483
+ UNLOGGED = 699,
484
+ UNPIVOT = 700,
485
+ UNTIL = 701,
486
+ UPDATE = 702,
487
+ USE_P = 703,
488
+ USER = 704,
489
+ USING = 705,
490
+ VACUUM = 706,
491
+ VALID = 707,
492
+ VALIDATE = 708,
493
+ VALIDATOR = 709,
494
+ VALUE_P = 710,
495
+ VALUES = 711,
496
+ VARCHAR = 712,
497
+ VARIADIC = 713,
498
+ VARYING = 714,
499
+ VERBOSE = 715,
500
+ VERSION_P = 716,
501
+ VIEW = 717,
502
+ VIEWS = 718,
503
+ VIRTUAL = 719,
504
+ VOLATILE = 720,
505
+ WHEN = 721,
506
+ WHERE = 722,
507
+ WHITESPACE_P = 723,
508
+ WINDOW = 724,
509
+ WITH = 725,
510
+ WITHIN = 726,
511
+ WITHOUT = 727,
512
+ WORK = 728,
513
+ WRAPPER = 729,
514
+ WRITE_P = 730,
515
+ XML_P = 731,
516
+ XMLATTRIBUTES = 732,
517
+ XMLCONCAT = 733,
518
+ XMLELEMENT = 734,
519
+ XMLEXISTS = 735,
520
+ XMLFOREST = 736,
521
+ XMLNAMESPACES = 737,
522
+ XMLPARSE = 738,
523
+ XMLPI = 739,
524
+ XMLROOT = 740,
525
+ XMLSERIALIZE = 741,
526
+ XMLTABLE = 742,
527
+ YEAR_P = 743,
528
+ YEARS_P = 744,
529
+ YES_P = 745,
530
+ ZONE = 746,
531
+ NOT_LA = 747,
532
+ NULLS_LA = 748,
533
+ WITH_LA = 749,
534
+ POSTFIXOP = 750,
535
+ UMINUS = 751
534
536
  };
535
537
  #endif
536
538
  /* Tokens. */
@@ -567,465 +569,467 @@
567
569
  #define ANALYSE 288
568
570
  #define ANALYZE 289
569
571
  #define AND 290
570
- #define ANY 291
571
- #define ARRAY 292
572
- #define AS 293
573
- #define ASC_P 294
574
- #define ASSERTION 295
575
- #define ASSIGNMENT 296
576
- #define ASYMMETRIC 297
577
- #define AT 298
578
- #define ATTACH 299
579
- #define ATTRIBUTE 300
580
- #define AUTHORIZATION 301
581
- #define BACKWARD 302
582
- #define BEFORE 303
583
- #define BEGIN_P 304
584
- #define BETWEEN 305
585
- #define BIGINT 306
586
- #define BINARY 307
587
- #define BIT 308
588
- #define BOOLEAN_P 309
589
- #define BOTH 310
590
- #define BY 311
591
- #define CACHE 312
592
- #define CALL_P 313
593
- #define CALLED 314
594
- #define CASCADE 315
595
- #define CASCADED 316
596
- #define CASE 317
597
- #define CAST 318
598
- #define CATALOG_P 319
599
- #define CHAIN 320
600
- #define CHAR_P 321
601
- #define CHARACTER 322
602
- #define CHARACTERISTICS 323
603
- #define CHECK_P 324
604
- #define CHECKPOINT 325
605
- #define CLASS 326
606
- #define CLOSE 327
607
- #define CLUSTER 328
608
- #define COALESCE 329
609
- #define COLLATE 330
610
- #define COLLATION 331
611
- #define COLUMN 332
612
- #define COLUMNS 333
613
- #define COMMENT 334
614
- #define COMMENTS 335
615
- #define COMMIT 336
616
- #define COMMITTED 337
617
- #define COMPRESSION 338
618
- #define CONCURRENTLY 339
619
- #define CONFIGURATION 340
620
- #define CONFLICT 341
621
- #define CONNECTION 342
622
- #define CONSTRAINT 343
623
- #define CONSTRAINTS 344
624
- #define CONTENT_P 345
625
- #define CONTINUE_P 346
626
- #define CONVERSION_P 347
627
- #define COPY 348
628
- #define COST 349
629
- #define CREATE_P 350
630
- #define CROSS 351
631
- #define CSV 352
632
- #define CUBE 353
633
- #define CURRENT_P 354
634
- #define CURRENT_CATALOG 355
635
- #define CURRENT_DATE 356
636
- #define CURRENT_ROLE 357
637
- #define CURRENT_SCHEMA 358
638
- #define CURRENT_TIME 359
639
- #define CURRENT_TIMESTAMP 360
640
- #define CURRENT_USER 361
641
- #define CURSOR 362
642
- #define CYCLE 363
643
- #define DATA_P 364
644
- #define DATABASE 365
645
- #define DAY_P 366
646
- #define DAYS_P 367
647
- #define DEALLOCATE 368
648
- #define DEC 369
649
- #define DECIMAL_P 370
650
- #define DECLARE 371
651
- #define DEFAULT 372
652
- #define DEFAULTS 373
653
- #define DEFERRABLE 374
654
- #define DEFERRED 375
655
- #define DEFINER 376
656
- #define DELETE_P 377
657
- #define DELIMITER 378
658
- #define DELIMITERS 379
659
- #define DEPENDS 380
660
- #define DESC_P 381
661
- #define DESCRIBE 382
662
- #define DETACH 383
663
- #define DICTIONARY 384
664
- #define DISABLE_P 385
665
- #define DISCARD 386
666
- #define DISTINCT 387
667
- #define DO 388
668
- #define DOCUMENT_P 389
669
- #define DOMAIN_P 390
670
- #define DOUBLE_P 391
671
- #define DROP 392
672
- #define EACH 393
673
- #define ELSE 394
674
- #define ENABLE_P 395
675
- #define ENCODING 396
676
- #define ENCRYPTED 397
677
- #define END_P 398
678
- #define ENUM_P 399
679
- #define ESCAPE 400
680
- #define EVENT 401
681
- #define EXCEPT 402
682
- #define EXCLUDE 403
683
- #define EXCLUDING 404
684
- #define EXCLUSIVE 405
685
- #define EXECUTE 406
686
- #define EXISTS 407
687
- #define EXPLAIN 408
688
- #define EXPORT_P 409
689
- #define EXPORT_STATE 410
690
- #define EXTENSION 411
691
- #define EXTERNAL 412
692
- #define EXTRACT 413
693
- #define FALSE_P 414
694
- #define FAMILY 415
695
- #define FETCH 416
696
- #define FILTER 417
697
- #define FIRST_P 418
698
- #define FLOAT_P 419
699
- #define FOLLOWING 420
700
- #define FOR 421
701
- #define FORCE 422
702
- #define FOREIGN 423
703
- #define FORWARD 424
704
- #define FREEZE 425
705
- #define FROM 426
706
- #define FULL 427
707
- #define FUNCTION 428
708
- #define FUNCTIONS 429
709
- #define GENERATED 430
710
- #define GLOB 431
711
- #define GLOBAL 432
712
- #define GRANT 433
713
- #define GRANTED 434
714
- #define GROUP_P 435
715
- #define GROUPING 436
716
- #define GROUPING_ID 437
717
- #define HANDLER 438
718
- #define HAVING 439
719
- #define HEADER_P 440
720
- #define HOLD 441
721
- #define HOUR_P 442
722
- #define HOURS_P 443
723
- #define IDENTITY_P 444
724
- #define IF_P 445
725
- #define IGNORE_P 446
726
- #define ILIKE 447
727
- #define IMMEDIATE 448
728
- #define IMMUTABLE 449
729
- #define IMPLICIT_P 450
730
- #define IMPORT_P 451
731
- #define IN_P 452
732
- #define INCLUDE_P 453
733
- #define INCLUDING 454
734
- #define INCREMENT 455
735
- #define INDEX 456
736
- #define INDEXES 457
737
- #define INHERIT 458
738
- #define INHERITS 459
739
- #define INITIALLY 460
740
- #define INLINE_P 461
741
- #define INNER_P 462
742
- #define INOUT 463
743
- #define INPUT_P 464
744
- #define INSENSITIVE 465
745
- #define INSERT 466
746
- #define INSTALL 467
747
- #define INSTEAD 468
748
- #define INT_P 469
749
- #define INTEGER 470
750
- #define INTERSECT 471
751
- #define INTERVAL 472
752
- #define INTO 473
753
- #define INVOKER 474
754
- #define IS 475
755
- #define ISNULL 476
756
- #define ISOLATION 477
757
- #define JOIN 478
758
- #define JSON 479
759
- #define KEY 480
760
- #define LABEL 481
761
- #define LANGUAGE 482
762
- #define LARGE_P 483
763
- #define LAST_P 484
764
- #define LATERAL_P 485
765
- #define LEADING 486
766
- #define LEAKPROOF 487
767
- #define LEFT 488
768
- #define LEVEL 489
769
- #define LIKE 490
770
- #define LIMIT 491
771
- #define LISTEN 492
772
- #define LOAD 493
773
- #define LOCAL 494
774
- #define LOCALTIME 495
775
- #define LOCALTIMESTAMP 496
776
- #define LOCATION 497
777
- #define LOCK_P 498
778
- #define LOCKED 499
779
- #define LOGGED 500
780
- #define MACRO 501
781
- #define MAP 502
782
- #define MAPPING 503
783
- #define MATCH 504
784
- #define MATERIALIZED 505
785
- #define MAXVALUE 506
786
- #define METHOD 507
787
- #define MICROSECOND_P 508
788
- #define MICROSECONDS_P 509
789
- #define MILLISECOND_P 510
790
- #define MILLISECONDS_P 511
791
- #define MINUTE_P 512
792
- #define MINUTES_P 513
793
- #define MINVALUE 514
794
- #define MODE 515
795
- #define MONTH_P 516
796
- #define MONTHS_P 517
797
- #define MOVE 518
798
- #define NAME_P 519
799
- #define NAMES 520
800
- #define NATIONAL 521
801
- #define NATURAL 522
802
- #define NCHAR 523
803
- #define NEW 524
804
- #define NEXT 525
805
- #define NO 526
806
- #define NONE 527
807
- #define NOT 528
808
- #define NOTHING 529
809
- #define NOTIFY 530
810
- #define NOTNULL 531
811
- #define NOWAIT 532
812
- #define NULL_P 533
813
- #define NULLIF 534
814
- #define NULLS_P 535
815
- #define NUMERIC 536
816
- #define OBJECT_P 537
817
- #define OF 538
818
- #define OFF 539
819
- #define OFFSET 540
820
- #define OIDS 541
821
- #define OLD 542
822
- #define ON 543
823
- #define ONLY 544
824
- #define OPERATOR 545
825
- #define OPTION 546
826
- #define OPTIONS 547
827
- #define OR 548
828
- #define ORDER 549
829
- #define ORDINALITY 550
830
- #define OUT_P 551
831
- #define OUTER_P 552
832
- #define OVER 553
833
- #define OVERLAPS 554
834
- #define OVERLAY 555
835
- #define OVERRIDING 556
836
- #define OWNED 557
837
- #define OWNER 558
838
- #define PARALLEL 559
839
- #define PARSER 560
840
- #define PARTIAL 561
841
- #define PARTITION 562
842
- #define PASSING 563
843
- #define PASSWORD 564
844
- #define PERCENT 565
845
- #define PIVOT 566
846
- #define PIVOT_LONGER 567
847
- #define PIVOT_WIDER 568
848
- #define PLACING 569
849
- #define PLANS 570
850
- #define POLICY 571
851
- #define POSITION 572
852
- #define POSITIONAL 573
853
- #define PRAGMA_P 574
854
- #define PRECEDING 575
855
- #define PRECISION 576
856
- #define PREPARE 577
857
- #define PREPARED 578
858
- #define PRESERVE 579
859
- #define PRIMARY 580
860
- #define PRIOR 581
861
- #define PRIVILEGES 582
862
- #define PROCEDURAL 583
863
- #define PROCEDURE 584
864
- #define PROGRAM 585
865
- #define PUBLICATION 586
866
- #define QUALIFY 587
867
- #define QUOTE 588
868
- #define RANGE 589
869
- #define READ_P 590
870
- #define REAL 591
871
- #define REASSIGN 592
872
- #define RECHECK 593
873
- #define RECURSIVE 594
874
- #define REF 595
875
- #define REFERENCES 596
876
- #define REFERENCING 597
877
- #define REFRESH 598
878
- #define REINDEX 599
879
- #define RELATIVE_P 600
880
- #define RELEASE 601
881
- #define RENAME 602
882
- #define REPEATABLE 603
883
- #define REPLACE 604
884
- #define REPLICA 605
885
- #define RESET 606
886
- #define RESPECT_P 607
887
- #define RESTART 608
888
- #define RESTRICT 609
889
- #define RETURNING 610
890
- #define RETURNS 611
891
- #define REVOKE 612
892
- #define RIGHT 613
893
- #define ROLE 614
894
- #define ROLLBACK 615
895
- #define ROLLUP 616
896
- #define ROW 617
897
- #define ROWS 618
898
- #define RULE 619
899
- #define SAMPLE 620
900
- #define SAVEPOINT 621
901
- #define SCHEMA 622
902
- #define SCHEMAS 623
903
- #define SCROLL 624
904
- #define SEARCH 625
905
- #define SECOND_P 626
906
- #define SECONDS_P 627
907
- #define SECURITY 628
908
- #define SELECT 629
909
- #define SEQUENCE 630
910
- #define SEQUENCES 631
911
- #define SERIALIZABLE 632
912
- #define SERVER 633
913
- #define SESSION 634
914
- #define SESSION_USER 635
915
- #define SET 636
916
- #define SETOF 637
917
- #define SETS 638
918
- #define SHARE 639
919
- #define SHOW 640
920
- #define SIMILAR 641
921
- #define SIMPLE 642
922
- #define SKIP 643
923
- #define SMALLINT 644
924
- #define SNAPSHOT 645
925
- #define SOME 646
926
- #define SQL_P 647
927
- #define STABLE 648
928
- #define STANDALONE_P 649
929
- #define START 650
930
- #define STATEMENT 651
931
- #define STATISTICS 652
932
- #define STDIN 653
933
- #define STDOUT 654
934
- #define STORAGE 655
935
- #define STORED 656
936
- #define STRICT_P 657
937
- #define STRIP_P 658
938
- #define STRUCT 659
939
- #define SUBSCRIPTION 660
940
- #define SUBSTRING 661
941
- #define SUMMARIZE 662
942
- #define SYMMETRIC 663
943
- #define SYSID 664
944
- #define SYSTEM_P 665
945
- #define TABLE 666
946
- #define TABLES 667
947
- #define TABLESAMPLE 668
948
- #define TABLESPACE 669
949
- #define TEMP 670
950
- #define TEMPLATE 671
951
- #define TEMPORARY 672
952
- #define TEXT_P 673
953
- #define THEN 674
954
- #define TIME 675
955
- #define TIMESTAMP 676
956
- #define TO 677
957
- #define TRAILING 678
958
- #define TRANSACTION 679
959
- #define TRANSFORM 680
960
- #define TREAT 681
961
- #define TRIGGER 682
962
- #define TRIM 683
963
- #define TRUE_P 684
964
- #define TRUNCATE 685
965
- #define TRUSTED 686
966
- #define TRY_CAST 687
967
- #define TYPE_P 688
968
- #define TYPES_P 689
969
- #define UNBOUNDED 690
970
- #define UNCOMMITTED 691
971
- #define UNENCRYPTED 692
972
- #define UNION 693
973
- #define UNIQUE 694
974
- #define UNKNOWN 695
975
- #define UNLISTEN 696
976
- #define UNLOGGED 697
977
- #define UNPIVOT 698
978
- #define UNTIL 699
979
- #define UPDATE 700
980
- #define USE_P 701
981
- #define USER 702
982
- #define USING 703
983
- #define VACUUM 704
984
- #define VALID 705
985
- #define VALIDATE 706
986
- #define VALIDATOR 707
987
- #define VALUE_P 708
988
- #define VALUES 709
989
- #define VARCHAR 710
990
- #define VARIADIC 711
991
- #define VARYING 712
992
- #define VERBOSE 713
993
- #define VERSION_P 714
994
- #define VIEW 715
995
- #define VIEWS 716
996
- #define VIRTUAL 717
997
- #define VOLATILE 718
998
- #define WHEN 719
999
- #define WHERE 720
1000
- #define WHITESPACE_P 721
1001
- #define WINDOW 722
1002
- #define WITH 723
1003
- #define WITHIN 724
1004
- #define WITHOUT 725
1005
- #define WORK 726
1006
- #define WRAPPER 727
1007
- #define WRITE_P 728
1008
- #define XML_P 729
1009
- #define XMLATTRIBUTES 730
1010
- #define XMLCONCAT 731
1011
- #define XMLELEMENT 732
1012
- #define XMLEXISTS 733
1013
- #define XMLFOREST 734
1014
- #define XMLNAMESPACES 735
1015
- #define XMLPARSE 736
1016
- #define XMLPI 737
1017
- #define XMLROOT 738
1018
- #define XMLSERIALIZE 739
1019
- #define XMLTABLE 740
1020
- #define YEAR_P 741
1021
- #define YEARS_P 742
1022
- #define YES_P 743
1023
- #define ZONE 744
1024
- #define NOT_LA 745
1025
- #define NULLS_LA 746
1026
- #define WITH_LA 747
1027
- #define POSTFIXOP 748
1028
- #define UMINUS 749
572
+ #define ANTI 291
573
+ #define ANY 292
574
+ #define ARRAY 293
575
+ #define AS 294
576
+ #define ASC_P 295
577
+ #define ASSERTION 296
578
+ #define ASSIGNMENT 297
579
+ #define ASYMMETRIC 298
580
+ #define AT 299
581
+ #define ATTACH 300
582
+ #define ATTRIBUTE 301
583
+ #define AUTHORIZATION 302
584
+ #define BACKWARD 303
585
+ #define BEFORE 304
586
+ #define BEGIN_P 305
587
+ #define BETWEEN 306
588
+ #define BIGINT 307
589
+ #define BINARY 308
590
+ #define BIT 309
591
+ #define BOOLEAN_P 310
592
+ #define BOTH 311
593
+ #define BY 312
594
+ #define CACHE 313
595
+ #define CALL_P 314
596
+ #define CALLED 315
597
+ #define CASCADE 316
598
+ #define CASCADED 317
599
+ #define CASE 318
600
+ #define CAST 319
601
+ #define CATALOG_P 320
602
+ #define CHAIN 321
603
+ #define CHAR_P 322
604
+ #define CHARACTER 323
605
+ #define CHARACTERISTICS 324
606
+ #define CHECK_P 325
607
+ #define CHECKPOINT 326
608
+ #define CLASS 327
609
+ #define CLOSE 328
610
+ #define CLUSTER 329
611
+ #define COALESCE 330
612
+ #define COLLATE 331
613
+ #define COLLATION 332
614
+ #define COLUMN 333
615
+ #define COLUMNS 334
616
+ #define COMMENT 335
617
+ #define COMMENTS 336
618
+ #define COMMIT 337
619
+ #define COMMITTED 338
620
+ #define COMPRESSION 339
621
+ #define CONCURRENTLY 340
622
+ #define CONFIGURATION 341
623
+ #define CONFLICT 342
624
+ #define CONNECTION 343
625
+ #define CONSTRAINT 344
626
+ #define CONSTRAINTS 345
627
+ #define CONTENT_P 346
628
+ #define CONTINUE_P 347
629
+ #define CONVERSION_P 348
630
+ #define COPY 349
631
+ #define COST 350
632
+ #define CREATE_P 351
633
+ #define CROSS 352
634
+ #define CSV 353
635
+ #define CUBE 354
636
+ #define CURRENT_P 355
637
+ #define CURRENT_CATALOG 356
638
+ #define CURRENT_DATE 357
639
+ #define CURRENT_ROLE 358
640
+ #define CURRENT_SCHEMA 359
641
+ #define CURRENT_TIME 360
642
+ #define CURRENT_TIMESTAMP 361
643
+ #define CURRENT_USER 362
644
+ #define CURSOR 363
645
+ #define CYCLE 364
646
+ #define DATA_P 365
647
+ #define DATABASE 366
648
+ #define DAY_P 367
649
+ #define DAYS_P 368
650
+ #define DEALLOCATE 369
651
+ #define DEC 370
652
+ #define DECIMAL_P 371
653
+ #define DECLARE 372
654
+ #define DEFAULT 373
655
+ #define DEFAULTS 374
656
+ #define DEFERRABLE 375
657
+ #define DEFERRED 376
658
+ #define DEFINER 377
659
+ #define DELETE_P 378
660
+ #define DELIMITER 379
661
+ #define DELIMITERS 380
662
+ #define DEPENDS 381
663
+ #define DESC_P 382
664
+ #define DESCRIBE 383
665
+ #define DETACH 384
666
+ #define DICTIONARY 385
667
+ #define DISABLE_P 386
668
+ #define DISCARD 387
669
+ #define DISTINCT 388
670
+ #define DO 389
671
+ #define DOCUMENT_P 390
672
+ #define DOMAIN_P 391
673
+ #define DOUBLE_P 392
674
+ #define DROP 393
675
+ #define EACH 394
676
+ #define ELSE 395
677
+ #define ENABLE_P 396
678
+ #define ENCODING 397
679
+ #define ENCRYPTED 398
680
+ #define END_P 399
681
+ #define ENUM_P 400
682
+ #define ESCAPE 401
683
+ #define EVENT 402
684
+ #define EXCEPT 403
685
+ #define EXCLUDE 404
686
+ #define EXCLUDING 405
687
+ #define EXCLUSIVE 406
688
+ #define EXECUTE 407
689
+ #define EXISTS 408
690
+ #define EXPLAIN 409
691
+ #define EXPORT_P 410
692
+ #define EXPORT_STATE 411
693
+ #define EXTENSION 412
694
+ #define EXTERNAL 413
695
+ #define EXTRACT 414
696
+ #define FALSE_P 415
697
+ #define FAMILY 416
698
+ #define FETCH 417
699
+ #define FILTER 418
700
+ #define FIRST_P 419
701
+ #define FLOAT_P 420
702
+ #define FOLLOWING 421
703
+ #define FOR 422
704
+ #define FORCE 423
705
+ #define FOREIGN 424
706
+ #define FORWARD 425
707
+ #define FREEZE 426
708
+ #define FROM 427
709
+ #define FULL 428
710
+ #define FUNCTION 429
711
+ #define FUNCTIONS 430
712
+ #define GENERATED 431
713
+ #define GLOB 432
714
+ #define GLOBAL 433
715
+ #define GRANT 434
716
+ #define GRANTED 435
717
+ #define GROUP_P 436
718
+ #define GROUPING 437
719
+ #define GROUPING_ID 438
720
+ #define HANDLER 439
721
+ #define HAVING 440
722
+ #define HEADER_P 441
723
+ #define HOLD 442
724
+ #define HOUR_P 443
725
+ #define HOURS_P 444
726
+ #define IDENTITY_P 445
727
+ #define IF_P 446
728
+ #define IGNORE_P 447
729
+ #define ILIKE 448
730
+ #define IMMEDIATE 449
731
+ #define IMMUTABLE 450
732
+ #define IMPLICIT_P 451
733
+ #define IMPORT_P 452
734
+ #define IN_P 453
735
+ #define INCLUDE_P 454
736
+ #define INCLUDING 455
737
+ #define INCREMENT 456
738
+ #define INDEX 457
739
+ #define INDEXES 458
740
+ #define INHERIT 459
741
+ #define INHERITS 460
742
+ #define INITIALLY 461
743
+ #define INLINE_P 462
744
+ #define INNER_P 463
745
+ #define INOUT 464
746
+ #define INPUT_P 465
747
+ #define INSENSITIVE 466
748
+ #define INSERT 467
749
+ #define INSTALL 468
750
+ #define INSTEAD 469
751
+ #define INT_P 470
752
+ #define INTEGER 471
753
+ #define INTERSECT 472
754
+ #define INTERVAL 473
755
+ #define INTO 474
756
+ #define INVOKER 475
757
+ #define IS 476
758
+ #define ISNULL 477
759
+ #define ISOLATION 478
760
+ #define JOIN 479
761
+ #define JSON 480
762
+ #define KEY 481
763
+ #define LABEL 482
764
+ #define LANGUAGE 483
765
+ #define LARGE_P 484
766
+ #define LAST_P 485
767
+ #define LATERAL_P 486
768
+ #define LEADING 487
769
+ #define LEAKPROOF 488
770
+ #define LEFT 489
771
+ #define LEVEL 490
772
+ #define LIKE 491
773
+ #define LIMIT 492
774
+ #define LISTEN 493
775
+ #define LOAD 494
776
+ #define LOCAL 495
777
+ #define LOCALTIME 496
778
+ #define LOCALTIMESTAMP 497
779
+ #define LOCATION 498
780
+ #define LOCK_P 499
781
+ #define LOCKED 500
782
+ #define LOGGED 501
783
+ #define MACRO 502
784
+ #define MAP 503
785
+ #define MAPPING 504
786
+ #define MATCH 505
787
+ #define MATERIALIZED 506
788
+ #define MAXVALUE 507
789
+ #define METHOD 508
790
+ #define MICROSECOND_P 509
791
+ #define MICROSECONDS_P 510
792
+ #define MILLISECOND_P 511
793
+ #define MILLISECONDS_P 512
794
+ #define MINUTE_P 513
795
+ #define MINUTES_P 514
796
+ #define MINVALUE 515
797
+ #define MODE 516
798
+ #define MONTH_P 517
799
+ #define MONTHS_P 518
800
+ #define MOVE 519
801
+ #define NAME_P 520
802
+ #define NAMES 521
803
+ #define NATIONAL 522
804
+ #define NATURAL 523
805
+ #define NCHAR 524
806
+ #define NEW 525
807
+ #define NEXT 526
808
+ #define NO 527
809
+ #define NONE 528
810
+ #define NOT 529
811
+ #define NOTHING 530
812
+ #define NOTIFY 531
813
+ #define NOTNULL 532
814
+ #define NOWAIT 533
815
+ #define NULL_P 534
816
+ #define NULLIF 535
817
+ #define NULLS_P 536
818
+ #define NUMERIC 537
819
+ #define OBJECT_P 538
820
+ #define OF 539
821
+ #define OFF 540
822
+ #define OFFSET 541
823
+ #define OIDS 542
824
+ #define OLD 543
825
+ #define ON 544
826
+ #define ONLY 545
827
+ #define OPERATOR 546
828
+ #define OPTION 547
829
+ #define OPTIONS 548
830
+ #define OR 549
831
+ #define ORDER 550
832
+ #define ORDINALITY 551
833
+ #define OUT_P 552
834
+ #define OUTER_P 553
835
+ #define OVER 554
836
+ #define OVERLAPS 555
837
+ #define OVERLAY 556
838
+ #define OVERRIDING 557
839
+ #define OWNED 558
840
+ #define OWNER 559
841
+ #define PARALLEL 560
842
+ #define PARSER 561
843
+ #define PARTIAL 562
844
+ #define PARTITION 563
845
+ #define PASSING 564
846
+ #define PASSWORD 565
847
+ #define PERCENT 566
848
+ #define PIVOT 567
849
+ #define PIVOT_LONGER 568
850
+ #define PIVOT_WIDER 569
851
+ #define PLACING 570
852
+ #define PLANS 571
853
+ #define POLICY 572
854
+ #define POSITION 573
855
+ #define POSITIONAL 574
856
+ #define PRAGMA_P 575
857
+ #define PRECEDING 576
858
+ #define PRECISION 577
859
+ #define PREPARE 578
860
+ #define PREPARED 579
861
+ #define PRESERVE 580
862
+ #define PRIMARY 581
863
+ #define PRIOR 582
864
+ #define PRIVILEGES 583
865
+ #define PROCEDURAL 584
866
+ #define PROCEDURE 585
867
+ #define PROGRAM 586
868
+ #define PUBLICATION 587
869
+ #define QUALIFY 588
870
+ #define QUOTE 589
871
+ #define RANGE 590
872
+ #define READ_P 591
873
+ #define REAL 592
874
+ #define REASSIGN 593
875
+ #define RECHECK 594
876
+ #define RECURSIVE 595
877
+ #define REF 596
878
+ #define REFERENCES 597
879
+ #define REFERENCING 598
880
+ #define REFRESH 599
881
+ #define REINDEX 600
882
+ #define RELATIVE_P 601
883
+ #define RELEASE 602
884
+ #define RENAME 603
885
+ #define REPEATABLE 604
886
+ #define REPLACE 605
887
+ #define REPLICA 606
888
+ #define RESET 607
889
+ #define RESPECT_P 608
890
+ #define RESTART 609
891
+ #define RESTRICT 610
892
+ #define RETURNING 611
893
+ #define RETURNS 612
894
+ #define REVOKE 613
895
+ #define RIGHT 614
896
+ #define ROLE 615
897
+ #define ROLLBACK 616
898
+ #define ROLLUP 617
899
+ #define ROW 618
900
+ #define ROWS 619
901
+ #define RULE 620
902
+ #define SAMPLE 621
903
+ #define SAVEPOINT 622
904
+ #define SCHEMA 623
905
+ #define SCHEMAS 624
906
+ #define SCROLL 625
907
+ #define SEARCH 626
908
+ #define SECOND_P 627
909
+ #define SECONDS_P 628
910
+ #define SECURITY 629
911
+ #define SELECT 630
912
+ #define SEMI 631
913
+ #define SEQUENCE 632
914
+ #define SEQUENCES 633
915
+ #define SERIALIZABLE 634
916
+ #define SERVER 635
917
+ #define SESSION 636
918
+ #define SESSION_USER 637
919
+ #define SET 638
920
+ #define SETOF 639
921
+ #define SETS 640
922
+ #define SHARE 641
923
+ #define SHOW 642
924
+ #define SIMILAR 643
925
+ #define SIMPLE 644
926
+ #define SKIP 645
927
+ #define SMALLINT 646
928
+ #define SNAPSHOT 647
929
+ #define SOME 648
930
+ #define SQL_P 649
931
+ #define STABLE 650
932
+ #define STANDALONE_P 651
933
+ #define START 652
934
+ #define STATEMENT 653
935
+ #define STATISTICS 654
936
+ #define STDIN 655
937
+ #define STDOUT 656
938
+ #define STORAGE 657
939
+ #define STORED 658
940
+ #define STRICT_P 659
941
+ #define STRIP_P 660
942
+ #define STRUCT 661
943
+ #define SUBSCRIPTION 662
944
+ #define SUBSTRING 663
945
+ #define SUMMARIZE 664
946
+ #define SYMMETRIC 665
947
+ #define SYSID 666
948
+ #define SYSTEM_P 667
949
+ #define TABLE 668
950
+ #define TABLES 669
951
+ #define TABLESAMPLE 670
952
+ #define TABLESPACE 671
953
+ #define TEMP 672
954
+ #define TEMPLATE 673
955
+ #define TEMPORARY 674
956
+ #define TEXT_P 675
957
+ #define THEN 676
958
+ #define TIME 677
959
+ #define TIMESTAMP 678
960
+ #define TO 679
961
+ #define TRAILING 680
962
+ #define TRANSACTION 681
963
+ #define TRANSFORM 682
964
+ #define TREAT 683
965
+ #define TRIGGER 684
966
+ #define TRIM 685
967
+ #define TRUE_P 686
968
+ #define TRUNCATE 687
969
+ #define TRUSTED 688
970
+ #define TRY_CAST 689
971
+ #define TYPE_P 690
972
+ #define TYPES_P 691
973
+ #define UNBOUNDED 692
974
+ #define UNCOMMITTED 693
975
+ #define UNENCRYPTED 694
976
+ #define UNION 695
977
+ #define UNIQUE 696
978
+ #define UNKNOWN 697
979
+ #define UNLISTEN 698
980
+ #define UNLOGGED 699
981
+ #define UNPIVOT 700
982
+ #define UNTIL 701
983
+ #define UPDATE 702
984
+ #define USE_P 703
985
+ #define USER 704
986
+ #define USING 705
987
+ #define VACUUM 706
988
+ #define VALID 707
989
+ #define VALIDATE 708
990
+ #define VALIDATOR 709
991
+ #define VALUE_P 710
992
+ #define VALUES 711
993
+ #define VARCHAR 712
994
+ #define VARIADIC 713
995
+ #define VARYING 714
996
+ #define VERBOSE 715
997
+ #define VERSION_P 716
998
+ #define VIEW 717
999
+ #define VIEWS 718
1000
+ #define VIRTUAL 719
1001
+ #define VOLATILE 720
1002
+ #define WHEN 721
1003
+ #define WHERE 722
1004
+ #define WHITESPACE_P 723
1005
+ #define WINDOW 724
1006
+ #define WITH 725
1007
+ #define WITHIN 726
1008
+ #define WITHOUT 727
1009
+ #define WORK 728
1010
+ #define WRAPPER 729
1011
+ #define WRITE_P 730
1012
+ #define XML_P 731
1013
+ #define XMLATTRIBUTES 732
1014
+ #define XMLCONCAT 733
1015
+ #define XMLELEMENT 734
1016
+ #define XMLEXISTS 735
1017
+ #define XMLFOREST 736
1018
+ #define XMLNAMESPACES 737
1019
+ #define XMLPARSE 738
1020
+ #define XMLPI 739
1021
+ #define XMLROOT 740
1022
+ #define XMLSERIALIZE 741
1023
+ #define XMLTABLE 742
1024
+ #define YEAR_P 743
1025
+ #define YEARS_P 744
1026
+ #define YES_P 745
1027
+ #define ZONE 746
1028
+ #define NOT_LA 747
1029
+ #define NULLS_LA 748
1030
+ #define WITH_LA 749
1031
+ #define POSTFIXOP 750
1032
+ #define UMINUS 751
1029
1033
 
1030
1034
 
1031
1035
 
@@ -1079,7 +1083,7 @@ typedef union YYSTYPE
1079
1083
  PGViewCheckOption viewcheckoption;
1080
1084
  }
1081
1085
  /* Line 1529 of yacc.c. */
1082
- #line 1083 "third_party/libpg_query/grammar/grammar_out.hpp"
1086
+ #line 1087 "third_party/libpg_query/grammar/grammar_out.hpp"
1083
1087
  YYSTYPE;
1084
1088
  # define yystype YYSTYPE /* obsolescent; will be withdrawn */
1085
1089
  # define YYSTYPE_IS_DECLARED 1