duckdb 0.7.2-dev16.0 → 0.7.2-dev225.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.
- package/binding.gyp +2 -0
- package/package.json +1 -1
- package/src/duckdb/extension/icu/icu-extension.cpp +2 -0
- package/src/duckdb/extension/icu/icu-table-range.cpp +194 -0
- package/src/duckdb/extension/icu/include/icu-table-range.hpp +17 -0
- package/src/duckdb/extension/parquet/column_writer.cpp +0 -1
- package/src/duckdb/extension/parquet/parquet-extension.cpp +11 -2
- package/src/duckdb/src/catalog/catalog_entry/duck_schema_entry.cpp +4 -0
- package/src/duckdb/src/catalog/catalog_entry/scalar_function_catalog_entry.cpp +7 -6
- package/src/duckdb/src/catalog/catalog_entry/table_function_catalog_entry.cpp +20 -1
- package/src/duckdb/src/common/enums/statement_type.cpp +2 -0
- package/src/duckdb/src/common/types/bit.cpp +95 -58
- package/src/duckdb/src/common/types/value.cpp +149 -53
- package/src/duckdb/src/common/types/vector.cpp +13 -10
- package/src/duckdb/src/execution/operator/persistent/buffered_csv_reader.cpp +1 -1
- package/src/duckdb/src/function/aggregate/algebraic/avg.cpp +0 -6
- package/src/duckdb/src/function/aggregate/distributive/bitagg.cpp +99 -95
- package/src/duckdb/src/function/aggregate/distributive/bitstring_agg.cpp +261 -0
- package/src/duckdb/src/function/aggregate/distributive/sum.cpp +0 -3
- package/src/duckdb/src/function/aggregate/distributive_functions.cpp +1 -0
- package/src/duckdb/src/function/aggregate/sorted_aggregate_function.cpp +16 -5
- package/src/duckdb/src/function/cast/bit_cast.cpp +0 -2
- package/src/duckdb/src/function/cast/blob_cast.cpp +0 -1
- package/src/duckdb/src/function/scalar/bit/bitstring.cpp +99 -0
- package/src/duckdb/src/function/scalar/map/map_entries.cpp +61 -0
- package/src/duckdb/src/function/scalar/map/map_keys_values.cpp +97 -0
- package/src/duckdb/src/function/scalar/nested_functions.cpp +3 -0
- package/src/duckdb/src/function/scalar/operators/add.cpp +0 -9
- package/src/duckdb/src/function/scalar/operators/arithmetic.cpp +2 -14
- package/src/duckdb/src/function/scalar/operators/bitwise.cpp +0 -63
- package/src/duckdb/src/function/scalar/operators/multiply.cpp +0 -6
- package/src/duckdb/src/function/scalar/operators/subtract.cpp +0 -6
- package/src/duckdb/src/function/scalar/string_functions.cpp +1 -0
- package/src/duckdb/src/function/table/read_csv.cpp +9 -0
- package/src/duckdb/src/function/table/version/pragma_version.cpp +2 -2
- package/src/duckdb/src/function/table_function.cpp +19 -0
- package/src/duckdb/src/include/duckdb/catalog/catalog_entry/table_function_catalog_entry.hpp +6 -8
- package/src/duckdb/src/include/duckdb/common/constants.hpp +0 -19
- package/src/duckdb/src/include/duckdb/common/enums/statement_type.hpp +2 -1
- package/src/duckdb/src/include/duckdb/common/enums/tableref_type.hpp +2 -1
- package/src/duckdb/src/include/duckdb/common/types/bit.hpp +5 -1
- package/src/duckdb/src/include/duckdb/common/types/value.hpp +2 -8
- package/src/duckdb/src/include/duckdb/common/types.hpp +1 -2
- package/src/duckdb/src/include/duckdb/function/aggregate/distributive_functions.hpp +5 -0
- package/src/duckdb/src/include/duckdb/function/scalar/bit_functions.hpp +4 -0
- package/src/duckdb/src/include/duckdb/function/scalar/nested_functions.hpp +12 -0
- package/src/duckdb/src/include/duckdb/function/table_function.hpp +2 -0
- package/src/duckdb/src/include/duckdb/main/capi/capi_internal.hpp +2 -0
- package/src/duckdb/src/include/duckdb/main/config.hpp +3 -0
- package/src/duckdb/src/include/duckdb/main/database.hpp +1 -0
- package/src/duckdb/src/include/duckdb/optimizer/join_order/cardinality_estimator.hpp +2 -2
- package/src/duckdb/src/include/duckdb/parser/common_table_expression_info.hpp +2 -0
- package/src/duckdb/src/include/duckdb/parser/parsed_data/alter_info.hpp +2 -1
- package/src/duckdb/src/include/duckdb/parser/parsed_data/{alter_function_info.hpp → alter_scalar_function_info.hpp} +13 -13
- package/src/duckdb/src/include/duckdb/parser/parsed_data/alter_table_function_info.hpp +47 -0
- package/src/duckdb/src/include/duckdb/parser/parsed_data/create_table_function_info.hpp +2 -1
- package/src/duckdb/src/include/duckdb/parser/query_node.hpp +2 -1
- package/src/duckdb/src/include/duckdb/parser/statement/multi_statement.hpp +28 -0
- package/src/duckdb/src/include/duckdb/parser/tableref/list.hpp +1 -0
- package/src/duckdb/src/include/duckdb/parser/tableref/pivotref.hpp +76 -0
- package/src/duckdb/src/include/duckdb/parser/tokens.hpp +2 -0
- package/src/duckdb/src/include/duckdb/parser/transformer.hpp +28 -0
- package/src/duckdb/src/include/duckdb/planner/binder.hpp +8 -0
- package/src/duckdb/src/include/duckdb/storage/buffer/block_handle.hpp +2 -0
- package/src/duckdb/src/include/duckdb/storage/buffer_manager.hpp +76 -44
- package/src/duckdb/src/include/duckdb/storage/statistics/base_statistics.hpp +2 -0
- package/src/duckdb/src/include/duckdb/storage/statistics/node_statistics.hpp +26 -0
- package/src/duckdb/src/include/duckdb/storage/table/list_column_data.hpp +1 -1
- package/src/duckdb/src/include/duckdb/storage/table/scan_state.hpp +2 -0
- package/src/duckdb/src/include/duckdb.h +49 -1
- package/src/duckdb/src/include/duckdb.hpp +0 -1
- package/src/duckdb/src/main/capi/pending-c.cpp +16 -3
- package/src/duckdb/src/main/capi/result-c.cpp +27 -1
- package/src/duckdb/src/main/capi/stream-c.cpp +25 -0
- package/src/duckdb/src/main/client_context.cpp +8 -1
- package/src/duckdb/src/main/database.cpp +10 -2
- package/src/duckdb/src/optimizer/join_order/cardinality_estimator.cpp +98 -66
- package/src/duckdb/src/optimizer/join_order/join_order_optimizer.cpp +16 -3
- package/src/duckdb/src/parser/parsed_data/alter_info.cpp +7 -3
- package/src/duckdb/src/parser/parsed_data/alter_scalar_function_info.cpp +56 -0
- package/src/duckdb/src/parser/parsed_data/alter_table_function_info.cpp +51 -0
- package/src/duckdb/src/parser/parsed_data/create_scalar_function_info.cpp +3 -2
- package/src/duckdb/src/parser/parsed_data/create_table_function_info.cpp +6 -0
- package/src/duckdb/src/parser/parsed_expression_iterator.cpp +8 -0
- package/src/duckdb/src/parser/query_node.cpp +1 -1
- package/src/duckdb/src/parser/statement/multi_statement.cpp +18 -0
- package/src/duckdb/src/parser/tableref/pivotref.cpp +296 -0
- package/src/duckdb/src/parser/tableref.cpp +3 -0
- package/src/duckdb/src/parser/transform/helpers/transform_alias.cpp +12 -6
- package/src/duckdb/src/parser/transform/helpers/transform_cte.cpp +24 -0
- package/src/duckdb/src/parser/transform/statement/transform_create_function.cpp +4 -0
- package/src/duckdb/src/parser/transform/statement/transform_create_view.cpp +4 -0
- package/src/duckdb/src/parser/transform/statement/transform_pivot_stmt.cpp +150 -0
- package/src/duckdb/src/parser/transform/statement/transform_select.cpp +8 -0
- package/src/duckdb/src/parser/transform/statement/transform_select_node.cpp +1 -1
- package/src/duckdb/src/parser/transform/tableref/transform_pivot.cpp +105 -0
- package/src/duckdb/src/parser/transform/tableref/transform_tableref.cpp +2 -0
- package/src/duckdb/src/parser/transformer.cpp +15 -3
- package/src/duckdb/src/planner/binder/query_node/bind_select_node.cpp +11 -3
- package/src/duckdb/src/planner/binder/statement/bind_create.cpp +1 -1
- package/src/duckdb/src/planner/binder/statement/bind_logical_plan.cpp +17 -0
- package/src/duckdb/src/planner/binder/tableref/bind_pivot.cpp +365 -0
- package/src/duckdb/src/planner/binder.cpp +5 -0
- package/src/duckdb/src/planner/pragma_handler.cpp +10 -2
- package/src/duckdb/src/storage/buffer_manager.cpp +44 -46
- package/src/duckdb/src/storage/compression/bitpacking.cpp +25 -21
- package/src/duckdb/src/storage/compression/fixed_size_uncompressed.cpp +41 -43
- package/src/duckdb/src/storage/compression/rle.cpp +17 -13
- package/src/duckdb/src/storage/statistics/base_statistics.cpp +3 -3
- package/src/duckdb/src/storage/storage_info.cpp +1 -1
- package/src/duckdb/src/storage/table/column_data.cpp +5 -2
- package/src/duckdb/src/storage/table/list_column_data.cpp +32 -47
- package/src/duckdb/third_party/libpg_query/include/nodes/nodes.hpp +3 -0
- package/src/duckdb/third_party/libpg_query/include/nodes/parsenodes.hpp +34 -1
- package/src/duckdb/third_party/libpg_query/include/parser/gram.hpp +1016 -530
- package/src/duckdb/third_party/libpg_query/include/parser/kwlist.hpp +5 -0
- package/src/duckdb/third_party/libpg_query/src_backend_parser_gram.cpp +22697 -21987
- package/src/duckdb/ub_src_function_aggregate_distributive.cpp +2 -0
- package/src/duckdb/ub_src_function_scalar_bit.cpp +2 -0
- package/src/duckdb/ub_src_function_scalar_map.cpp +4 -0
- package/src/duckdb/ub_src_main_capi.cpp +2 -0
- package/src/duckdb/ub_src_parser_parsed_data.cpp +4 -2
- package/src/duckdb/ub_src_parser_statement.cpp +2 -0
- package/src/duckdb/ub_src_parser_tableref.cpp +2 -0
- package/src/duckdb/ub_src_parser_transform_statement.cpp +2 -0
- package/src/duckdb/ub_src_parser_transform_tableref.cpp +2 -0
- package/src/duckdb/ub_src_planner_binder_tableref.cpp +2 -0
- package/src/duckdb/src/include/duckdb/main/loadable_extension.hpp +0 -59
- package/src/duckdb/src/parser/parsed_data/alter_function_info.cpp +0 -55
@@ -1,14 +1,14 @@
|
|
1
|
-
/* A Bison parser, made by GNU Bison 3.
|
1
|
+
/* A Bison parser, made by GNU Bison 2.3. */
|
2
2
|
|
3
|
-
/*
|
3
|
+
/* Skeleton interface for Bison's Yacc-like parsers in C
|
4
4
|
|
5
|
-
Copyright (C) 1984, 1989
|
6
|
-
Inc.
|
5
|
+
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
6
|
+
Free Software Foundation, Inc.
|
7
7
|
|
8
|
-
This program is free software
|
8
|
+
This program is free software; you can redistribute it and/or modify
|
9
9
|
it under the terms of the GNU General Public License as published by
|
10
|
-
the Free Software Foundation
|
11
|
-
|
10
|
+
the Free Software Foundation; either version 2, or (at your option)
|
11
|
+
any later version.
|
12
12
|
|
13
13
|
This program is distributed in the hope that it will be useful,
|
14
14
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
@@ -16,7 +16,9 @@
|
|
16
16
|
GNU General Public License for more details.
|
17
17
|
|
18
18
|
You should have received a copy of the GNU General Public License
|
19
|
-
along with this program
|
19
|
+
along with this program; if not, write to the Free Software
|
20
|
+
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
21
|
+
Boston, MA 02110-1301, USA. */
|
20
22
|
|
21
23
|
/* As a special exception, you may create a larger work that contains
|
22
24
|
part or all of the Bison parser skeleton and distribute that work
|
@@ -31,520 +33,1007 @@
|
|
31
33
|
This special exception was added by the Free Software Foundation in
|
32
34
|
version 2.2 of Bison. */
|
33
35
|
|
34
|
-
/*
|
35
|
-
are private implementation details. Do not rely on them. */
|
36
|
-
|
37
|
-
#ifndef YY_BASE_YY_THIRD_PARTY_LIBPG_QUERY_GRAMMAR_GRAMMAR_OUT_HPP_INCLUDED
|
38
|
-
# define YY_BASE_YY_THIRD_PARTY_LIBPG_QUERY_GRAMMAR_GRAMMAR_OUT_HPP_INCLUDED
|
39
|
-
/* Debug traces. */
|
40
|
-
#ifndef YYDEBUG
|
41
|
-
# define YYDEBUG 0
|
42
|
-
#endif
|
43
|
-
#if YYDEBUG
|
44
|
-
extern int base_yydebug;
|
45
|
-
#endif
|
46
|
-
|
47
|
-
/* Token type. */
|
36
|
+
/* Tokens. */
|
48
37
|
#ifndef YYTOKENTYPE
|
49
38
|
# define YYTOKENTYPE
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
39
|
+
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
40
|
+
know about them. */
|
41
|
+
enum yytokentype {
|
42
|
+
IDENT = 258,
|
43
|
+
FCONST = 259,
|
44
|
+
SCONST = 260,
|
45
|
+
BCONST = 261,
|
46
|
+
XCONST = 262,
|
47
|
+
Op = 263,
|
48
|
+
ICONST = 264,
|
49
|
+
PARAM = 265,
|
50
|
+
TYPECAST = 266,
|
51
|
+
DOT_DOT = 267,
|
52
|
+
COLON_EQUALS = 268,
|
53
|
+
EQUALS_GREATER = 269,
|
54
|
+
POWER_OF = 270,
|
55
|
+
LAMBDA_ARROW = 271,
|
56
|
+
DOUBLE_ARROW = 272,
|
57
|
+
LESS_EQUALS = 273,
|
58
|
+
GREATER_EQUALS = 274,
|
59
|
+
NOT_EQUALS = 275,
|
60
|
+
ABORT_P = 276,
|
61
|
+
ABSOLUTE_P = 277,
|
62
|
+
ACCESS = 278,
|
63
|
+
ACTION = 279,
|
64
|
+
ADD_P = 280,
|
65
|
+
ADMIN = 281,
|
66
|
+
AFTER = 282,
|
67
|
+
AGGREGATE = 283,
|
68
|
+
ALL = 284,
|
69
|
+
ALSO = 285,
|
70
|
+
ALTER = 286,
|
71
|
+
ALWAYS = 287,
|
72
|
+
ANALYSE = 288,
|
73
|
+
ANALYZE = 289,
|
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
|
534
|
+
};
|
540
535
|
#endif
|
536
|
+
/* Tokens. */
|
537
|
+
#define IDENT 258
|
538
|
+
#define FCONST 259
|
539
|
+
#define SCONST 260
|
540
|
+
#define BCONST 261
|
541
|
+
#define XCONST 262
|
542
|
+
#define Op 263
|
543
|
+
#define ICONST 264
|
544
|
+
#define PARAM 265
|
545
|
+
#define TYPECAST 266
|
546
|
+
#define DOT_DOT 267
|
547
|
+
#define COLON_EQUALS 268
|
548
|
+
#define EQUALS_GREATER 269
|
549
|
+
#define POWER_OF 270
|
550
|
+
#define LAMBDA_ARROW 271
|
551
|
+
#define DOUBLE_ARROW 272
|
552
|
+
#define LESS_EQUALS 273
|
553
|
+
#define GREATER_EQUALS 274
|
554
|
+
#define NOT_EQUALS 275
|
555
|
+
#define ABORT_P 276
|
556
|
+
#define ABSOLUTE_P 277
|
557
|
+
#define ACCESS 278
|
558
|
+
#define ACTION 279
|
559
|
+
#define ADD_P 280
|
560
|
+
#define ADMIN 281
|
561
|
+
#define AFTER 282
|
562
|
+
#define AGGREGATE 283
|
563
|
+
#define ALL 284
|
564
|
+
#define ALSO 285
|
565
|
+
#define ALTER 286
|
566
|
+
#define ALWAYS 287
|
567
|
+
#define ANALYSE 288
|
568
|
+
#define ANALYZE 289
|
569
|
+
#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
|
1029
|
+
|
1030
|
+
|
1031
|
+
|
541
1032
|
|
542
|
-
/* Value type. */
|
543
1033
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
544
|
-
union YYSTYPE
|
545
|
-
{
|
1034
|
+
typedef union YYSTYPE
|
546
1035
|
#line 14 "third_party/libpg_query/grammar/grammar.y"
|
547
|
-
|
1036
|
+
{
|
548
1037
|
core_YYSTYPE core_yystype;
|
549
1038
|
/* these fields must match core_YYSTYPE: */
|
550
1039
|
int ival;
|
@@ -588,31 +1077,28 @@ union YYSTYPE
|
|
588
1077
|
PGLockWaitPolicy lockwaitpolicy;
|
589
1078
|
PGSubLinkType subquerytype;
|
590
1079
|
PGViewCheckOption viewcheckoption;
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
# define YYSTYPE_IS_TRIVIAL 1
|
1080
|
+
}
|
1081
|
+
/* Line 1529 of yacc.c. */
|
1082
|
+
#line 1083 "third_party/libpg_query/grammar/grammar_out.hpp"
|
1083
|
+
YYSTYPE;
|
1084
|
+
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
597
1085
|
# define YYSTYPE_IS_DECLARED 1
|
1086
|
+
# define YYSTYPE_IS_TRIVIAL 1
|
598
1087
|
#endif
|
599
1088
|
|
600
|
-
|
1089
|
+
|
1090
|
+
|
601
1091
|
#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
|
602
|
-
typedef struct YYLTYPE
|
603
|
-
struct YYLTYPE
|
1092
|
+
typedef struct YYLTYPE
|
604
1093
|
{
|
605
1094
|
int first_line;
|
606
1095
|
int first_column;
|
607
1096
|
int last_line;
|
608
1097
|
int last_column;
|
609
|
-
};
|
1098
|
+
} YYLTYPE;
|
1099
|
+
# define yyltype YYLTYPE /* obsolescent; will be withdrawn */
|
610
1100
|
# define YYLTYPE_IS_DECLARED 1
|
611
1101
|
# define YYLTYPE_IS_TRIVIAL 1
|
612
1102
|
#endif
|
613
1103
|
|
614
1104
|
|
615
|
-
|
616
|
-
int base_yyparse (core_yyscan_t yyscanner);
|
617
|
-
|
618
|
-
#endif /* !YY_BASE_YY_THIRD_PARTY_LIBPG_QUERY_GRAMMAR_GRAMMAR_OUT_HPP_INCLUDED */
|