duckdb 0.7.1-dev37.0 → 0.7.1-dev415.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/README.md +1 -1
- package/binding.gyp +7 -7
- package/package.json +3 -3
- package/src/duckdb/extension/json/buffered_json_reader.cpp +50 -9
- package/src/duckdb/extension/json/include/buffered_json_reader.hpp +7 -2
- package/src/duckdb/extension/json/include/json_scan.hpp +45 -10
- package/src/duckdb/extension/json/json_functions/copy_json.cpp +35 -22
- package/src/duckdb/extension/json/json_functions/json_create.cpp +8 -8
- package/src/duckdb/extension/json/json_functions/json_structure.cpp +8 -3
- package/src/duckdb/extension/json/json_functions/json_transform.cpp +54 -10
- package/src/duckdb/extension/json/json_functions/read_json.cpp +104 -49
- package/src/duckdb/extension/json/json_functions/read_json_objects.cpp +5 -3
- package/src/duckdb/extension/json/json_functions.cpp +7 -0
- package/src/duckdb/extension/json/json_scan.cpp +144 -37
- package/src/duckdb/extension/parquet/column_reader.cpp +7 -0
- package/src/duckdb/extension/parquet/include/column_reader.hpp +1 -0
- package/src/duckdb/extension/parquet/parquet-extension.cpp +2 -9
- package/src/duckdb/src/catalog/catalog.cpp +62 -13
- package/src/duckdb/src/catalog/catalog_entry/index_catalog_entry.cpp +8 -7
- package/src/duckdb/src/catalog/catalog_entry/schema_catalog_entry.cpp +1 -1
- package/src/duckdb/src/catalog/catalog_set.cpp +1 -1
- package/src/duckdb/src/catalog/default/default_views.cpp +1 -1
- package/src/duckdb/src/common/bind_helpers.cpp +55 -0
- package/src/duckdb/src/common/enums/logical_operator_type.cpp +2 -0
- package/src/duckdb/src/common/enums/physical_operator_type.cpp +2 -0
- package/src/duckdb/src/common/enums/statement_type.cpp +2 -0
- package/src/duckdb/src/common/file_system.cpp +28 -0
- package/src/duckdb/src/common/hive_partitioning.cpp +1 -0
- package/src/duckdb/src/common/local_file_system.cpp +4 -4
- package/src/duckdb/src/common/operator/cast_operators.cpp +10 -4
- package/src/duckdb/src/common/string_util.cpp +8 -4
- package/src/duckdb/src/common/types/partitioned_column_data.cpp +1 -0
- package/src/duckdb/src/common/types/time.cpp +1 -1
- package/src/duckdb/src/common/types/timestamp.cpp +35 -4
- package/src/duckdb/src/common/types.cpp +37 -11
- package/src/duckdb/src/execution/column_binding_resolver.cpp +5 -2
- package/src/duckdb/src/execution/index/art/art.cpp +117 -67
- package/src/duckdb/src/execution/index/art/art_key.cpp +24 -12
- package/src/duckdb/src/execution/index/art/leaf.cpp +7 -8
- package/src/duckdb/src/execution/index/art/node.cpp +13 -27
- package/src/duckdb/src/execution/index/art/node16.cpp +5 -8
- package/src/duckdb/src/execution/index/art/node256.cpp +3 -5
- package/src/duckdb/src/execution/index/art/node4.cpp +4 -7
- package/src/duckdb/src/execution/index/art/node48.cpp +5 -8
- package/src/duckdb/src/execution/index/art/prefix.cpp +2 -3
- package/src/duckdb/src/execution/operator/aggregate/physical_window.cpp +6 -27
- package/src/duckdb/src/execution/operator/helper/physical_reset.cpp +1 -9
- package/src/duckdb/src/execution/operator/helper/physical_set.cpp +1 -9
- package/src/duckdb/src/execution/operator/join/physical_iejoin.cpp +7 -9
- package/src/duckdb/src/execution/operator/persistent/base_csv_reader.cpp +6 -11
- package/src/duckdb/src/execution/operator/persistent/buffered_csv_reader.cpp +13 -13
- package/src/duckdb/src/execution/operator/schema/physical_detach.cpp +37 -0
- package/src/duckdb/src/execution/operator/schema/physical_drop.cpp +0 -5
- package/src/duckdb/src/execution/physical_operator.cpp +6 -6
- package/src/duckdb/src/execution/physical_plan/plan_simple.cpp +4 -0
- package/src/duckdb/src/execution/physical_plan_generator.cpp +1 -0
- package/src/duckdb/src/function/pragma/pragma_queries.cpp +38 -11
- package/src/duckdb/src/function/scalar/generic/current_setting.cpp +2 -2
- package/src/duckdb/src/function/scalar/map/map.cpp +69 -21
- package/src/duckdb/src/function/table/read_csv.cpp +17 -5
- package/src/duckdb/src/function/table/system/duckdb_temporary_files.cpp +59 -0
- package/src/duckdb/src/function/table/system_functions.cpp +1 -0
- package/src/duckdb/src/function/table/table_scan.cpp +3 -0
- package/src/duckdb/src/function/table/version/pragma_version.cpp +2 -2
- package/src/duckdb/src/include/duckdb/catalog/catalog.hpp +7 -1
- package/src/duckdb/src/include/duckdb/catalog/catalog_entry/duck_index_entry.hpp +1 -1
- package/src/duckdb/src/include/duckdb/catalog/catalog_entry/index_catalog_entry.hpp +1 -1
- package/src/duckdb/src/include/duckdb/common/bind_helpers.hpp +2 -0
- package/src/duckdb/src/include/duckdb/common/enums/logical_operator_type.hpp +1 -0
- package/src/duckdb/src/include/duckdb/common/enums/physical_operator_type.hpp +1 -0
- package/src/duckdb/src/include/duckdb/common/enums/statement_type.hpp +3 -2
- package/src/duckdb/src/include/duckdb/common/enums/wal_type.hpp +3 -0
- package/src/duckdb/src/include/duckdb/common/exception.hpp +10 -0
- package/src/duckdb/src/include/duckdb/common/file_system.hpp +1 -0
- package/src/duckdb/src/include/duckdb/common/hive_partitioning.hpp +9 -1
- package/src/duckdb/src/include/duckdb/common/radix_partitioning.hpp +4 -4
- package/src/duckdb/src/include/duckdb/common/string_util.hpp +9 -2
- package/src/duckdb/src/include/duckdb/common/types/timestamp.hpp +5 -1
- package/src/duckdb/src/include/duckdb/execution/index/art/art.hpp +37 -41
- package/src/duckdb/src/include/duckdb/execution/index/art/art_key.hpp +8 -11
- package/src/duckdb/src/include/duckdb/execution/operator/persistent/base_csv_reader.hpp +1 -3
- package/src/duckdb/src/include/duckdb/execution/operator/persistent/buffered_csv_reader.hpp +0 -2
- package/src/duckdb/src/include/duckdb/execution/operator/persistent/csv_reader_options.hpp +2 -0
- package/src/duckdb/src/include/duckdb/execution/operator/schema/physical_detach.hpp +32 -0
- package/src/duckdb/src/include/duckdb/function/table/system_functions.hpp +4 -0
- package/src/duckdb/src/include/duckdb/main/client_data.hpp +2 -2
- package/src/duckdb/src/include/duckdb/main/config.hpp +2 -3
- package/src/duckdb/src/include/duckdb/main/{extension_functions.hpp → extension_entries.hpp} +26 -5
- package/src/duckdb/src/include/duckdb/main/extension_helper.hpp +3 -0
- package/src/duckdb/src/include/duckdb/main/settings.hpp +9 -0
- package/src/duckdb/src/include/duckdb/parallel/pipeline_executor.hpp +0 -7
- package/src/duckdb/src/include/duckdb/parser/parsed_data/create_database_info.hpp +0 -4
- package/src/duckdb/src/include/duckdb/parser/parsed_data/detach_info.hpp +32 -0
- package/src/duckdb/src/include/duckdb/parser/query_node/select_node.hpp +1 -1
- package/src/duckdb/src/include/duckdb/parser/sql_statement.hpp +2 -2
- package/src/duckdb/src/include/duckdb/parser/statement/copy_statement.hpp +1 -1
- package/src/duckdb/src/include/duckdb/parser/statement/detach_statement.hpp +29 -0
- package/src/duckdb/src/include/duckdb/parser/statement/list.hpp +1 -0
- package/src/duckdb/src/include/duckdb/parser/statement/select_statement.hpp +3 -3
- package/src/duckdb/src/include/duckdb/parser/tableref/subqueryref.hpp +1 -1
- package/src/duckdb/src/include/duckdb/parser/tokens.hpp +1 -0
- package/src/duckdb/src/include/duckdb/parser/transformer.hpp +1 -0
- package/src/duckdb/src/include/duckdb/planner/binder.hpp +4 -0
- package/src/duckdb/src/include/duckdb/planner/expression_binder/index_binder.hpp +10 -3
- package/src/duckdb/src/include/duckdb/planner/operator/logical_execute.hpp +1 -5
- package/src/duckdb/src/include/duckdb/planner/operator/logical_show.hpp +1 -2
- package/src/duckdb/src/include/duckdb/storage/buffer_manager.hpp +8 -0
- package/src/duckdb/src/include/duckdb/storage/data_table.hpp +7 -1
- package/src/duckdb/src/include/duckdb/storage/index.hpp +47 -38
- package/src/duckdb/src/include/duckdb/storage/storage_extension.hpp +7 -0
- package/src/duckdb/src/include/duckdb/storage/table/update_segment.hpp +2 -0
- package/src/duckdb/src/include/duckdb/storage/write_ahead_log.hpp +7 -0
- package/src/duckdb/src/main/client_context.cpp +2 -0
- package/src/duckdb/src/main/config.cpp +1 -0
- package/src/duckdb/src/main/database.cpp +14 -5
- package/src/duckdb/src/main/extension/extension_alias.cpp +2 -1
- package/src/duckdb/src/main/extension/extension_install.cpp +43 -9
- package/src/duckdb/src/main/extension/extension_load.cpp +29 -5
- package/src/duckdb/src/main/settings/settings.cpp +16 -0
- package/src/duckdb/src/optimizer/statistics/operator/propagate_join.cpp +2 -6
- package/src/duckdb/src/parallel/pipeline_executor.cpp +1 -55
- package/src/duckdb/src/parser/parsed_data/create_index_info.cpp +3 -0
- package/src/duckdb/src/parser/statement/copy_statement.cpp +2 -13
- package/src/duckdb/src/parser/statement/delete_statement.cpp +3 -0
- package/src/duckdb/src/parser/statement/detach_statement.cpp +15 -0
- package/src/duckdb/src/parser/statement/insert_statement.cpp +9 -0
- package/src/duckdb/src/parser/statement/update_statement.cpp +3 -0
- package/src/duckdb/src/parser/transform/expression/transform_case.cpp +3 -3
- package/src/duckdb/src/parser/transform/statement/transform_create_database.cpp +0 -1
- package/src/duckdb/src/parser/transform/statement/transform_detach.cpp +19 -0
- package/src/duckdb/src/parser/transformer.cpp +2 -0
- package/src/duckdb/src/planner/bind_context.cpp +1 -1
- package/src/duckdb/src/planner/binder/expression/bind_aggregate_expression.cpp +3 -0
- package/src/duckdb/src/planner/binder/statement/bind_copy.cpp +7 -14
- package/src/duckdb/src/planner/binder/statement/bind_create.cpp +16 -14
- package/src/duckdb/src/planner/binder/statement/bind_create_table.cpp +13 -0
- package/src/duckdb/src/planner/binder/statement/bind_detach.cpp +19 -0
- package/src/duckdb/src/planner/binder/statement/bind_drop.cpp +29 -4
- package/src/duckdb/src/planner/binder/statement/bind_insert.cpp +22 -1
- package/src/duckdb/src/planner/binder.cpp +2 -0
- package/src/duckdb/src/planner/expression_binder/index_binder.cpp +32 -1
- package/src/duckdb/src/planner/logical_operator.cpp +6 -1
- package/src/duckdb/src/planner/planner.cpp +1 -0
- package/src/duckdb/src/storage/buffer_manager.cpp +105 -26
- package/src/duckdb/src/storage/compression/bitpacking.cpp +16 -7
- package/src/duckdb/src/storage/data_table.cpp +66 -3
- package/src/duckdb/src/storage/index.cpp +1 -1
- package/src/duckdb/src/storage/local_storage.cpp +1 -1
- package/src/duckdb/src/storage/table/column_data.cpp +4 -2
- package/src/duckdb/src/storage/table/update_segment.cpp +15 -0
- package/src/duckdb/src/storage/table_index_list.cpp +1 -2
- package/src/duckdb/src/storage/wal_replay.cpp +68 -0
- package/src/duckdb/src/storage/write_ahead_log.cpp +21 -1
- package/src/duckdb/src/transaction/commit_state.cpp +5 -2
- package/src/duckdb/third_party/concurrentqueue/blockingconcurrentqueue.h +2 -2
- package/src/duckdb/third_party/fmt/include/fmt/core.h +1 -2
- package/src/duckdb/third_party/libpg_query/include/nodes/nodes.hpp +1 -0
- package/src/duckdb/third_party/libpg_query/include/nodes/parsenodes.hpp +14 -0
- package/src/duckdb/third_party/libpg_query/include/parser/gram.hpp +530 -1006
- package/src/duckdb/third_party/libpg_query/src_backend_parser_gram.cpp +17659 -17626
- package/src/duckdb/ub_extension_icu_third_party_icu_i18n.cpp +4 -4
- package/src/duckdb/ub_src_execution_operator_schema.cpp +2 -0
- package/src/duckdb/ub_src_function_table_system.cpp +2 -0
- package/src/duckdb/ub_src_parser_statement.cpp +2 -0
- package/src/duckdb/ub_src_parser_transform_statement.cpp +2 -0
- package/src/duckdb/ub_src_planner_binder_statement.cpp +2 -0
- package/src/statement.cpp +46 -12
- package/test/arrow.test.ts +3 -3
- package/test/prepare.test.ts +39 -1
- package/test/typescript_decls.test.ts +1 -1
- package/src/duckdb/src/include/duckdb/function/create_database_extension.hpp +0 -37
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
/* A Bison parser, made by GNU Bison
|
|
1
|
+
/* A Bison parser, made by GNU Bison 3.5.1. */
|
|
2
2
|
|
|
3
|
-
/*
|
|
3
|
+
/* Bison interface for Yacc-like parsers in C
|
|
4
4
|
|
|
5
|
-
Copyright (C) 1984, 1989
|
|
6
|
-
|
|
5
|
+
Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2020 Free Software Foundation,
|
|
6
|
+
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
|
-
any later version.
|
|
10
|
+
the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+
(at your option) 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,9 +16,7 @@
|
|
|
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
|
|
20
|
-
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
21
|
-
Boston, MA 02110-1301, USA. */
|
|
19
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
22
20
|
|
|
23
21
|
/* As a special exception, you may create a larger work that contains
|
|
24
22
|
part or all of the Bison parser skeleton and distribute that work
|
|
@@ -33,997 +31,520 @@
|
|
|
33
31
|
This special exception was added by the Free Software Foundation in
|
|
34
32
|
version 2.2 of Bison. */
|
|
35
33
|
|
|
36
|
-
/*
|
|
34
|
+
/* Undocumented macros, especially those whose name start with YY_,
|
|
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. */
|
|
37
48
|
#ifndef YYTOKENTYPE
|
|
38
49
|
# define YYTOKENTYPE
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
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
|
-
};
|
|
50
|
+
enum yytokentype
|
|
51
|
+
{
|
|
52
|
+
IDENT = 258,
|
|
53
|
+
FCONST = 259,
|
|
54
|
+
SCONST = 260,
|
|
55
|
+
BCONST = 261,
|
|
56
|
+
XCONST = 262,
|
|
57
|
+
Op = 263,
|
|
58
|
+
ICONST = 264,
|
|
59
|
+
PARAM = 265,
|
|
60
|
+
TYPECAST = 266,
|
|
61
|
+
DOT_DOT = 267,
|
|
62
|
+
COLON_EQUALS = 268,
|
|
63
|
+
EQUALS_GREATER = 269,
|
|
64
|
+
POWER_OF = 270,
|
|
65
|
+
LAMBDA_ARROW = 271,
|
|
66
|
+
DOUBLE_ARROW = 272,
|
|
67
|
+
LESS_EQUALS = 273,
|
|
68
|
+
GREATER_EQUALS = 274,
|
|
69
|
+
NOT_EQUALS = 275,
|
|
70
|
+
ABORT_P = 276,
|
|
71
|
+
ABSOLUTE_P = 277,
|
|
72
|
+
ACCESS = 278,
|
|
73
|
+
ACTION = 279,
|
|
74
|
+
ADD_P = 280,
|
|
75
|
+
ADMIN = 281,
|
|
76
|
+
AFTER = 282,
|
|
77
|
+
AGGREGATE = 283,
|
|
78
|
+
ALL = 284,
|
|
79
|
+
ALSO = 285,
|
|
80
|
+
ALTER = 286,
|
|
81
|
+
ALWAYS = 287,
|
|
82
|
+
ANALYSE = 288,
|
|
83
|
+
ANALYZE = 289,
|
|
84
|
+
AND = 290,
|
|
85
|
+
ANY = 291,
|
|
86
|
+
ARRAY = 292,
|
|
87
|
+
AS = 293,
|
|
88
|
+
ASC_P = 294,
|
|
89
|
+
ASSERTION = 295,
|
|
90
|
+
ASSIGNMENT = 296,
|
|
91
|
+
ASYMMETRIC = 297,
|
|
92
|
+
AT = 298,
|
|
93
|
+
ATTACH = 299,
|
|
94
|
+
ATTRIBUTE = 300,
|
|
95
|
+
AUTHORIZATION = 301,
|
|
96
|
+
BACKWARD = 302,
|
|
97
|
+
BEFORE = 303,
|
|
98
|
+
BEGIN_P = 304,
|
|
99
|
+
BETWEEN = 305,
|
|
100
|
+
BIGINT = 306,
|
|
101
|
+
BINARY = 307,
|
|
102
|
+
BIT = 308,
|
|
103
|
+
BOOLEAN_P = 309,
|
|
104
|
+
BOTH = 310,
|
|
105
|
+
BY = 311,
|
|
106
|
+
CACHE = 312,
|
|
107
|
+
CALL_P = 313,
|
|
108
|
+
CALLED = 314,
|
|
109
|
+
CASCADE = 315,
|
|
110
|
+
CASCADED = 316,
|
|
111
|
+
CASE = 317,
|
|
112
|
+
CAST = 318,
|
|
113
|
+
CATALOG_P = 319,
|
|
114
|
+
CHAIN = 320,
|
|
115
|
+
CHAR_P = 321,
|
|
116
|
+
CHARACTER = 322,
|
|
117
|
+
CHARACTERISTICS = 323,
|
|
118
|
+
CHECK_P = 324,
|
|
119
|
+
CHECKPOINT = 325,
|
|
120
|
+
CLASS = 326,
|
|
121
|
+
CLOSE = 327,
|
|
122
|
+
CLUSTER = 328,
|
|
123
|
+
COALESCE = 329,
|
|
124
|
+
COLLATE = 330,
|
|
125
|
+
COLLATION = 331,
|
|
126
|
+
COLUMN = 332,
|
|
127
|
+
COLUMNS = 333,
|
|
128
|
+
COMMENT = 334,
|
|
129
|
+
COMMENTS = 335,
|
|
130
|
+
COMMIT = 336,
|
|
131
|
+
COMMITTED = 337,
|
|
132
|
+
COMPRESSION = 338,
|
|
133
|
+
CONCURRENTLY = 339,
|
|
134
|
+
CONFIGURATION = 340,
|
|
135
|
+
CONFLICT = 341,
|
|
136
|
+
CONNECTION = 342,
|
|
137
|
+
CONSTRAINT = 343,
|
|
138
|
+
CONSTRAINTS = 344,
|
|
139
|
+
CONTENT_P = 345,
|
|
140
|
+
CONTINUE_P = 346,
|
|
141
|
+
CONVERSION_P = 347,
|
|
142
|
+
COPY = 348,
|
|
143
|
+
COST = 349,
|
|
144
|
+
CREATE_P = 350,
|
|
145
|
+
CROSS = 351,
|
|
146
|
+
CSV = 352,
|
|
147
|
+
CUBE = 353,
|
|
148
|
+
CURRENT_P = 354,
|
|
149
|
+
CURRENT_CATALOG = 355,
|
|
150
|
+
CURRENT_DATE = 356,
|
|
151
|
+
CURRENT_ROLE = 357,
|
|
152
|
+
CURRENT_SCHEMA = 358,
|
|
153
|
+
CURRENT_TIME = 359,
|
|
154
|
+
CURRENT_TIMESTAMP = 360,
|
|
155
|
+
CURRENT_USER = 361,
|
|
156
|
+
CURSOR = 362,
|
|
157
|
+
CYCLE = 363,
|
|
158
|
+
DATA_P = 364,
|
|
159
|
+
DATABASE = 365,
|
|
160
|
+
DAY_P = 366,
|
|
161
|
+
DAYS_P = 367,
|
|
162
|
+
DEALLOCATE = 368,
|
|
163
|
+
DEC = 369,
|
|
164
|
+
DECIMAL_P = 370,
|
|
165
|
+
DECLARE = 371,
|
|
166
|
+
DEFAULT = 372,
|
|
167
|
+
DEFAULTS = 373,
|
|
168
|
+
DEFERRABLE = 374,
|
|
169
|
+
DEFERRED = 375,
|
|
170
|
+
DEFINER = 376,
|
|
171
|
+
DELETE_P = 377,
|
|
172
|
+
DELIMITER = 378,
|
|
173
|
+
DELIMITERS = 379,
|
|
174
|
+
DEPENDS = 380,
|
|
175
|
+
DESC_P = 381,
|
|
176
|
+
DESCRIBE = 382,
|
|
177
|
+
DETACH = 383,
|
|
178
|
+
DICTIONARY = 384,
|
|
179
|
+
DISABLE_P = 385,
|
|
180
|
+
DISCARD = 386,
|
|
181
|
+
DISTINCT = 387,
|
|
182
|
+
DO = 388,
|
|
183
|
+
DOCUMENT_P = 389,
|
|
184
|
+
DOMAIN_P = 390,
|
|
185
|
+
DOUBLE_P = 391,
|
|
186
|
+
DROP = 392,
|
|
187
|
+
EACH = 393,
|
|
188
|
+
ELSE = 394,
|
|
189
|
+
ENABLE_P = 395,
|
|
190
|
+
ENCODING = 396,
|
|
191
|
+
ENCRYPTED = 397,
|
|
192
|
+
END_P = 398,
|
|
193
|
+
ENUM_P = 399,
|
|
194
|
+
ESCAPE = 400,
|
|
195
|
+
EVENT = 401,
|
|
196
|
+
EXCEPT = 402,
|
|
197
|
+
EXCLUDE = 403,
|
|
198
|
+
EXCLUDING = 404,
|
|
199
|
+
EXCLUSIVE = 405,
|
|
200
|
+
EXECUTE = 406,
|
|
201
|
+
EXISTS = 407,
|
|
202
|
+
EXPLAIN = 408,
|
|
203
|
+
EXPORT_P = 409,
|
|
204
|
+
EXPORT_STATE = 410,
|
|
205
|
+
EXTENSION = 411,
|
|
206
|
+
EXTERNAL = 412,
|
|
207
|
+
EXTRACT = 413,
|
|
208
|
+
FALSE_P = 414,
|
|
209
|
+
FAMILY = 415,
|
|
210
|
+
FETCH = 416,
|
|
211
|
+
FILTER = 417,
|
|
212
|
+
FIRST_P = 418,
|
|
213
|
+
FLOAT_P = 419,
|
|
214
|
+
FOLLOWING = 420,
|
|
215
|
+
FOR = 421,
|
|
216
|
+
FORCE = 422,
|
|
217
|
+
FOREIGN = 423,
|
|
218
|
+
FORWARD = 424,
|
|
219
|
+
FREEZE = 425,
|
|
220
|
+
FROM = 426,
|
|
221
|
+
FULL = 427,
|
|
222
|
+
FUNCTION = 428,
|
|
223
|
+
FUNCTIONS = 429,
|
|
224
|
+
GENERATED = 430,
|
|
225
|
+
GLOB = 431,
|
|
226
|
+
GLOBAL = 432,
|
|
227
|
+
GRANT = 433,
|
|
228
|
+
GRANTED = 434,
|
|
229
|
+
GROUP_P = 435,
|
|
230
|
+
GROUPING = 436,
|
|
231
|
+
GROUPING_ID = 437,
|
|
232
|
+
HANDLER = 438,
|
|
233
|
+
HAVING = 439,
|
|
234
|
+
HEADER_P = 440,
|
|
235
|
+
HOLD = 441,
|
|
236
|
+
HOUR_P = 442,
|
|
237
|
+
HOURS_P = 443,
|
|
238
|
+
IDENTITY_P = 444,
|
|
239
|
+
IF_P = 445,
|
|
240
|
+
IGNORE_P = 446,
|
|
241
|
+
ILIKE = 447,
|
|
242
|
+
IMMEDIATE = 448,
|
|
243
|
+
IMMUTABLE = 449,
|
|
244
|
+
IMPLICIT_P = 450,
|
|
245
|
+
IMPORT_P = 451,
|
|
246
|
+
IN_P = 452,
|
|
247
|
+
INCLUDING = 453,
|
|
248
|
+
INCREMENT = 454,
|
|
249
|
+
INDEX = 455,
|
|
250
|
+
INDEXES = 456,
|
|
251
|
+
INHERIT = 457,
|
|
252
|
+
INHERITS = 458,
|
|
253
|
+
INITIALLY = 459,
|
|
254
|
+
INLINE_P = 460,
|
|
255
|
+
INNER_P = 461,
|
|
256
|
+
INOUT = 462,
|
|
257
|
+
INPUT_P = 463,
|
|
258
|
+
INSENSITIVE = 464,
|
|
259
|
+
INSERT = 465,
|
|
260
|
+
INSTALL = 466,
|
|
261
|
+
INSTEAD = 467,
|
|
262
|
+
INT_P = 468,
|
|
263
|
+
INTEGER = 469,
|
|
264
|
+
INTERSECT = 470,
|
|
265
|
+
INTERVAL = 471,
|
|
266
|
+
INTO = 472,
|
|
267
|
+
INVOKER = 473,
|
|
268
|
+
IS = 474,
|
|
269
|
+
ISNULL = 475,
|
|
270
|
+
ISOLATION = 476,
|
|
271
|
+
JOIN = 477,
|
|
272
|
+
JSON = 478,
|
|
273
|
+
KEY = 479,
|
|
274
|
+
LABEL = 480,
|
|
275
|
+
LANGUAGE = 481,
|
|
276
|
+
LARGE_P = 482,
|
|
277
|
+
LAST_P = 483,
|
|
278
|
+
LATERAL_P = 484,
|
|
279
|
+
LEADING = 485,
|
|
280
|
+
LEAKPROOF = 486,
|
|
281
|
+
LEFT = 487,
|
|
282
|
+
LEVEL = 488,
|
|
283
|
+
LIKE = 489,
|
|
284
|
+
LIMIT = 490,
|
|
285
|
+
LISTEN = 491,
|
|
286
|
+
LOAD = 492,
|
|
287
|
+
LOCAL = 493,
|
|
288
|
+
LOCALTIME = 494,
|
|
289
|
+
LOCALTIMESTAMP = 495,
|
|
290
|
+
LOCATION = 496,
|
|
291
|
+
LOCK_P = 497,
|
|
292
|
+
LOCKED = 498,
|
|
293
|
+
LOGGED = 499,
|
|
294
|
+
MACRO = 500,
|
|
295
|
+
MAP = 501,
|
|
296
|
+
MAPPING = 502,
|
|
297
|
+
MATCH = 503,
|
|
298
|
+
MATERIALIZED = 504,
|
|
299
|
+
MAXVALUE = 505,
|
|
300
|
+
METHOD = 506,
|
|
301
|
+
MICROSECOND_P = 507,
|
|
302
|
+
MICROSECONDS_P = 508,
|
|
303
|
+
MILLISECOND_P = 509,
|
|
304
|
+
MILLISECONDS_P = 510,
|
|
305
|
+
MINUTE_P = 511,
|
|
306
|
+
MINUTES_P = 512,
|
|
307
|
+
MINVALUE = 513,
|
|
308
|
+
MODE = 514,
|
|
309
|
+
MONTH_P = 515,
|
|
310
|
+
MONTHS_P = 516,
|
|
311
|
+
MOVE = 517,
|
|
312
|
+
NAME_P = 518,
|
|
313
|
+
NAMES = 519,
|
|
314
|
+
NATIONAL = 520,
|
|
315
|
+
NATURAL = 521,
|
|
316
|
+
NCHAR = 522,
|
|
317
|
+
NEW = 523,
|
|
318
|
+
NEXT = 524,
|
|
319
|
+
NO = 525,
|
|
320
|
+
NONE = 526,
|
|
321
|
+
NOT = 527,
|
|
322
|
+
NOTHING = 528,
|
|
323
|
+
NOTIFY = 529,
|
|
324
|
+
NOTNULL = 530,
|
|
325
|
+
NOWAIT = 531,
|
|
326
|
+
NULL_P = 532,
|
|
327
|
+
NULLIF = 533,
|
|
328
|
+
NULLS_P = 534,
|
|
329
|
+
NUMERIC = 535,
|
|
330
|
+
OBJECT_P = 536,
|
|
331
|
+
OF = 537,
|
|
332
|
+
OFF = 538,
|
|
333
|
+
OFFSET = 539,
|
|
334
|
+
OIDS = 540,
|
|
335
|
+
OLD = 541,
|
|
336
|
+
ON = 542,
|
|
337
|
+
ONLY = 543,
|
|
338
|
+
OPERATOR = 544,
|
|
339
|
+
OPTION = 545,
|
|
340
|
+
OPTIONS = 546,
|
|
341
|
+
OR = 547,
|
|
342
|
+
ORDER = 548,
|
|
343
|
+
ORDINALITY = 549,
|
|
344
|
+
OUT_P = 550,
|
|
345
|
+
OUTER_P = 551,
|
|
346
|
+
OVER = 552,
|
|
347
|
+
OVERLAPS = 553,
|
|
348
|
+
OVERLAY = 554,
|
|
349
|
+
OVERRIDING = 555,
|
|
350
|
+
OWNED = 556,
|
|
351
|
+
OWNER = 557,
|
|
352
|
+
PARALLEL = 558,
|
|
353
|
+
PARSER = 559,
|
|
354
|
+
PARTIAL = 560,
|
|
355
|
+
PARTITION = 561,
|
|
356
|
+
PASSING = 562,
|
|
357
|
+
PASSWORD = 563,
|
|
358
|
+
PERCENT = 564,
|
|
359
|
+
PLACING = 565,
|
|
360
|
+
PLANS = 566,
|
|
361
|
+
POLICY = 567,
|
|
362
|
+
POSITION = 568,
|
|
363
|
+
POSITIONAL = 569,
|
|
364
|
+
PRAGMA_P = 570,
|
|
365
|
+
PRECEDING = 571,
|
|
366
|
+
PRECISION = 572,
|
|
367
|
+
PREPARE = 573,
|
|
368
|
+
PREPARED = 574,
|
|
369
|
+
PRESERVE = 575,
|
|
370
|
+
PRIMARY = 576,
|
|
371
|
+
PRIOR = 577,
|
|
372
|
+
PRIVILEGES = 578,
|
|
373
|
+
PROCEDURAL = 579,
|
|
374
|
+
PROCEDURE = 580,
|
|
375
|
+
PROGRAM = 581,
|
|
376
|
+
PUBLICATION = 582,
|
|
377
|
+
QUALIFY = 583,
|
|
378
|
+
QUOTE = 584,
|
|
379
|
+
RANGE = 585,
|
|
380
|
+
READ_P = 586,
|
|
381
|
+
REAL = 587,
|
|
382
|
+
REASSIGN = 588,
|
|
383
|
+
RECHECK = 589,
|
|
384
|
+
RECURSIVE = 590,
|
|
385
|
+
REF = 591,
|
|
386
|
+
REFERENCES = 592,
|
|
387
|
+
REFERENCING = 593,
|
|
388
|
+
REFRESH = 594,
|
|
389
|
+
REINDEX = 595,
|
|
390
|
+
RELATIVE_P = 596,
|
|
391
|
+
RELEASE = 597,
|
|
392
|
+
RENAME = 598,
|
|
393
|
+
REPEATABLE = 599,
|
|
394
|
+
REPLACE = 600,
|
|
395
|
+
REPLICA = 601,
|
|
396
|
+
RESET = 602,
|
|
397
|
+
RESPECT_P = 603,
|
|
398
|
+
RESTART = 604,
|
|
399
|
+
RESTRICT = 605,
|
|
400
|
+
RETURNING = 606,
|
|
401
|
+
RETURNS = 607,
|
|
402
|
+
REVOKE = 608,
|
|
403
|
+
RIGHT = 609,
|
|
404
|
+
ROLE = 610,
|
|
405
|
+
ROLLBACK = 611,
|
|
406
|
+
ROLLUP = 612,
|
|
407
|
+
ROW = 613,
|
|
408
|
+
ROWS = 614,
|
|
409
|
+
RULE = 615,
|
|
410
|
+
SAMPLE = 616,
|
|
411
|
+
SAVEPOINT = 617,
|
|
412
|
+
SCHEMA = 618,
|
|
413
|
+
SCHEMAS = 619,
|
|
414
|
+
SCROLL = 620,
|
|
415
|
+
SEARCH = 621,
|
|
416
|
+
SECOND_P = 622,
|
|
417
|
+
SECONDS_P = 623,
|
|
418
|
+
SECURITY = 624,
|
|
419
|
+
SELECT = 625,
|
|
420
|
+
SEQUENCE = 626,
|
|
421
|
+
SEQUENCES = 627,
|
|
422
|
+
SERIALIZABLE = 628,
|
|
423
|
+
SERVER = 629,
|
|
424
|
+
SESSION = 630,
|
|
425
|
+
SESSION_USER = 631,
|
|
426
|
+
SET = 632,
|
|
427
|
+
SETOF = 633,
|
|
428
|
+
SETS = 634,
|
|
429
|
+
SHARE = 635,
|
|
430
|
+
SHOW = 636,
|
|
431
|
+
SIMILAR = 637,
|
|
432
|
+
SIMPLE = 638,
|
|
433
|
+
SKIP = 639,
|
|
434
|
+
SMALLINT = 640,
|
|
435
|
+
SNAPSHOT = 641,
|
|
436
|
+
SOME = 642,
|
|
437
|
+
SQL_P = 643,
|
|
438
|
+
STABLE = 644,
|
|
439
|
+
STANDALONE_P = 645,
|
|
440
|
+
START = 646,
|
|
441
|
+
STATEMENT = 647,
|
|
442
|
+
STATISTICS = 648,
|
|
443
|
+
STDIN = 649,
|
|
444
|
+
STDOUT = 650,
|
|
445
|
+
STORAGE = 651,
|
|
446
|
+
STORED = 652,
|
|
447
|
+
STRICT_P = 653,
|
|
448
|
+
STRIP_P = 654,
|
|
449
|
+
STRUCT = 655,
|
|
450
|
+
SUBSCRIPTION = 656,
|
|
451
|
+
SUBSTRING = 657,
|
|
452
|
+
SUMMARIZE = 658,
|
|
453
|
+
SYMMETRIC = 659,
|
|
454
|
+
SYSID = 660,
|
|
455
|
+
SYSTEM_P = 661,
|
|
456
|
+
TABLE = 662,
|
|
457
|
+
TABLES = 663,
|
|
458
|
+
TABLESAMPLE = 664,
|
|
459
|
+
TABLESPACE = 665,
|
|
460
|
+
TEMP = 666,
|
|
461
|
+
TEMPLATE = 667,
|
|
462
|
+
TEMPORARY = 668,
|
|
463
|
+
TEXT_P = 669,
|
|
464
|
+
THEN = 670,
|
|
465
|
+
TIME = 671,
|
|
466
|
+
TIMESTAMP = 672,
|
|
467
|
+
TO = 673,
|
|
468
|
+
TRAILING = 674,
|
|
469
|
+
TRANSACTION = 675,
|
|
470
|
+
TRANSFORM = 676,
|
|
471
|
+
TREAT = 677,
|
|
472
|
+
TRIGGER = 678,
|
|
473
|
+
TRIM = 679,
|
|
474
|
+
TRUE_P = 680,
|
|
475
|
+
TRUNCATE = 681,
|
|
476
|
+
TRUSTED = 682,
|
|
477
|
+
TRY_CAST = 683,
|
|
478
|
+
TYPE_P = 684,
|
|
479
|
+
TYPES_P = 685,
|
|
480
|
+
UNBOUNDED = 686,
|
|
481
|
+
UNCOMMITTED = 687,
|
|
482
|
+
UNENCRYPTED = 688,
|
|
483
|
+
UNION = 689,
|
|
484
|
+
UNIQUE = 690,
|
|
485
|
+
UNKNOWN = 691,
|
|
486
|
+
UNLISTEN = 692,
|
|
487
|
+
UNLOGGED = 693,
|
|
488
|
+
UNTIL = 694,
|
|
489
|
+
UPDATE = 695,
|
|
490
|
+
USE_P = 696,
|
|
491
|
+
USER = 697,
|
|
492
|
+
USING = 698,
|
|
493
|
+
VACUUM = 699,
|
|
494
|
+
VALID = 700,
|
|
495
|
+
VALIDATE = 701,
|
|
496
|
+
VALIDATOR = 702,
|
|
497
|
+
VALUE_P = 703,
|
|
498
|
+
VALUES = 704,
|
|
499
|
+
VARCHAR = 705,
|
|
500
|
+
VARIADIC = 706,
|
|
501
|
+
VARYING = 707,
|
|
502
|
+
VERBOSE = 708,
|
|
503
|
+
VERSION_P = 709,
|
|
504
|
+
VIEW = 710,
|
|
505
|
+
VIEWS = 711,
|
|
506
|
+
VIRTUAL = 712,
|
|
507
|
+
VOLATILE = 713,
|
|
508
|
+
WHEN = 714,
|
|
509
|
+
WHERE = 715,
|
|
510
|
+
WHITESPACE_P = 716,
|
|
511
|
+
WINDOW = 717,
|
|
512
|
+
WITH = 718,
|
|
513
|
+
WITHIN = 719,
|
|
514
|
+
WITHOUT = 720,
|
|
515
|
+
WORK = 721,
|
|
516
|
+
WRAPPER = 722,
|
|
517
|
+
WRITE_P = 723,
|
|
518
|
+
XML_P = 724,
|
|
519
|
+
XMLATTRIBUTES = 725,
|
|
520
|
+
XMLCONCAT = 726,
|
|
521
|
+
XMLELEMENT = 727,
|
|
522
|
+
XMLEXISTS = 728,
|
|
523
|
+
XMLFOREST = 729,
|
|
524
|
+
XMLNAMESPACES = 730,
|
|
525
|
+
XMLPARSE = 731,
|
|
526
|
+
XMLPI = 732,
|
|
527
|
+
XMLROOT = 733,
|
|
528
|
+
XMLSERIALIZE = 734,
|
|
529
|
+
XMLTABLE = 735,
|
|
530
|
+
YEAR_P = 736,
|
|
531
|
+
YEARS_P = 737,
|
|
532
|
+
YES_P = 738,
|
|
533
|
+
ZONE = 739,
|
|
534
|
+
NOT_LA = 740,
|
|
535
|
+
NULLS_LA = 741,
|
|
536
|
+
WITH_LA = 742,
|
|
537
|
+
POSTFIXOP = 743,
|
|
538
|
+
UMINUS = 744
|
|
539
|
+
};
|
|
530
540
|
#endif
|
|
531
|
-
/* Tokens. */
|
|
532
|
-
#define IDENT 258
|
|
533
|
-
#define FCONST 259
|
|
534
|
-
#define SCONST 260
|
|
535
|
-
#define BCONST 261
|
|
536
|
-
#define XCONST 262
|
|
537
|
-
#define Op 263
|
|
538
|
-
#define ICONST 264
|
|
539
|
-
#define PARAM 265
|
|
540
|
-
#define TYPECAST 266
|
|
541
|
-
#define DOT_DOT 267
|
|
542
|
-
#define COLON_EQUALS 268
|
|
543
|
-
#define EQUALS_GREATER 269
|
|
544
|
-
#define POWER_OF 270
|
|
545
|
-
#define LAMBDA_ARROW 271
|
|
546
|
-
#define DOUBLE_ARROW 272
|
|
547
|
-
#define LESS_EQUALS 273
|
|
548
|
-
#define GREATER_EQUALS 274
|
|
549
|
-
#define NOT_EQUALS 275
|
|
550
|
-
#define ABORT_P 276
|
|
551
|
-
#define ABSOLUTE_P 277
|
|
552
|
-
#define ACCESS 278
|
|
553
|
-
#define ACTION 279
|
|
554
|
-
#define ADD_P 280
|
|
555
|
-
#define ADMIN 281
|
|
556
|
-
#define AFTER 282
|
|
557
|
-
#define AGGREGATE 283
|
|
558
|
-
#define ALL 284
|
|
559
|
-
#define ALSO 285
|
|
560
|
-
#define ALTER 286
|
|
561
|
-
#define ALWAYS 287
|
|
562
|
-
#define ANALYSE 288
|
|
563
|
-
#define ANALYZE 289
|
|
564
|
-
#define AND 290
|
|
565
|
-
#define ANY 291
|
|
566
|
-
#define ARRAY 292
|
|
567
|
-
#define AS 293
|
|
568
|
-
#define ASC_P 294
|
|
569
|
-
#define ASSERTION 295
|
|
570
|
-
#define ASSIGNMENT 296
|
|
571
|
-
#define ASYMMETRIC 297
|
|
572
|
-
#define AT 298
|
|
573
|
-
#define ATTACH 299
|
|
574
|
-
#define ATTRIBUTE 300
|
|
575
|
-
#define AUTHORIZATION 301
|
|
576
|
-
#define BACKWARD 302
|
|
577
|
-
#define BEFORE 303
|
|
578
|
-
#define BEGIN_P 304
|
|
579
|
-
#define BETWEEN 305
|
|
580
|
-
#define BIGINT 306
|
|
581
|
-
#define BINARY 307
|
|
582
|
-
#define BIT 308
|
|
583
|
-
#define BOOLEAN_P 309
|
|
584
|
-
#define BOTH 310
|
|
585
|
-
#define BY 311
|
|
586
|
-
#define CACHE 312
|
|
587
|
-
#define CALL_P 313
|
|
588
|
-
#define CALLED 314
|
|
589
|
-
#define CASCADE 315
|
|
590
|
-
#define CASCADED 316
|
|
591
|
-
#define CASE 317
|
|
592
|
-
#define CAST 318
|
|
593
|
-
#define CATALOG_P 319
|
|
594
|
-
#define CHAIN 320
|
|
595
|
-
#define CHAR_P 321
|
|
596
|
-
#define CHARACTER 322
|
|
597
|
-
#define CHARACTERISTICS 323
|
|
598
|
-
#define CHECK_P 324
|
|
599
|
-
#define CHECKPOINT 325
|
|
600
|
-
#define CLASS 326
|
|
601
|
-
#define CLOSE 327
|
|
602
|
-
#define CLUSTER 328
|
|
603
|
-
#define COALESCE 329
|
|
604
|
-
#define COLLATE 330
|
|
605
|
-
#define COLLATION 331
|
|
606
|
-
#define COLUMN 332
|
|
607
|
-
#define COLUMNS 333
|
|
608
|
-
#define COMMENT 334
|
|
609
|
-
#define COMMENTS 335
|
|
610
|
-
#define COMMIT 336
|
|
611
|
-
#define COMMITTED 337
|
|
612
|
-
#define COMPRESSION 338
|
|
613
|
-
#define CONCURRENTLY 339
|
|
614
|
-
#define CONFIGURATION 340
|
|
615
|
-
#define CONFLICT 341
|
|
616
|
-
#define CONNECTION 342
|
|
617
|
-
#define CONSTRAINT 343
|
|
618
|
-
#define CONSTRAINTS 344
|
|
619
|
-
#define CONTENT_P 345
|
|
620
|
-
#define CONTINUE_P 346
|
|
621
|
-
#define CONVERSION_P 347
|
|
622
|
-
#define COPY 348
|
|
623
|
-
#define COST 349
|
|
624
|
-
#define CREATE_P 350
|
|
625
|
-
#define CROSS 351
|
|
626
|
-
#define CSV 352
|
|
627
|
-
#define CUBE 353
|
|
628
|
-
#define CURRENT_P 354
|
|
629
|
-
#define CURRENT_CATALOG 355
|
|
630
|
-
#define CURRENT_DATE 356
|
|
631
|
-
#define CURRENT_ROLE 357
|
|
632
|
-
#define CURRENT_SCHEMA 358
|
|
633
|
-
#define CURRENT_TIME 359
|
|
634
|
-
#define CURRENT_TIMESTAMP 360
|
|
635
|
-
#define CURRENT_USER 361
|
|
636
|
-
#define CURSOR 362
|
|
637
|
-
#define CYCLE 363
|
|
638
|
-
#define DATA_P 364
|
|
639
|
-
#define DATABASE 365
|
|
640
|
-
#define DAY_P 366
|
|
641
|
-
#define DAYS_P 367
|
|
642
|
-
#define DEALLOCATE 368
|
|
643
|
-
#define DEC 369
|
|
644
|
-
#define DECIMAL_P 370
|
|
645
|
-
#define DECLARE 371
|
|
646
|
-
#define DEFAULT 372
|
|
647
|
-
#define DEFAULTS 373
|
|
648
|
-
#define DEFERRABLE 374
|
|
649
|
-
#define DEFERRED 375
|
|
650
|
-
#define DEFINER 376
|
|
651
|
-
#define DELETE_P 377
|
|
652
|
-
#define DELIMITER 378
|
|
653
|
-
#define DELIMITERS 379
|
|
654
|
-
#define DEPENDS 380
|
|
655
|
-
#define DESC_P 381
|
|
656
|
-
#define DESCRIBE 382
|
|
657
|
-
#define DETACH 383
|
|
658
|
-
#define DICTIONARY 384
|
|
659
|
-
#define DISABLE_P 385
|
|
660
|
-
#define DISCARD 386
|
|
661
|
-
#define DISTINCT 387
|
|
662
|
-
#define DO 388
|
|
663
|
-
#define DOCUMENT_P 389
|
|
664
|
-
#define DOMAIN_P 390
|
|
665
|
-
#define DOUBLE_P 391
|
|
666
|
-
#define DROP 392
|
|
667
|
-
#define EACH 393
|
|
668
|
-
#define ELSE 394
|
|
669
|
-
#define ENABLE_P 395
|
|
670
|
-
#define ENCODING 396
|
|
671
|
-
#define ENCRYPTED 397
|
|
672
|
-
#define END_P 398
|
|
673
|
-
#define ENUM_P 399
|
|
674
|
-
#define ESCAPE 400
|
|
675
|
-
#define EVENT 401
|
|
676
|
-
#define EXCEPT 402
|
|
677
|
-
#define EXCLUDE 403
|
|
678
|
-
#define EXCLUDING 404
|
|
679
|
-
#define EXCLUSIVE 405
|
|
680
|
-
#define EXECUTE 406
|
|
681
|
-
#define EXISTS 407
|
|
682
|
-
#define EXPLAIN 408
|
|
683
|
-
#define EXPORT_P 409
|
|
684
|
-
#define EXPORT_STATE 410
|
|
685
|
-
#define EXTENSION 411
|
|
686
|
-
#define EXTERNAL 412
|
|
687
|
-
#define EXTRACT 413
|
|
688
|
-
#define FALSE_P 414
|
|
689
|
-
#define FAMILY 415
|
|
690
|
-
#define FETCH 416
|
|
691
|
-
#define FILTER 417
|
|
692
|
-
#define FIRST_P 418
|
|
693
|
-
#define FLOAT_P 419
|
|
694
|
-
#define FOLLOWING 420
|
|
695
|
-
#define FOR 421
|
|
696
|
-
#define FORCE 422
|
|
697
|
-
#define FOREIGN 423
|
|
698
|
-
#define FORWARD 424
|
|
699
|
-
#define FREEZE 425
|
|
700
|
-
#define FROM 426
|
|
701
|
-
#define FULL 427
|
|
702
|
-
#define FUNCTION 428
|
|
703
|
-
#define FUNCTIONS 429
|
|
704
|
-
#define GENERATED 430
|
|
705
|
-
#define GLOB 431
|
|
706
|
-
#define GLOBAL 432
|
|
707
|
-
#define GRANT 433
|
|
708
|
-
#define GRANTED 434
|
|
709
|
-
#define GROUP_P 435
|
|
710
|
-
#define GROUPING 436
|
|
711
|
-
#define GROUPING_ID 437
|
|
712
|
-
#define HANDLER 438
|
|
713
|
-
#define HAVING 439
|
|
714
|
-
#define HEADER_P 440
|
|
715
|
-
#define HOLD 441
|
|
716
|
-
#define HOUR_P 442
|
|
717
|
-
#define HOURS_P 443
|
|
718
|
-
#define IDENTITY_P 444
|
|
719
|
-
#define IF_P 445
|
|
720
|
-
#define IGNORE_P 446
|
|
721
|
-
#define ILIKE 447
|
|
722
|
-
#define IMMEDIATE 448
|
|
723
|
-
#define IMMUTABLE 449
|
|
724
|
-
#define IMPLICIT_P 450
|
|
725
|
-
#define IMPORT_P 451
|
|
726
|
-
#define IN_P 452
|
|
727
|
-
#define INCLUDING 453
|
|
728
|
-
#define INCREMENT 454
|
|
729
|
-
#define INDEX 455
|
|
730
|
-
#define INDEXES 456
|
|
731
|
-
#define INHERIT 457
|
|
732
|
-
#define INHERITS 458
|
|
733
|
-
#define INITIALLY 459
|
|
734
|
-
#define INLINE_P 460
|
|
735
|
-
#define INNER_P 461
|
|
736
|
-
#define INOUT 462
|
|
737
|
-
#define INPUT_P 463
|
|
738
|
-
#define INSENSITIVE 464
|
|
739
|
-
#define INSERT 465
|
|
740
|
-
#define INSTALL 466
|
|
741
|
-
#define INSTEAD 467
|
|
742
|
-
#define INT_P 468
|
|
743
|
-
#define INTEGER 469
|
|
744
|
-
#define INTERSECT 470
|
|
745
|
-
#define INTERVAL 471
|
|
746
|
-
#define INTO 472
|
|
747
|
-
#define INVOKER 473
|
|
748
|
-
#define IS 474
|
|
749
|
-
#define ISNULL 475
|
|
750
|
-
#define ISOLATION 476
|
|
751
|
-
#define JOIN 477
|
|
752
|
-
#define JSON 478
|
|
753
|
-
#define KEY 479
|
|
754
|
-
#define LABEL 480
|
|
755
|
-
#define LANGUAGE 481
|
|
756
|
-
#define LARGE_P 482
|
|
757
|
-
#define LAST_P 483
|
|
758
|
-
#define LATERAL_P 484
|
|
759
|
-
#define LEADING 485
|
|
760
|
-
#define LEAKPROOF 486
|
|
761
|
-
#define LEFT 487
|
|
762
|
-
#define LEVEL 488
|
|
763
|
-
#define LIKE 489
|
|
764
|
-
#define LIMIT 490
|
|
765
|
-
#define LISTEN 491
|
|
766
|
-
#define LOAD 492
|
|
767
|
-
#define LOCAL 493
|
|
768
|
-
#define LOCALTIME 494
|
|
769
|
-
#define LOCALTIMESTAMP 495
|
|
770
|
-
#define LOCATION 496
|
|
771
|
-
#define LOCK_P 497
|
|
772
|
-
#define LOCKED 498
|
|
773
|
-
#define LOGGED 499
|
|
774
|
-
#define MACRO 500
|
|
775
|
-
#define MAP 501
|
|
776
|
-
#define MAPPING 502
|
|
777
|
-
#define MATCH 503
|
|
778
|
-
#define MATERIALIZED 504
|
|
779
|
-
#define MAXVALUE 505
|
|
780
|
-
#define METHOD 506
|
|
781
|
-
#define MICROSECOND_P 507
|
|
782
|
-
#define MICROSECONDS_P 508
|
|
783
|
-
#define MILLISECOND_P 509
|
|
784
|
-
#define MILLISECONDS_P 510
|
|
785
|
-
#define MINUTE_P 511
|
|
786
|
-
#define MINUTES_P 512
|
|
787
|
-
#define MINVALUE 513
|
|
788
|
-
#define MODE 514
|
|
789
|
-
#define MONTH_P 515
|
|
790
|
-
#define MONTHS_P 516
|
|
791
|
-
#define MOVE 517
|
|
792
|
-
#define NAME_P 518
|
|
793
|
-
#define NAMES 519
|
|
794
|
-
#define NATIONAL 520
|
|
795
|
-
#define NATURAL 521
|
|
796
|
-
#define NCHAR 522
|
|
797
|
-
#define NEW 523
|
|
798
|
-
#define NEXT 524
|
|
799
|
-
#define NO 525
|
|
800
|
-
#define NONE 526
|
|
801
|
-
#define NOT 527
|
|
802
|
-
#define NOTHING 528
|
|
803
|
-
#define NOTIFY 529
|
|
804
|
-
#define NOTNULL 530
|
|
805
|
-
#define NOWAIT 531
|
|
806
|
-
#define NULL_P 532
|
|
807
|
-
#define NULLIF 533
|
|
808
|
-
#define NULLS_P 534
|
|
809
|
-
#define NUMERIC 535
|
|
810
|
-
#define OBJECT_P 536
|
|
811
|
-
#define OF 537
|
|
812
|
-
#define OFF 538
|
|
813
|
-
#define OFFSET 539
|
|
814
|
-
#define OIDS 540
|
|
815
|
-
#define OLD 541
|
|
816
|
-
#define ON 542
|
|
817
|
-
#define ONLY 543
|
|
818
|
-
#define OPERATOR 544
|
|
819
|
-
#define OPTION 545
|
|
820
|
-
#define OPTIONS 546
|
|
821
|
-
#define OR 547
|
|
822
|
-
#define ORDER 548
|
|
823
|
-
#define ORDINALITY 549
|
|
824
|
-
#define OUT_P 550
|
|
825
|
-
#define OUTER_P 551
|
|
826
|
-
#define OVER 552
|
|
827
|
-
#define OVERLAPS 553
|
|
828
|
-
#define OVERLAY 554
|
|
829
|
-
#define OVERRIDING 555
|
|
830
|
-
#define OWNED 556
|
|
831
|
-
#define OWNER 557
|
|
832
|
-
#define PARALLEL 558
|
|
833
|
-
#define PARSER 559
|
|
834
|
-
#define PARTIAL 560
|
|
835
|
-
#define PARTITION 561
|
|
836
|
-
#define PASSING 562
|
|
837
|
-
#define PASSWORD 563
|
|
838
|
-
#define PERCENT 564
|
|
839
|
-
#define PLACING 565
|
|
840
|
-
#define PLANS 566
|
|
841
|
-
#define POLICY 567
|
|
842
|
-
#define POSITION 568
|
|
843
|
-
#define POSITIONAL 569
|
|
844
|
-
#define PRAGMA_P 570
|
|
845
|
-
#define PRECEDING 571
|
|
846
|
-
#define PRECISION 572
|
|
847
|
-
#define PREPARE 573
|
|
848
|
-
#define PREPARED 574
|
|
849
|
-
#define PRESERVE 575
|
|
850
|
-
#define PRIMARY 576
|
|
851
|
-
#define PRIOR 577
|
|
852
|
-
#define PRIVILEGES 578
|
|
853
|
-
#define PROCEDURAL 579
|
|
854
|
-
#define PROCEDURE 580
|
|
855
|
-
#define PROGRAM 581
|
|
856
|
-
#define PUBLICATION 582
|
|
857
|
-
#define QUALIFY 583
|
|
858
|
-
#define QUOTE 584
|
|
859
|
-
#define RANGE 585
|
|
860
|
-
#define READ_P 586
|
|
861
|
-
#define REAL 587
|
|
862
|
-
#define REASSIGN 588
|
|
863
|
-
#define RECHECK 589
|
|
864
|
-
#define RECURSIVE 590
|
|
865
|
-
#define REF 591
|
|
866
|
-
#define REFERENCES 592
|
|
867
|
-
#define REFERENCING 593
|
|
868
|
-
#define REFRESH 594
|
|
869
|
-
#define REINDEX 595
|
|
870
|
-
#define RELATIVE_P 596
|
|
871
|
-
#define RELEASE 597
|
|
872
|
-
#define RENAME 598
|
|
873
|
-
#define REPEATABLE 599
|
|
874
|
-
#define REPLACE 600
|
|
875
|
-
#define REPLICA 601
|
|
876
|
-
#define RESET 602
|
|
877
|
-
#define RESPECT_P 603
|
|
878
|
-
#define RESTART 604
|
|
879
|
-
#define RESTRICT 605
|
|
880
|
-
#define RETURNING 606
|
|
881
|
-
#define RETURNS 607
|
|
882
|
-
#define REVOKE 608
|
|
883
|
-
#define RIGHT 609
|
|
884
|
-
#define ROLE 610
|
|
885
|
-
#define ROLLBACK 611
|
|
886
|
-
#define ROLLUP 612
|
|
887
|
-
#define ROW 613
|
|
888
|
-
#define ROWS 614
|
|
889
|
-
#define RULE 615
|
|
890
|
-
#define SAMPLE 616
|
|
891
|
-
#define SAVEPOINT 617
|
|
892
|
-
#define SCHEMA 618
|
|
893
|
-
#define SCHEMAS 619
|
|
894
|
-
#define SCROLL 620
|
|
895
|
-
#define SEARCH 621
|
|
896
|
-
#define SECOND_P 622
|
|
897
|
-
#define SECONDS_P 623
|
|
898
|
-
#define SECURITY 624
|
|
899
|
-
#define SELECT 625
|
|
900
|
-
#define SEQUENCE 626
|
|
901
|
-
#define SEQUENCES 627
|
|
902
|
-
#define SERIALIZABLE 628
|
|
903
|
-
#define SERVER 629
|
|
904
|
-
#define SESSION 630
|
|
905
|
-
#define SESSION_USER 631
|
|
906
|
-
#define SET 632
|
|
907
|
-
#define SETOF 633
|
|
908
|
-
#define SETS 634
|
|
909
|
-
#define SHARE 635
|
|
910
|
-
#define SHOW 636
|
|
911
|
-
#define SIMILAR 637
|
|
912
|
-
#define SIMPLE 638
|
|
913
|
-
#define SKIP 639
|
|
914
|
-
#define SMALLINT 640
|
|
915
|
-
#define SNAPSHOT 641
|
|
916
|
-
#define SOME 642
|
|
917
|
-
#define SQL_P 643
|
|
918
|
-
#define STABLE 644
|
|
919
|
-
#define STANDALONE_P 645
|
|
920
|
-
#define START 646
|
|
921
|
-
#define STATEMENT 647
|
|
922
|
-
#define STATISTICS 648
|
|
923
|
-
#define STDIN 649
|
|
924
|
-
#define STDOUT 650
|
|
925
|
-
#define STORAGE 651
|
|
926
|
-
#define STORED 652
|
|
927
|
-
#define STRICT_P 653
|
|
928
|
-
#define STRIP_P 654
|
|
929
|
-
#define STRUCT 655
|
|
930
|
-
#define SUBSCRIPTION 656
|
|
931
|
-
#define SUBSTRING 657
|
|
932
|
-
#define SUMMARIZE 658
|
|
933
|
-
#define SYMMETRIC 659
|
|
934
|
-
#define SYSID 660
|
|
935
|
-
#define SYSTEM_P 661
|
|
936
|
-
#define TABLE 662
|
|
937
|
-
#define TABLES 663
|
|
938
|
-
#define TABLESAMPLE 664
|
|
939
|
-
#define TABLESPACE 665
|
|
940
|
-
#define TEMP 666
|
|
941
|
-
#define TEMPLATE 667
|
|
942
|
-
#define TEMPORARY 668
|
|
943
|
-
#define TEXT_P 669
|
|
944
|
-
#define THEN 670
|
|
945
|
-
#define TIME 671
|
|
946
|
-
#define TIMESTAMP 672
|
|
947
|
-
#define TO 673
|
|
948
|
-
#define TRAILING 674
|
|
949
|
-
#define TRANSACTION 675
|
|
950
|
-
#define TRANSFORM 676
|
|
951
|
-
#define TREAT 677
|
|
952
|
-
#define TRIGGER 678
|
|
953
|
-
#define TRIM 679
|
|
954
|
-
#define TRUE_P 680
|
|
955
|
-
#define TRUNCATE 681
|
|
956
|
-
#define TRUSTED 682
|
|
957
|
-
#define TRY_CAST 683
|
|
958
|
-
#define TYPE_P 684
|
|
959
|
-
#define TYPES_P 685
|
|
960
|
-
#define UNBOUNDED 686
|
|
961
|
-
#define UNCOMMITTED 687
|
|
962
|
-
#define UNENCRYPTED 688
|
|
963
|
-
#define UNION 689
|
|
964
|
-
#define UNIQUE 690
|
|
965
|
-
#define UNKNOWN 691
|
|
966
|
-
#define UNLISTEN 692
|
|
967
|
-
#define UNLOGGED 693
|
|
968
|
-
#define UNTIL 694
|
|
969
|
-
#define UPDATE 695
|
|
970
|
-
#define USE_P 696
|
|
971
|
-
#define USER 697
|
|
972
|
-
#define USING 698
|
|
973
|
-
#define VACUUM 699
|
|
974
|
-
#define VALID 700
|
|
975
|
-
#define VALIDATE 701
|
|
976
|
-
#define VALIDATOR 702
|
|
977
|
-
#define VALUE_P 703
|
|
978
|
-
#define VALUES 704
|
|
979
|
-
#define VARCHAR 705
|
|
980
|
-
#define VARIADIC 706
|
|
981
|
-
#define VARYING 707
|
|
982
|
-
#define VERBOSE 708
|
|
983
|
-
#define VERSION_P 709
|
|
984
|
-
#define VIEW 710
|
|
985
|
-
#define VIEWS 711
|
|
986
|
-
#define VIRTUAL 712
|
|
987
|
-
#define VOLATILE 713
|
|
988
|
-
#define WHEN 714
|
|
989
|
-
#define WHERE 715
|
|
990
|
-
#define WHITESPACE_P 716
|
|
991
|
-
#define WINDOW 717
|
|
992
|
-
#define WITH 718
|
|
993
|
-
#define WITHIN 719
|
|
994
|
-
#define WITHOUT 720
|
|
995
|
-
#define WORK 721
|
|
996
|
-
#define WRAPPER 722
|
|
997
|
-
#define WRITE_P 723
|
|
998
|
-
#define XML_P 724
|
|
999
|
-
#define XMLATTRIBUTES 725
|
|
1000
|
-
#define XMLCONCAT 726
|
|
1001
|
-
#define XMLELEMENT 727
|
|
1002
|
-
#define XMLEXISTS 728
|
|
1003
|
-
#define XMLFOREST 729
|
|
1004
|
-
#define XMLNAMESPACES 730
|
|
1005
|
-
#define XMLPARSE 731
|
|
1006
|
-
#define XMLPI 732
|
|
1007
|
-
#define XMLROOT 733
|
|
1008
|
-
#define XMLSERIALIZE 734
|
|
1009
|
-
#define XMLTABLE 735
|
|
1010
|
-
#define YEAR_P 736
|
|
1011
|
-
#define YEARS_P 737
|
|
1012
|
-
#define YES_P 738
|
|
1013
|
-
#define ZONE 739
|
|
1014
|
-
#define NOT_LA 740
|
|
1015
|
-
#define NULLS_LA 741
|
|
1016
|
-
#define WITH_LA 742
|
|
1017
|
-
#define POSTFIXOP 743
|
|
1018
|
-
#define UMINUS 744
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
541
|
|
|
542
|
+
/* Value type. */
|
|
1023
543
|
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
|
1024
|
-
|
|
1025
|
-
#line 14 "third_party/libpg_query/grammar/grammar.y"
|
|
544
|
+
union YYSTYPE
|
|
1026
545
|
{
|
|
546
|
+
#line 14 "third_party/libpg_query/grammar/grammar.y"
|
|
547
|
+
|
|
1027
548
|
core_YYSTYPE core_yystype;
|
|
1028
549
|
/* these fields must match core_YYSTYPE: */
|
|
1029
550
|
int ival;
|
|
@@ -1067,28 +588,31 @@ typedef union YYSTYPE
|
|
|
1067
588
|
PGLockWaitPolicy lockwaitpolicy;
|
|
1068
589
|
PGSubLinkType subquerytype;
|
|
1069
590
|
PGViewCheckOption viewcheckoption;
|
|
1070
|
-
}
|
|
1071
|
-
/* Line 1529 of yacc.c. */
|
|
1072
|
-
#line 1073 "third_party/libpg_query/grammar/grammar_out.hpp"
|
|
1073
|
-
YYSTYPE;
|
|
1074
|
-
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
|
1075
|
-
# define YYSTYPE_IS_DECLARED 1
|
|
1076
|
-
# define YYSTYPE_IS_TRIVIAL 1
|
|
1077
|
-
#endif
|
|
1078
591
|
|
|
592
|
+
#line 593 "third_party/libpg_query/grammar/grammar_out.hpp"
|
|
1079
593
|
|
|
594
|
+
};
|
|
595
|
+
typedef union YYSTYPE YYSTYPE;
|
|
596
|
+
# define YYSTYPE_IS_TRIVIAL 1
|
|
597
|
+
# define YYSTYPE_IS_DECLARED 1
|
|
598
|
+
#endif
|
|
1080
599
|
|
|
600
|
+
/* Location type. */
|
|
1081
601
|
#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
|
|
1082
|
-
typedef struct YYLTYPE
|
|
602
|
+
typedef struct YYLTYPE YYLTYPE;
|
|
603
|
+
struct YYLTYPE
|
|
1083
604
|
{
|
|
1084
605
|
int first_line;
|
|
1085
606
|
int first_column;
|
|
1086
607
|
int last_line;
|
|
1087
608
|
int last_column;
|
|
1088
|
-
}
|
|
1089
|
-
# define yyltype YYLTYPE /* obsolescent; will be withdrawn */
|
|
609
|
+
};
|
|
1090
610
|
# define YYLTYPE_IS_DECLARED 1
|
|
1091
611
|
# define YYLTYPE_IS_TRIVIAL 1
|
|
1092
612
|
#endif
|
|
1093
613
|
|
|
1094
614
|
|
|
615
|
+
|
|
616
|
+
int base_yyparse (core_yyscan_t yyscanner);
|
|
617
|
+
|
|
618
|
+
#endif /* !YY_BASE_YY_THIRD_PARTY_LIBPG_QUERY_GRAMMAR_GRAMMAR_OUT_HPP_INCLUDED */
|