duckdb 0.7.2-dev16.0 → 0.7.2-dev314.0

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