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.
- package/binding.gyp +2 -0
- package/package.json +1 -1
- package/src/duckdb/extension/icu/icu-extension.cpp +2 -0
- package/src/duckdb/extension/icu/icu-table-range.cpp +194 -0
- package/src/duckdb/extension/icu/include/icu-table-range.hpp +17 -0
- package/src/duckdb/extension/parquet/column_reader.cpp +5 -6
- package/src/duckdb/extension/parquet/column_writer.cpp +0 -1
- package/src/duckdb/extension/parquet/include/column_reader.hpp +1 -2
- package/src/duckdb/extension/parquet/include/generated_column_reader.hpp +1 -11
- package/src/duckdb/extension/parquet/parquet-extension.cpp +11 -2
- package/src/duckdb/extension/parquet/parquet_statistics.cpp +26 -32
- package/src/duckdb/src/catalog/catalog_entry/duck_schema_entry.cpp +4 -0
- package/src/duckdb/src/catalog/catalog_entry/scalar_function_catalog_entry.cpp +7 -6
- package/src/duckdb/src/catalog/catalog_entry/table_function_catalog_entry.cpp +20 -1
- package/src/duckdb/src/common/enums/statement_type.cpp +2 -0
- package/src/duckdb/src/common/sort/sort_state.cpp +5 -7
- package/src/duckdb/src/common/types/bit.cpp +95 -58
- package/src/duckdb/src/common/types/value.cpp +149 -53
- package/src/duckdb/src/common/types/vector.cpp +13 -10
- package/src/duckdb/src/execution/column_binding_resolver.cpp +6 -0
- package/src/duckdb/src/execution/operator/aggregate/physical_perfecthash_aggregate.cpp +4 -5
- package/src/duckdb/src/execution/operator/aggregate/physical_window.cpp +1 -1
- package/src/duckdb/src/execution/operator/helper/physical_vacuum.cpp +2 -3
- package/src/duckdb/src/execution/operator/join/physical_blockwise_nl_join.cpp +32 -6
- package/src/duckdb/src/execution/operator/persistent/buffered_csv_reader.cpp +1 -1
- package/src/duckdb/src/execution/physical_plan/plan_aggregate.cpp +15 -15
- package/src/duckdb/src/execution/physical_plan/plan_comparison_join.cpp +18 -12
- package/src/duckdb/src/function/aggregate/algebraic/avg.cpp +0 -6
- package/src/duckdb/src/function/aggregate/distributive/bitagg.cpp +99 -95
- package/src/duckdb/src/function/aggregate/distributive/bitstring_agg.cpp +254 -0
- package/src/duckdb/src/function/aggregate/distributive/count.cpp +2 -4
- package/src/duckdb/src/function/aggregate/distributive/sum.cpp +11 -16
- package/src/duckdb/src/function/aggregate/distributive_functions.cpp +1 -0
- package/src/duckdb/src/function/aggregate/sorted_aggregate_function.cpp +16 -5
- package/src/duckdb/src/function/cast/bit_cast.cpp +0 -2
- package/src/duckdb/src/function/cast/blob_cast.cpp +0 -1
- package/src/duckdb/src/function/scalar/bit/bitstring.cpp +99 -0
- package/src/duckdb/src/function/scalar/date/date_diff.cpp +0 -1
- package/src/duckdb/src/function/scalar/date/date_part.cpp +17 -25
- package/src/duckdb/src/function/scalar/date/date_sub.cpp +0 -1
- package/src/duckdb/src/function/scalar/date/date_trunc.cpp +10 -14
- package/src/duckdb/src/function/scalar/generic/stats.cpp +2 -4
- package/src/duckdb/src/function/scalar/list/flatten.cpp +5 -12
- package/src/duckdb/src/function/scalar/list/list_concat.cpp +3 -8
- package/src/duckdb/src/function/scalar/list/list_extract.cpp +5 -12
- package/src/duckdb/src/function/scalar/list/list_value.cpp +5 -9
- package/src/duckdb/src/function/scalar/map/map_entries.cpp +61 -0
- package/src/duckdb/src/function/scalar/map/map_keys_values.cpp +97 -0
- package/src/duckdb/src/function/scalar/math/numeric.cpp +14 -17
- package/src/duckdb/src/function/scalar/nested_functions.cpp +3 -0
- package/src/duckdb/src/function/scalar/operators/add.cpp +0 -9
- package/src/duckdb/src/function/scalar/operators/arithmetic.cpp +29 -48
- package/src/duckdb/src/function/scalar/operators/bitwise.cpp +0 -63
- package/src/duckdb/src/function/scalar/operators/multiply.cpp +0 -6
- package/src/duckdb/src/function/scalar/operators/subtract.cpp +0 -6
- package/src/duckdb/src/function/scalar/string/caseconvert.cpp +2 -6
- package/src/duckdb/src/function/scalar/string/instr.cpp +2 -6
- package/src/duckdb/src/function/scalar/string/length.cpp +2 -6
- package/src/duckdb/src/function/scalar/string/like.cpp +2 -6
- package/src/duckdb/src/function/scalar/string/substring.cpp +2 -6
- package/src/duckdb/src/function/scalar/string_functions.cpp +1 -0
- package/src/duckdb/src/function/scalar/struct/struct_extract.cpp +4 -9
- package/src/duckdb/src/function/scalar/struct/struct_insert.cpp +10 -13
- package/src/duckdb/src/function/scalar/struct/struct_pack.cpp +5 -6
- package/src/duckdb/src/function/table/read_csv.cpp +9 -0
- package/src/duckdb/src/function/table/version/pragma_version.cpp +2 -2
- package/src/duckdb/src/function/table_function.cpp +19 -0
- package/src/duckdb/src/include/duckdb/catalog/catalog_entry/table_function_catalog_entry.hpp +6 -8
- package/src/duckdb/src/include/duckdb/common/constants.hpp +0 -19
- package/src/duckdb/src/include/duckdb/common/enums/statement_type.hpp +2 -1
- package/src/duckdb/src/include/duckdb/common/enums/tableref_type.hpp +2 -1
- package/src/duckdb/src/include/duckdb/common/types/bit.hpp +5 -1
- package/src/duckdb/src/include/duckdb/common/types/value.hpp +2 -8
- package/src/duckdb/src/include/duckdb/common/types.hpp +1 -2
- package/src/duckdb/src/include/duckdb/execution/operator/aggregate/physical_perfecthash_aggregate.hpp +1 -1
- package/src/duckdb/src/include/duckdb/function/aggregate/distributive_functions.hpp +5 -0
- package/src/duckdb/src/include/duckdb/function/aggregate_function.hpp +12 -3
- package/src/duckdb/src/include/duckdb/function/scalar/bit_functions.hpp +4 -0
- package/src/duckdb/src/include/duckdb/function/scalar/nested_functions.hpp +12 -0
- package/src/duckdb/src/include/duckdb/function/scalar_function.hpp +2 -2
- package/src/duckdb/src/include/duckdb/function/table_function.hpp +2 -0
- package/src/duckdb/src/include/duckdb/main/capi/capi_internal.hpp +2 -0
- package/src/duckdb/src/include/duckdb/main/config.hpp +3 -0
- package/src/duckdb/src/include/duckdb/main/database.hpp +1 -0
- package/src/duckdb/src/include/duckdb/optimizer/join_order/cardinality_estimator.hpp +2 -2
- package/src/duckdb/src/include/duckdb/parser/common_table_expression_info.hpp +2 -0
- package/src/duckdb/src/include/duckdb/parser/parsed_data/alter_info.hpp +2 -1
- package/src/duckdb/src/include/duckdb/parser/parsed_data/{alter_function_info.hpp → alter_scalar_function_info.hpp} +13 -13
- package/src/duckdb/src/include/duckdb/parser/parsed_data/alter_table_function_info.hpp +47 -0
- package/src/duckdb/src/include/duckdb/parser/parsed_data/create_table_function_info.hpp +2 -1
- package/src/duckdb/src/include/duckdb/parser/query_node.hpp +2 -1
- package/src/duckdb/src/include/duckdb/parser/statement/multi_statement.hpp +28 -0
- package/src/duckdb/src/include/duckdb/parser/tableref/list.hpp +1 -0
- package/src/duckdb/src/include/duckdb/parser/tableref/pivotref.hpp +76 -0
- package/src/duckdb/src/include/duckdb/parser/tokens.hpp +2 -0
- package/src/duckdb/src/include/duckdb/parser/transformer.hpp +28 -0
- package/src/duckdb/src/include/duckdb/planner/bind_context.hpp +2 -0
- package/src/duckdb/src/include/duckdb/planner/binder.hpp +8 -0
- package/src/duckdb/src/include/duckdb/storage/buffer/block_handle.hpp +2 -0
- package/src/duckdb/src/include/duckdb/storage/buffer_manager.hpp +76 -44
- package/src/duckdb/src/include/duckdb/storage/checkpoint/table_data_writer.hpp +3 -2
- package/src/duckdb/src/include/duckdb/storage/compression/chimp/chimp_compress.hpp +2 -2
- package/src/duckdb/src/include/duckdb/storage/compression/chimp/chimp_fetch.hpp +1 -1
- package/src/duckdb/src/include/duckdb/storage/compression/chimp/chimp_scan.hpp +1 -1
- package/src/duckdb/src/include/duckdb/storage/compression/patas/patas_compress.hpp +2 -2
- package/src/duckdb/src/include/duckdb/storage/compression/patas/patas_fetch.hpp +1 -1
- package/src/duckdb/src/include/duckdb/storage/compression/patas/patas_scan.hpp +1 -1
- package/src/duckdb/src/include/duckdb/storage/data_pointer.hpp +5 -2
- package/src/duckdb/src/include/duckdb/storage/data_table.hpp +1 -1
- package/src/duckdb/src/include/duckdb/storage/statistics/base_statistics.hpp +93 -29
- package/src/duckdb/src/include/duckdb/storage/statistics/column_statistics.hpp +22 -3
- package/src/duckdb/src/include/duckdb/storage/statistics/distinct_statistics.hpp +6 -6
- package/src/duckdb/src/include/duckdb/storage/statistics/list_stats.hpp +41 -0
- package/src/duckdb/src/include/duckdb/storage/statistics/node_statistics.hpp +26 -0
- package/src/duckdb/src/include/duckdb/storage/statistics/numeric_stats.hpp +157 -0
- package/src/duckdb/src/include/duckdb/storage/statistics/segment_statistics.hpp +2 -7
- package/src/duckdb/src/include/duckdb/storage/statistics/string_stats.hpp +74 -0
- package/src/duckdb/src/include/duckdb/storage/statistics/struct_stats.hpp +42 -0
- package/src/duckdb/src/include/duckdb/storage/string_uncompressed.hpp +2 -3
- package/src/duckdb/src/include/duckdb/storage/table/column_segment.hpp +2 -2
- package/src/duckdb/src/include/duckdb/storage/table/list_column_data.hpp +1 -1
- package/src/duckdb/src/include/duckdb/storage/table/persistent_table_data.hpp +2 -1
- package/src/duckdb/src/include/duckdb/storage/table/row_group.hpp +4 -3
- package/src/duckdb/src/include/duckdb/storage/table/row_group_collection.hpp +3 -2
- package/src/duckdb/src/include/duckdb/storage/table/scan_state.hpp +2 -0
- package/src/duckdb/src/include/duckdb/storage/table/table_statistics.hpp +5 -0
- package/src/duckdb/src/include/duckdb.h +49 -1
- package/src/duckdb/src/include/duckdb.hpp +0 -1
- package/src/duckdb/src/main/capi/pending-c.cpp +16 -3
- package/src/duckdb/src/main/capi/result-c.cpp +27 -1
- package/src/duckdb/src/main/capi/stream-c.cpp +25 -0
- package/src/duckdb/src/main/client_context.cpp +8 -1
- package/src/duckdb/src/main/config.cpp +66 -1
- package/src/duckdb/src/main/database.cpp +10 -2
- package/src/duckdb/src/optimizer/join_order/cardinality_estimator.cpp +98 -67
- package/src/duckdb/src/optimizer/join_order/join_order_optimizer.cpp +16 -3
- package/src/duckdb/src/optimizer/statistics/expression/propagate_aggregate.cpp +9 -3
- package/src/duckdb/src/optimizer/statistics/expression/propagate_and_compress.cpp +6 -7
- package/src/duckdb/src/optimizer/statistics/expression/propagate_cast.cpp +14 -11
- package/src/duckdb/src/optimizer/statistics/expression/propagate_columnref.cpp +1 -1
- package/src/duckdb/src/optimizer/statistics/expression/propagate_comparison.cpp +13 -15
- package/src/duckdb/src/optimizer/statistics/expression/propagate_conjunction.cpp +0 -1
- package/src/duckdb/src/optimizer/statistics/expression/propagate_constant.cpp +3 -75
- package/src/duckdb/src/optimizer/statistics/expression/propagate_function.cpp +7 -2
- package/src/duckdb/src/optimizer/statistics/expression/propagate_operator.cpp +10 -0
- package/src/duckdb/src/optimizer/statistics/operator/propagate_aggregate.cpp +2 -3
- package/src/duckdb/src/optimizer/statistics/operator/propagate_filter.cpp +28 -31
- package/src/duckdb/src/optimizer/statistics/operator/propagate_join.cpp +4 -5
- package/src/duckdb/src/optimizer/statistics/operator/propagate_set_operation.cpp +3 -3
- package/src/duckdb/src/optimizer/statistics_propagator.cpp +1 -1
- package/src/duckdb/src/parser/parsed_data/alter_info.cpp +7 -3
- package/src/duckdb/src/parser/parsed_data/alter_scalar_function_info.cpp +56 -0
- package/src/duckdb/src/parser/parsed_data/alter_table_function_info.cpp +51 -0
- package/src/duckdb/src/parser/parsed_data/create_scalar_function_info.cpp +3 -2
- package/src/duckdb/src/parser/parsed_data/create_table_function_info.cpp +6 -0
- package/src/duckdb/src/parser/parsed_expression_iterator.cpp +8 -0
- package/src/duckdb/src/parser/query_node.cpp +1 -1
- package/src/duckdb/src/parser/statement/multi_statement.cpp +18 -0
- package/src/duckdb/src/parser/tableref/pivotref.cpp +296 -0
- package/src/duckdb/src/parser/tableref.cpp +3 -0
- package/src/duckdb/src/parser/transform/helpers/transform_alias.cpp +12 -6
- package/src/duckdb/src/parser/transform/helpers/transform_cte.cpp +24 -0
- package/src/duckdb/src/parser/transform/statement/transform_create_function.cpp +4 -0
- package/src/duckdb/src/parser/transform/statement/transform_create_view.cpp +4 -0
- package/src/duckdb/src/parser/transform/statement/transform_pivot_stmt.cpp +150 -0
- package/src/duckdb/src/parser/transform/statement/transform_select.cpp +8 -0
- package/src/duckdb/src/parser/transform/statement/transform_select_node.cpp +1 -1
- package/src/duckdb/src/parser/transform/tableref/transform_join.cpp +4 -0
- package/src/duckdb/src/parser/transform/tableref/transform_pivot.cpp +105 -0
- package/src/duckdb/src/parser/transform/tableref/transform_tableref.cpp +2 -0
- package/src/duckdb/src/parser/transformer.cpp +15 -3
- package/src/duckdb/src/planner/bind_context.cpp +16 -0
- package/src/duckdb/src/planner/binder/query_node/bind_select_node.cpp +11 -3
- package/src/duckdb/src/planner/binder/query_node/plan_select_node.cpp +0 -1
- package/src/duckdb/src/planner/binder/statement/bind_create.cpp +1 -1
- package/src/duckdb/src/planner/binder/statement/bind_logical_plan.cpp +17 -0
- package/src/duckdb/src/planner/binder/tableref/bind_joinref.cpp +9 -0
- package/src/duckdb/src/planner/binder/tableref/bind_pivot.cpp +365 -0
- package/src/duckdb/src/planner/binder.cpp +7 -1
- package/src/duckdb/src/planner/bound_result_modifier.cpp +1 -1
- package/src/duckdb/src/planner/expression/bound_window_expression.cpp +1 -1
- package/src/duckdb/src/planner/filter/constant_filter.cpp +4 -6
- package/src/duckdb/src/planner/pragma_handler.cpp +10 -2
- package/src/duckdb/src/storage/buffer_manager.cpp +44 -46
- package/src/duckdb/src/storage/checkpoint/row_group_writer.cpp +1 -1
- package/src/duckdb/src/storage/checkpoint/table_data_reader.cpp +1 -4
- package/src/duckdb/src/storage/checkpoint/table_data_writer.cpp +4 -4
- package/src/duckdb/src/storage/compression/bitpacking.cpp +28 -24
- package/src/duckdb/src/storage/compression/fixed_size_uncompressed.cpp +43 -45
- package/src/duckdb/src/storage/compression/numeric_constant.cpp +9 -10
- package/src/duckdb/src/storage/compression/patas.cpp +1 -1
- package/src/duckdb/src/storage/compression/rle.cpp +19 -15
- package/src/duckdb/src/storage/compression/validity_uncompressed.cpp +5 -5
- package/src/duckdb/src/storage/data_table.cpp +4 -6
- package/src/duckdb/src/storage/statistics/base_statistics.cpp +373 -128
- package/src/duckdb/src/storage/statistics/column_statistics.cpp +58 -3
- package/src/duckdb/src/storage/statistics/distinct_statistics.cpp +4 -9
- package/src/duckdb/src/storage/statistics/list_stats.cpp +117 -0
- package/src/duckdb/src/storage/statistics/numeric_stats.cpp +529 -0
- package/src/duckdb/src/storage/statistics/segment_statistics.cpp +2 -11
- package/src/duckdb/src/storage/statistics/string_stats.cpp +273 -0
- package/src/duckdb/src/storage/statistics/struct_stats.cpp +131 -0
- package/src/duckdb/src/storage/storage_info.cpp +1 -1
- package/src/duckdb/src/storage/table/column_checkpoint_state.cpp +3 -4
- package/src/duckdb/src/storage/table/column_data.cpp +16 -11
- package/src/duckdb/src/storage/table/column_data_checkpointer.cpp +2 -3
- package/src/duckdb/src/storage/table/column_segment.cpp +6 -8
- package/src/duckdb/src/storage/table/list_column_data.cpp +39 -58
- package/src/duckdb/src/storage/table/row_group.cpp +24 -23
- package/src/duckdb/src/storage/table/row_group_collection.cpp +12 -12
- package/src/duckdb/src/storage/table/standard_column_data.cpp +6 -6
- package/src/duckdb/src/storage/table/struct_column_data.cpp +15 -16
- package/src/duckdb/src/storage/table/table_statistics.cpp +27 -7
- package/src/duckdb/src/storage/table/update_segment.cpp +10 -12
- package/src/duckdb/third_party/libpg_query/include/nodes/nodes.hpp +3 -0
- package/src/duckdb/third_party/libpg_query/include/nodes/parsenodes.hpp +34 -1
- package/src/duckdb/third_party/libpg_query/include/parser/gram.hpp +1020 -530
- package/src/duckdb/third_party/libpg_query/include/parser/kwlist.hpp +7 -0
- package/src/duckdb/third_party/libpg_query/src_backend_parser_gram.cpp +23560 -22737
- package/src/duckdb/ub_src_function_aggregate_distributive.cpp +2 -0
- package/src/duckdb/ub_src_function_scalar_bit.cpp +2 -0
- package/src/duckdb/ub_src_function_scalar_map.cpp +4 -0
- package/src/duckdb/ub_src_main_capi.cpp +2 -0
- package/src/duckdb/ub_src_parser_parsed_data.cpp +4 -2
- package/src/duckdb/ub_src_parser_statement.cpp +2 -0
- package/src/duckdb/ub_src_parser_tableref.cpp +2 -0
- package/src/duckdb/ub_src_parser_transform_statement.cpp +2 -0
- package/src/duckdb/ub_src_parser_transform_tableref.cpp +2 -0
- package/src/duckdb/ub_src_planner_binder_tableref.cpp +2 -0
- package/src/duckdb/ub_src_storage_statistics.cpp +4 -6
- package/src/duckdb/src/include/duckdb/main/loadable_extension.hpp +0 -59
- package/src/duckdb/src/include/duckdb/storage/statistics/list_statistics.hpp +0 -36
- package/src/duckdb/src/include/duckdb/storage/statistics/numeric_statistics.hpp +0 -75
- package/src/duckdb/src/include/duckdb/storage/statistics/string_statistics.hpp +0 -49
- package/src/duckdb/src/include/duckdb/storage/statistics/struct_statistics.hpp +0 -36
- package/src/duckdb/src/include/duckdb/storage/statistics/validity_statistics.hpp +0 -45
- package/src/duckdb/src/parser/parsed_data/alter_function_info.cpp +0 -55
- package/src/duckdb/src/storage/statistics/list_statistics.cpp +0 -94
- package/src/duckdb/src/storage/statistics/numeric_statistics.cpp +0 -307
- package/src/duckdb/src/storage/statistics/string_statistics.cpp +0 -220
- package/src/duckdb/src/storage/statistics/struct_statistics.cpp +0 -108
- package/src/duckdb/src/storage/statistics/validity_statistics.cpp +0 -91
@@ -1,14 +1,14 @@
|
|
1
|
-
/* A Bison parser, made by GNU Bison 3.
|
1
|
+
/* A Bison parser, made by GNU Bison 2.3. */
|
2
2
|
|
3
|
-
/*
|
3
|
+
/* Skeleton interface for Bison's Yacc-like parsers in C
|
4
4
|
|
5
|
-
Copyright (C) 1984, 1989
|
6
|
-
Inc.
|
5
|
+
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
6
|
+
Free Software Foundation, Inc.
|
7
7
|
|
8
|
-
This program is free software
|
8
|
+
This program is free software; you can redistribute it and/or modify
|
9
9
|
it under the terms of the GNU General Public License as published by
|
10
|
-
the Free Software Foundation
|
11
|
-
|
10
|
+
the Free Software Foundation; either version 2, or (at your option)
|
11
|
+
any later version.
|
12
12
|
|
13
13
|
This program is distributed in the hope that it will be useful,
|
14
14
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
@@ -16,7 +16,9 @@
|
|
16
16
|
GNU General Public License for more details.
|
17
17
|
|
18
18
|
You should have received a copy of the GNU General Public License
|
19
|
-
along with this program
|
19
|
+
along with this program; if not, write to the Free Software
|
20
|
+
Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
21
|
+
Boston, MA 02110-1301, USA. */
|
20
22
|
|
21
23
|
/* As a special exception, you may create a larger work that contains
|
22
24
|
part or all of the Bison parser skeleton and distribute that work
|
@@ -31,520 +33,1011 @@
|
|
31
33
|
This special exception was added by the Free Software Foundation in
|
32
34
|
version 2.2 of Bison. */
|
33
35
|
|
34
|
-
/*
|
35
|
-
are private implementation details. Do not rely on them. */
|
36
|
-
|
37
|
-
#ifndef YY_BASE_YY_THIRD_PARTY_LIBPG_QUERY_GRAMMAR_GRAMMAR_OUT_HPP_INCLUDED
|
38
|
-
# define YY_BASE_YY_THIRD_PARTY_LIBPG_QUERY_GRAMMAR_GRAMMAR_OUT_HPP_INCLUDED
|
39
|
-
/* Debug traces. */
|
40
|
-
#ifndef YYDEBUG
|
41
|
-
# define YYDEBUG 0
|
42
|
-
#endif
|
43
|
-
#if YYDEBUG
|
44
|
-
extern int base_yydebug;
|
45
|
-
#endif
|
46
|
-
|
47
|
-
/* Token type. */
|
36
|
+
/* Tokens. */
|
48
37
|
#ifndef YYTOKENTYPE
|
49
38
|
# define YYTOKENTYPE
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
39
|
+
/* Put the tokens into the symbol table, so that GDB and other debuggers
|
40
|
+
know about them. */
|
41
|
+
enum yytokentype {
|
42
|
+
IDENT = 258,
|
43
|
+
FCONST = 259,
|
44
|
+
SCONST = 260,
|
45
|
+
BCONST = 261,
|
46
|
+
XCONST = 262,
|
47
|
+
Op = 263,
|
48
|
+
ICONST = 264,
|
49
|
+
PARAM = 265,
|
50
|
+
TYPECAST = 266,
|
51
|
+
DOT_DOT = 267,
|
52
|
+
COLON_EQUALS = 268,
|
53
|
+
EQUALS_GREATER = 269,
|
54
|
+
POWER_OF = 270,
|
55
|
+
LAMBDA_ARROW = 271,
|
56
|
+
DOUBLE_ARROW = 272,
|
57
|
+
LESS_EQUALS = 273,
|
58
|
+
GREATER_EQUALS = 274,
|
59
|
+
NOT_EQUALS = 275,
|
60
|
+
ABORT_P = 276,
|
61
|
+
ABSOLUTE_P = 277,
|
62
|
+
ACCESS = 278,
|
63
|
+
ACTION = 279,
|
64
|
+
ADD_P = 280,
|
65
|
+
ADMIN = 281,
|
66
|
+
AFTER = 282,
|
67
|
+
AGGREGATE = 283,
|
68
|
+
ALL = 284,
|
69
|
+
ALSO = 285,
|
70
|
+
ALTER = 286,
|
71
|
+
ALWAYS = 287,
|
72
|
+
ANALYSE = 288,
|
73
|
+
ANALYZE = 289,
|
74
|
+
AND = 290,
|
75
|
+
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
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
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
|
-
|
1093
|
+
|
1094
|
+
|
601
1095
|
#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
|
602
|
-
typedef struct 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 */
|