pg_query 5.0.0 → 6.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +27 -0
- data/README.md +1 -1
- data/Rakefile +3 -4
- data/ext/pg_query/extconf.rb +14 -4
- data/ext/pg_query/include/pg_query.h +4 -3
- data/ext/pg_query/include/pg_query_enum_defs.c +424 -154
- data/ext/pg_query/include/pg_query_fingerprint_conds.c +68 -4
- data/ext/pg_query/include/pg_query_fingerprint_defs.c +2901 -1794
- data/ext/pg_query/include/pg_query_outfuncs_conds.c +51 -3
- data/ext/pg_query/include/pg_query_outfuncs_defs.c +211 -24
- data/ext/pg_query/include/pg_query_readfuncs_conds.c +17 -1
- data/ext/pg_query/include/pg_query_readfuncs_defs.c +272 -53
- data/ext/pg_query/include/postgres/access/amapi.h +299 -0
- data/ext/pg_query/include/postgres/access/attmap.h +54 -0
- data/ext/pg_query/include/postgres/access/attnum.h +64 -0
- data/ext/pg_query/include/postgres/access/brin_internal.h +116 -0
- data/ext/pg_query/include/postgres/access/brin_tuple.h +112 -0
- data/ext/pg_query/include/postgres/access/clog.h +62 -0
- data/ext/pg_query/include/postgres/access/commit_ts.h +73 -0
- data/ext/pg_query/include/postgres/access/detoast.h +82 -0
- data/ext/pg_query/include/postgres/access/genam.h +237 -0
- data/ext/pg_query/include/postgres/access/gin.h +91 -0
- data/ext/pg_query/include/postgres/access/htup.h +89 -0
- data/ext/pg_query/include/postgres/access/htup_details.h +811 -0
- data/ext/pg_query/include/postgres/access/itup.h +170 -0
- data/ext/pg_query/include/postgres/access/parallel.h +81 -0
- data/ext/pg_query/include/postgres/access/printtup.h +35 -0
- data/ext/pg_query/include/postgres/access/relation.h +28 -0
- data/ext/pg_query/include/postgres/access/relscan.h +191 -0
- data/ext/pg_query/include/postgres/access/rmgrlist.h +49 -0
- data/ext/pg_query/include/postgres/access/sdir.h +67 -0
- data/ext/pg_query/include/postgres/access/skey.h +151 -0
- data/ext/pg_query/include/postgres/access/slru.h +221 -0
- data/ext/pg_query/include/postgres/access/stratnum.h +85 -0
- data/ext/pg_query/include/postgres/access/sysattr.h +29 -0
- data/ext/pg_query/include/postgres/access/table.h +28 -0
- data/ext/pg_query/include/postgres/access/tableam.h +2109 -0
- data/ext/pg_query/include/postgres/access/tidstore.h +50 -0
- data/ext/pg_query/include/postgres/access/toast_compression.h +73 -0
- data/ext/pg_query/include/postgres/access/transam.h +375 -0
- data/ext/pg_query/include/postgres/access/tsmapi.h +82 -0
- data/ext/pg_query/include/postgres/access/tupconvert.h +54 -0
- data/ext/pg_query/include/postgres/access/tupdesc.h +154 -0
- data/ext/pg_query/include/postgres/access/tupmacs.h +207 -0
- data/ext/pg_query/include/postgres/access/twophase.h +65 -0
- data/ext/pg_query/include/postgres/access/xact.h +530 -0
- data/ext/pg_query/include/postgres/access/xlog.h +310 -0
- data/ext/pg_query/include/postgres/access/xlog_internal.h +405 -0
- data/ext/pg_query/include/postgres/access/xlogbackup.h +43 -0
- data/ext/pg_query/include/postgres/access/xlogdefs.h +82 -0
- data/ext/pg_query/include/postgres/access/xlogprefetcher.h +55 -0
- data/ext/pg_query/include/postgres/access/xlogreader.h +444 -0
- data/ext/pg_query/include/postgres/access/xlogrecord.h +248 -0
- data/ext/pg_query/include/postgres/access/xlogrecovery.h +158 -0
- data/ext/pg_query/include/postgres/archive/archive_module.h +67 -0
- data/ext/pg_query/include/postgres/c.h +1374 -0
- data/ext/pg_query/include/postgres/catalog/catalog.h +47 -0
- data/ext/pg_query/include/postgres/catalog/catversion.h +62 -0
- data/ext/pg_query/include/postgres/catalog/dependency.h +228 -0
- data/ext/pg_query/include/postgres/catalog/genbki.h +149 -0
- data/ext/pg_query/include/postgres/catalog/index.h +218 -0
- data/ext/pg_query/include/postgres/catalog/indexing.h +54 -0
- data/ext/pg_query/include/postgres/catalog/namespace.h +189 -0
- data/ext/pg_query/include/postgres/catalog/objectaccess.h +267 -0
- data/ext/pg_query/include/postgres/catalog/objectaddress.h +89 -0
- data/ext/pg_query/include/postgres/catalog/pg_aggregate.h +182 -0
- data/ext/pg_query/include/postgres/catalog/pg_aggregate_d.h +78 -0
- data/ext/pg_query/include/postgres/catalog/pg_am.h +66 -0
- data/ext/pg_query/include/postgres/catalog/pg_am_d.h +47 -0
- data/ext/pg_query/include/postgres/catalog/pg_attribute.h +240 -0
- data/ext/pg_query/include/postgres/catalog/pg_attribute_d.h +62 -0
- data/ext/pg_query/include/postgres/catalog/pg_authid.h +66 -0
- data/ext/pg_query/include/postgres/catalog/pg_authid_d.h +60 -0
- data/ext/pg_query/include/postgres/catalog/pg_class.h +235 -0
- data/ext/pg_query/include/postgres/catalog/pg_class_d.h +134 -0
- data/ext/pg_query/include/postgres/catalog/pg_collation.h +106 -0
- data/ext/pg_query/include/postgres/catalog/pg_collation_d.h +66 -0
- data/ext/pg_query/include/postgres/catalog/pg_constraint.h +278 -0
- data/ext/pg_query/include/postgres/catalog/pg_constraint_d.h +74 -0
- data/ext/pg_query/include/postgres/catalog/pg_control.h +260 -0
- data/ext/pg_query/include/postgres/catalog/pg_conversion.h +79 -0
- data/ext/pg_query/include/postgres/catalog/pg_conversion_d.h +38 -0
- data/ext/pg_query/include/postgres/catalog/pg_database.h +129 -0
- data/ext/pg_query/include/postgres/catalog/pg_database_d.h +53 -0
- data/ext/pg_query/include/postgres/catalog/pg_depend.h +77 -0
- data/ext/pg_query/include/postgres/catalog/pg_depend_d.h +36 -0
- data/ext/pg_query/include/postgres/catalog/pg_event_trigger.h +60 -0
- data/ext/pg_query/include/postgres/catalog/pg_event_trigger_d.h +36 -0
- data/ext/pg_query/include/postgres/catalog/pg_index.h +92 -0
- data/ext/pg_query/include/postgres/catalog/pg_index_d.h +59 -0
- data/ext/pg_query/include/postgres/catalog/pg_language.h +75 -0
- data/ext/pg_query/include/postgres/catalog/pg_language_d.h +41 -0
- data/ext/pg_query/include/postgres/catalog/pg_namespace.h +67 -0
- data/ext/pg_query/include/postgres/catalog/pg_namespace_d.h +36 -0
- data/ext/pg_query/include/postgres/catalog/pg_opclass.h +91 -0
- data/ext/pg_query/include/postgres/catalog/pg_opclass_d.h +51 -0
- data/ext/pg_query/include/postgres/catalog/pg_operator.h +124 -0
- data/ext/pg_query/include/postgres/catalog/pg_operator_d.h +142 -0
- data/ext/pg_query/include/postgres/catalog/pg_opfamily.h +67 -0
- data/ext/pg_query/include/postgres/catalog/pg_opfamily_d.h +51 -0
- data/ext/pg_query/include/postgres/catalog/pg_partitioned_table.h +76 -0
- data/ext/pg_query/include/postgres/catalog/pg_partitioned_table_d.h +36 -0
- data/ext/pg_query/include/postgres/catalog/pg_proc.h +223 -0
- data/ext/pg_query/include/postgres/catalog/pg_proc_d.h +101 -0
- data/ext/pg_query/include/postgres/catalog/pg_publication.h +161 -0
- data/ext/pg_query/include/postgres/catalog/pg_publication_d.h +38 -0
- data/ext/pg_query/include/postgres/catalog/pg_replication_origin.h +65 -0
- data/ext/pg_query/include/postgres/catalog/pg_replication_origin_d.h +33 -0
- data/ext/pg_query/include/postgres/catalog/pg_statistic.h +288 -0
- data/ext/pg_query/include/postgres/catalog/pg_statistic_d.h +199 -0
- data/ext/pg_query/include/postgres/catalog/pg_statistic_ext.h +91 -0
- data/ext/pg_query/include/postgres/catalog/pg_statistic_ext_d.h +45 -0
- data/ext/pg_query/include/postgres/catalog/pg_transform.h +51 -0
- data/ext/pg_query/include/postgres/catalog/pg_transform_d.h +34 -0
- data/ext/pg_query/include/postgres/catalog/pg_trigger.h +153 -0
- data/ext/pg_query/include/postgres/catalog/pg_trigger_d.h +109 -0
- data/ext/pg_query/include/postgres/catalog/pg_ts_config.h +56 -0
- data/ext/pg_query/include/postgres/catalog/pg_ts_config_d.h +34 -0
- data/ext/pg_query/include/postgres/catalog/pg_ts_dict.h +62 -0
- data/ext/pg_query/include/postgres/catalog/pg_ts_dict_d.h +35 -0
- data/ext/pg_query/include/postgres/catalog/pg_ts_parser.h +63 -0
- data/ext/pg_query/include/postgres/catalog/pg_ts_parser_d.h +37 -0
- data/ext/pg_query/include/postgres/catalog/pg_ts_template.h +54 -0
- data/ext/pg_query/include/postgres/catalog/pg_ts_template_d.h +34 -0
- data/ext/pg_query/include/postgres/catalog/pg_type.h +407 -0
- data/ext/pg_query/include/postgres/catalog/pg_type_d.h +324 -0
- data/ext/pg_query/include/postgres/catalog/storage.h +50 -0
- data/ext/pg_query/include/postgres/catalog/syscache_ids.h +104 -0
- data/ext/pg_query/include/postgres/commands/async.h +49 -0
- data/ext/pg_query/include/postgres/commands/dbcommands.h +37 -0
- data/ext/pg_query/include/postgres/commands/defrem.h +161 -0
- data/ext/pg_query/include/postgres/commands/event_trigger.h +91 -0
- data/ext/pg_query/include/postgres/commands/explain.h +145 -0
- data/ext/pg_query/include/postgres/commands/prepare.h +61 -0
- data/ext/pg_query/include/postgres/commands/tablespace.h +69 -0
- data/ext/pg_query/include/postgres/commands/trigger.h +288 -0
- data/ext/pg_query/include/postgres/commands/vacuum.h +388 -0
- data/ext/pg_query/include/postgres/common/cryptohash.h +39 -0
- data/ext/pg_query/include/postgres/common/file_perm.h +56 -0
- data/ext/pg_query/include/postgres/common/file_utils.h +65 -0
- data/ext/pg_query/include/postgres/common/hashfn.h +119 -0
- data/ext/pg_query/include/postgres/common/hashfn_unstable.h +453 -0
- data/ext/pg_query/include/postgres/common/int.h +512 -0
- data/ext/pg_query/include/postgres/common/keywords.h +29 -0
- data/ext/pg_query/include/postgres/common/kwlookup.h +44 -0
- data/ext/pg_query/include/postgres/common/pg_prng.h +62 -0
- data/ext/pg_query/include/postgres/common/relpath.h +97 -0
- data/ext/pg_query/include/postgres/common/scram-common.h +70 -0
- data/ext/pg_query/include/postgres/common/sha2.h +32 -0
- data/ext/pg_query/include/postgres/common/string.h +44 -0
- data/ext/pg_query/include/postgres/common/unicode_east_asian_fw_table.h +124 -0
- data/ext/pg_query/include/postgres/copyfuncs.funcs.c +5261 -0
- data/ext/pg_query/include/postgres/copyfuncs.switch.c +989 -0
- data/ext/pg_query/include/postgres/datatype/timestamp.h +269 -0
- data/ext/pg_query/include/postgres/equalfuncs.funcs.c +3310 -0
- data/ext/pg_query/include/postgres/equalfuncs.switch.c +836 -0
- data/ext/pg_query/include/postgres/executor/execdesc.h +70 -0
- data/ext/pg_query/include/postgres/executor/executor.h +681 -0
- data/ext/pg_query/include/postgres/executor/functions.h +56 -0
- data/ext/pg_query/include/postgres/executor/instrument.h +120 -0
- data/ext/pg_query/include/postgres/executor/spi.h +207 -0
- data/ext/pg_query/include/postgres/executor/tablefunc.h +67 -0
- data/ext/pg_query/include/postgres/executor/tuptable.h +523 -0
- data/ext/pg_query/include/postgres/fmgr.h +800 -0
- data/ext/pg_query/include/postgres/foreign/fdwapi.h +294 -0
- data/ext/pg_query/include/postgres/funcapi.h +360 -0
- data/ext/pg_query/include/postgres/gram.h +1168 -0
- data/ext/pg_query/include/postgres/gramparse.h +75 -0
- data/ext/pg_query/include/postgres/jit/jit.h +106 -0
- data/ext/pg_query/include/postgres/kwlist_d.h +1164 -0
- data/ext/pg_query/include/postgres/lib/dshash.h +130 -0
- data/ext/pg_query/include/postgres/lib/ilist.h +1159 -0
- data/ext/pg_query/include/postgres/lib/pairingheap.h +102 -0
- data/ext/pg_query/include/postgres/lib/simplehash.h +1206 -0
- data/ext/pg_query/include/postgres/lib/sort_template.h +445 -0
- data/ext/pg_query/include/postgres/lib/stringinfo.h +243 -0
- data/ext/pg_query/include/postgres/libpq/auth.h +37 -0
- data/ext/pg_query/include/postgres/libpq/crypt.h +47 -0
- data/ext/pg_query/include/postgres/libpq/hba.h +186 -0
- data/ext/pg_query/include/postgres/libpq/libpq-be.h +358 -0
- data/ext/pg_query/include/postgres/libpq/libpq.h +143 -0
- data/ext/pg_query/include/postgres/libpq/pqcomm.h +169 -0
- data/ext/pg_query/include/postgres/libpq/pqformat.h +209 -0
- data/ext/pg_query/include/postgres/libpq/pqsignal.h +54 -0
- data/ext/pg_query/include/postgres/libpq/protocol.h +89 -0
- data/ext/pg_query/include/postgres/libpq/sasl.h +136 -0
- data/ext/pg_query/include/postgres/libpq/scram.h +37 -0
- data/ext/pg_query/include/postgres/mb/pg_wchar.h +792 -0
- data/ext/pg_query/include/postgres/mb/stringinfo_mb.h +24 -0
- data/ext/pg_query/include/postgres/miscadmin.h +519 -0
- data/ext/pg_query/include/postgres/nodes/bitmapset.h +140 -0
- data/ext/pg_query/include/postgres/nodes/execnodes.h +2852 -0
- data/ext/pg_query/include/postgres/nodes/extensible.h +164 -0
- data/ext/pg_query/include/postgres/nodes/lockoptions.h +61 -0
- data/ext/pg_query/include/postgres/nodes/makefuncs.h +127 -0
- data/ext/pg_query/include/postgres/nodes/memnodes.h +152 -0
- data/ext/pg_query/include/postgres/nodes/miscnodes.h +56 -0
- data/ext/pg_query/include/postgres/nodes/nodeFuncs.h +222 -0
- data/ext/pg_query/include/postgres/nodes/nodes.h +435 -0
- data/ext/pg_query/include/postgres/nodes/nodetags.h +491 -0
- data/ext/pg_query/include/postgres/nodes/params.h +170 -0
- data/ext/pg_query/include/postgres/nodes/parsenodes.h +4233 -0
- data/ext/pg_query/include/postgres/nodes/pathnodes.h +3435 -0
- data/ext/pg_query/include/postgres/nodes/pg_list.h +686 -0
- data/ext/pg_query/include/postgres/nodes/plannodes.h +1593 -0
- data/ext/pg_query/include/postgres/nodes/primnodes.h +2335 -0
- data/ext/pg_query/include/postgres/nodes/print.h +34 -0
- data/ext/pg_query/include/postgres/nodes/queryjumble.h +86 -0
- data/ext/pg_query/include/postgres/nodes/replnodes.h +132 -0
- data/ext/pg_query/include/postgres/nodes/supportnodes.h +346 -0
- data/ext/pg_query/include/postgres/nodes/tidbitmap.h +75 -0
- data/ext/pg_query/include/postgres/nodes/value.h +90 -0
- data/ext/pg_query/include/postgres/optimizer/cost.h +216 -0
- data/ext/pg_query/include/postgres/optimizer/geqo.h +90 -0
- data/ext/pg_query/include/postgres/optimizer/geqo_gene.h +45 -0
- data/ext/pg_query/include/postgres/optimizer/optimizer.h +205 -0
- data/ext/pg_query/include/postgres/optimizer/paths.h +271 -0
- data/ext/pg_query/include/postgres/optimizer/planmain.h +123 -0
- data/ext/pg_query/include/postgres/parser/analyze.h +66 -0
- data/ext/pg_query/include/postgres/parser/kwlist.h +518 -0
- data/ext/pg_query/include/postgres/parser/parse_agg.h +65 -0
- data/ext/pg_query/include/postgres/parser/parse_coerce.h +102 -0
- data/ext/pg_query/include/postgres/parser/parse_expr.h +25 -0
- data/ext/pg_query/include/postgres/parser/parse_func.h +74 -0
- data/ext/pg_query/include/postgres/parser/parse_node.h +358 -0
- data/ext/pg_query/include/postgres/parser/parse_oper.h +68 -0
- data/ext/pg_query/include/postgres/parser/parse_relation.h +129 -0
- data/ext/pg_query/include/postgres/parser/parse_type.h +61 -0
- data/ext/pg_query/include/postgres/parser/parser.h +68 -0
- data/ext/pg_query/include/postgres/parser/parsetree.h +61 -0
- data/ext/pg_query/include/postgres/parser/scanner.h +152 -0
- data/ext/pg_query/include/postgres/parser/scansup.h +27 -0
- data/ext/pg_query/include/postgres/partitioning/partdefs.h +26 -0
- data/ext/pg_query/include/postgres/pg_config.h +977 -0
- data/ext/pg_query/include/postgres/pg_config_manual.h +385 -0
- data/ext/pg_query/include/postgres/pg_config_os.h +8 -0
- data/ext/pg_query/include/postgres/pg_getopt.h +56 -0
- data/ext/pg_query/include/postgres/pg_trace.h +17 -0
- data/ext/pg_query/include/postgres/pgstat.h +780 -0
- data/ext/pg_query/include/postgres/pgtime.h +94 -0
- data/ext/pg_query/include/postgres/pl_gram.h +385 -0
- data/ext/pg_query/include/postgres/pl_reserved_kwlist.h +52 -0
- data/ext/pg_query/include/postgres/pl_reserved_kwlist_d.h +114 -0
- data/ext/pg_query/include/postgres/pl_unreserved_kwlist.h +112 -0
- data/ext/pg_query/include/postgres/pl_unreserved_kwlist_d.h +246 -0
- data/ext/pg_query/include/postgres/plerrcodes.h +998 -0
- data/ext/pg_query/include/postgres/plpgsql.h +1342 -0
- data/ext/pg_query/include/postgres/port/atomics/arch-arm.h +32 -0
- data/ext/pg_query/include/postgres/port/atomics/arch-hppa.h +17 -0
- data/ext/pg_query/include/postgres/port/atomics/arch-ppc.h +256 -0
- data/ext/pg_query/include/postgres/port/atomics/arch-x86.h +254 -0
- data/ext/pg_query/include/postgres/port/atomics/fallback.h +170 -0
- data/ext/pg_query/include/postgres/port/atomics/generic-gcc.h +323 -0
- data/ext/pg_query/include/postgres/port/atomics/generic-msvc.h +119 -0
- data/ext/pg_query/include/postgres/port/atomics/generic-sunpro.h +121 -0
- data/ext/pg_query/include/postgres/port/atomics/generic.h +437 -0
- data/ext/pg_query/include/postgres/port/atomics.h +606 -0
- data/ext/pg_query/include/postgres/port/pg_bitutils.h +421 -0
- data/ext/pg_query/include/postgres/port/pg_bswap.h +161 -0
- data/ext/pg_query/include/postgres/port/pg_crc32c.h +110 -0
- data/ext/pg_query/include/postgres/port/pg_iovec.h +117 -0
- data/ext/pg_query/include/postgres/port/simd.h +422 -0
- data/ext/pg_query/include/postgres/port/win32/arpa/inet.h +3 -0
- data/ext/pg_query/include/postgres/port/win32/dlfcn.h +1 -0
- data/ext/pg_query/include/postgres/port/win32/grp.h +1 -0
- data/ext/pg_query/include/postgres/port/win32/netdb.h +7 -0
- data/ext/pg_query/include/postgres/port/win32/netinet/in.h +3 -0
- data/ext/pg_query/include/postgres/port/win32/netinet/tcp.h +7 -0
- data/ext/pg_query/include/postgres/port/win32/pwd.h +3 -0
- data/ext/pg_query/include/postgres/port/win32/sys/resource.h +20 -0
- data/ext/pg_query/include/postgres/port/win32/sys/select.h +3 -0
- data/ext/pg_query/include/postgres/port/win32/sys/socket.h +34 -0
- data/ext/pg_query/include/postgres/port/win32/sys/un.h +17 -0
- data/ext/pg_query/include/postgres/port/win32/sys/wait.h +3 -0
- data/ext/pg_query/include/postgres/port/win32.h +59 -0
- data/ext/pg_query/include/postgres/port/win32_msvc/dirent.h +34 -0
- data/ext/pg_query/include/postgres/port/win32_msvc/sys/file.h +1 -0
- data/ext/pg_query/include/postgres/port/win32_msvc/sys/param.h +1 -0
- data/ext/pg_query/include/postgres/port/win32_msvc/sys/time.h +1 -0
- data/ext/pg_query/include/postgres/port/win32_msvc/unistd.h +9 -0
- data/ext/pg_query/include/postgres/port/win32_msvc/utime.h +3 -0
- data/ext/pg_query/include/postgres/port/win32_port.h +584 -0
- data/ext/pg_query/include/postgres/port.h +524 -0
- data/ext/pg_query/include/postgres/portability/instr_time.h +197 -0
- data/ext/pg_query/include/postgres/postgres.h +579 -0
- data/ext/pg_query/include/postgres/postmaster/autovacuum.h +69 -0
- data/ext/pg_query/include/postgres/postmaster/bgworker.h +164 -0
- data/ext/pg_query/include/postgres/postmaster/bgworker_internals.h +60 -0
- data/ext/pg_query/include/postgres/postmaster/bgwriter.h +45 -0
- data/ext/pg_query/include/postgres/postmaster/interrupt.h +32 -0
- data/ext/pg_query/include/postgres/postmaster/pgarch.h +36 -0
- data/ext/pg_query/include/postgres/postmaster/postmaster.h +101 -0
- data/ext/pg_query/include/postgres/postmaster/startup.h +41 -0
- data/ext/pg_query/include/postgres/postmaster/syslogger.h +101 -0
- data/ext/pg_query/include/postgres/postmaster/walsummarizer.h +35 -0
- data/ext/pg_query/include/postgres/postmaster/walwriter.h +23 -0
- data/ext/pg_query/include/postgres/regex/regex.h +272 -0
- data/ext/pg_query/include/postgres/replication/logicallauncher.h +34 -0
- data/ext/pg_query/include/postgres/replication/logicalproto.h +274 -0
- data/ext/pg_query/include/postgres/replication/logicalworker.h +33 -0
- data/ext/pg_query/include/postgres/replication/origin.h +73 -0
- data/ext/pg_query/include/postgres/replication/reorderbuffer.h +743 -0
- data/ext/pg_query/include/postgres/replication/slot.h +285 -0
- data/ext/pg_query/include/postgres/replication/slotsync.h +38 -0
- data/ext/pg_query/include/postgres/replication/syncrep.h +109 -0
- data/ext/pg_query/include/postgres/replication/walreceiver.h +504 -0
- data/ext/pg_query/include/postgres/replication/walsender.h +76 -0
- data/ext/pg_query/include/postgres/rewrite/prs2lock.h +46 -0
- data/ext/pg_query/include/postgres/rewrite/rewriteHandler.h +41 -0
- data/ext/pg_query/include/postgres/rewrite/rewriteManip.h +96 -0
- data/ext/pg_query/include/postgres/rewrite/rewriteSupport.h +26 -0
- data/ext/pg_query/include/postgres/storage/block.h +108 -0
- data/ext/pg_query/include/postgres/storage/buf.h +46 -0
- data/ext/pg_query/include/postgres/storage/bufmgr.h +411 -0
- data/ext/pg_query/include/postgres/storage/bufpage.h +510 -0
- data/ext/pg_query/include/postgres/storage/condition_variable.h +73 -0
- data/ext/pg_query/include/postgres/storage/dsm.h +61 -0
- data/ext/pg_query/include/postgres/storage/dsm_impl.h +79 -0
- data/ext/pg_query/include/postgres/storage/fd.h +219 -0
- data/ext/pg_query/include/postgres/storage/fileset.h +40 -0
- data/ext/pg_query/include/postgres/storage/ipc.h +87 -0
- data/ext/pg_query/include/postgres/storage/item.h +19 -0
- data/ext/pg_query/include/postgres/storage/itemid.h +184 -0
- data/ext/pg_query/include/postgres/storage/itemptr.h +245 -0
- data/ext/pg_query/include/postgres/storage/large_object.h +100 -0
- data/ext/pg_query/include/postgres/storage/latch.h +196 -0
- data/ext/pg_query/include/postgres/storage/lmgr.h +126 -0
- data/ext/pg_query/include/postgres/storage/lock.h +624 -0
- data/ext/pg_query/include/postgres/storage/lockdefs.h +59 -0
- data/ext/pg_query/include/postgres/storage/lwlock.h +228 -0
- data/ext/pg_query/include/postgres/storage/lwlocknames.h +47 -0
- data/ext/pg_query/include/postgres/storage/off.h +57 -0
- data/ext/pg_query/include/postgres/storage/pg_sema.h +61 -0
- data/ext/pg_query/include/postgres/storage/pg_shmem.h +93 -0
- data/ext/pg_query/include/postgres/storage/pmsignal.h +105 -0
- data/ext/pg_query/include/postgres/storage/predicate.h +83 -0
- data/ext/pg_query/include/postgres/storage/proc.h +491 -0
- data/ext/pg_query/include/postgres/storage/procarray.h +103 -0
- data/ext/pg_query/include/postgres/storage/proclist_types.h +53 -0
- data/ext/pg_query/include/postgres/storage/procnumber.h +43 -0
- data/ext/pg_query/include/postgres/storage/procsignal.h +75 -0
- data/ext/pg_query/include/postgres/storage/read_stream.h +65 -0
- data/ext/pg_query/include/postgres/storage/relfilelocator.h +100 -0
- data/ext/pg_query/include/postgres/storage/s_lock.h +847 -0
- data/ext/pg_query/include/postgres/storage/sharedfileset.h +37 -0
- data/ext/pg_query/include/postgres/storage/shm_mq.h +86 -0
- data/ext/pg_query/include/postgres/storage/shm_toc.h +58 -0
- data/ext/pg_query/include/postgres/storage/shmem.h +59 -0
- data/ext/pg_query/include/postgres/storage/sinval.h +153 -0
- data/ext/pg_query/include/postgres/storage/smgr.h +127 -0
- data/ext/pg_query/include/postgres/storage/spin.h +77 -0
- data/ext/pg_query/include/postgres/storage/standby.h +109 -0
- data/ext/pg_query/include/postgres/storage/standbydefs.h +74 -0
- data/ext/pg_query/include/postgres/storage/sync.h +66 -0
- data/ext/pg_query/include/postgres/tcop/cmdtag.h +62 -0
- data/ext/pg_query/include/postgres/tcop/cmdtaglist.h +219 -0
- data/ext/pg_query/include/postgres/tcop/deparse_utility.h +108 -0
- data/ext/pg_query/include/postgres/tcop/dest.h +148 -0
- data/ext/pg_query/include/postgres/tcop/fastpath.h +20 -0
- data/ext/pg_query/include/postgres/tcop/pquery.h +51 -0
- data/ext/pg_query/include/postgres/tcop/tcopprot.h +98 -0
- data/ext/pg_query/include/postgres/tcop/utility.h +112 -0
- data/ext/pg_query/include/postgres/tsearch/ts_cache.h +96 -0
- data/ext/pg_query/include/postgres/utils/acl.h +290 -0
- data/ext/pg_query/include/postgres/utils/aclchk_internal.h +45 -0
- data/ext/pg_query/include/postgres/utils/array.h +481 -0
- data/ext/pg_query/include/postgres/utils/ascii.h +84 -0
- data/ext/pg_query/include/postgres/utils/backend_progress.h +46 -0
- data/ext/pg_query/include/postgres/utils/backend_status.h +340 -0
- data/ext/pg_query/include/postgres/utils/builtins.h +139 -0
- data/ext/pg_query/include/postgres/utils/bytea.h +28 -0
- data/ext/pg_query/include/postgres/utils/catcache.h +230 -0
- data/ext/pg_query/include/postgres/utils/date.h +118 -0
- data/ext/pg_query/include/postgres/utils/datetime.h +367 -0
- data/ext/pg_query/include/postgres/utils/datum.h +76 -0
- data/ext/pg_query/include/postgres/utils/dsa.h +166 -0
- data/ext/pg_query/include/postgres/utils/elog.h +540 -0
- data/ext/pg_query/include/postgres/utils/errcodes.h +352 -0
- data/ext/pg_query/include/postgres/utils/expandeddatum.h +170 -0
- data/ext/pg_query/include/postgres/utils/expandedrecord.h +241 -0
- data/ext/pg_query/include/postgres/utils/float.h +357 -0
- data/ext/pg_query/include/postgres/utils/fmgroids.h +3347 -0
- data/ext/pg_query/include/postgres/utils/fmgrprotos.h +2904 -0
- data/ext/pg_query/include/postgres/utils/fmgrtab.h +49 -0
- data/ext/pg_query/include/postgres/utils/guc.h +456 -0
- data/ext/pg_query/include/postgres/utils/guc_hooks.h +184 -0
- data/ext/pg_query/include/postgres/utils/guc_tables.h +323 -0
- data/ext/pg_query/include/postgres/utils/hsearch.h +153 -0
- data/ext/pg_query/include/postgres/utils/injection_point.h +44 -0
- data/ext/pg_query/include/postgres/utils/inval.h +68 -0
- data/ext/pg_query/include/postgres/utils/logtape.h +77 -0
- data/ext/pg_query/include/postgres/utils/lsyscache.h +215 -0
- data/ext/pg_query/include/postgres/utils/memdebug.h +82 -0
- data/ext/pg_query/include/postgres/utils/memutils.h +193 -0
- data/ext/pg_query/include/postgres/utils/memutils_internal.h +176 -0
- data/ext/pg_query/include/postgres/utils/memutils_memorychunk.h +253 -0
- data/ext/pg_query/include/postgres/utils/numeric.h +110 -0
- data/ext/pg_query/include/postgres/utils/palloc.h +151 -0
- data/ext/pg_query/include/postgres/utils/partcache.h +103 -0
- data/ext/pg_query/include/postgres/utils/pg_locale.h +136 -0
- data/ext/pg_query/include/postgres/utils/pgstat_internal.h +808 -0
- data/ext/pg_query/include/postgres/utils/plancache.h +238 -0
- data/ext/pg_query/include/postgres/utils/portal.h +252 -0
- data/ext/pg_query/include/postgres/utils/queryenvironment.h +74 -0
- data/ext/pg_query/include/postgres/utils/regproc.h +39 -0
- data/ext/pg_query/include/postgres/utils/rel.h +711 -0
- data/ext/pg_query/include/postgres/utils/relcache.h +155 -0
- data/ext/pg_query/include/postgres/utils/reltrigger.h +81 -0
- data/ext/pg_query/include/postgres/utils/resowner.h +167 -0
- data/ext/pg_query/include/postgres/utils/ruleutils.h +52 -0
- data/ext/pg_query/include/postgres/utils/sharedtuplestore.h +61 -0
- data/ext/pg_query/include/postgres/utils/snapmgr.h +130 -0
- data/ext/pg_query/include/postgres/utils/snapshot.h +219 -0
- data/ext/pg_query/include/postgres/utils/sortsupport.h +391 -0
- data/ext/pg_query/include/postgres/utils/syscache.h +131 -0
- data/ext/pg_query/include/postgres/utils/timeout.h +96 -0
- data/ext/pg_query/include/postgres/utils/timestamp.h +147 -0
- data/ext/pg_query/include/postgres/utils/tuplesort.h +472 -0
- data/ext/pg_query/include/postgres/utils/tuplestore.h +88 -0
- data/ext/pg_query/include/postgres/utils/typcache.h +210 -0
- data/ext/pg_query/include/postgres/utils/varlena.h +53 -0
- data/ext/pg_query/include/postgres/utils/wait_event.h +108 -0
- data/ext/pg_query/include/postgres/utils/wait_event_types.h +218 -0
- data/ext/pg_query/include/postgres/utils/xml.h +94 -0
- data/ext/pg_query/include/postgres/varatt.h +358 -0
- data/ext/pg_query/include/protobuf/pg_query.pb-c.h +1546 -792
- data/ext/pg_query/include/protobuf/pg_query.pb.h +58365 -46595
- data/ext/pg_query/pg_query.c +9 -0
- data/ext/pg_query/pg_query.pb-c.c +6598 -3739
- data/ext/pg_query/pg_query_fingerprint.c +4 -5
- data/ext/pg_query/pg_query_normalize.c +42 -1
- data/ext/pg_query/pg_query_outfuncs_json.c +9 -1
- data/ext/pg_query/pg_query_outfuncs_protobuf.c +1 -0
- data/ext/pg_query/pg_query_parse.c +1 -1
- data/ext/pg_query/pg_query_parse_plpgsql.c +18 -17
- data/ext/pg_query/pg_query_readfuncs_protobuf.c +3 -2
- data/ext/pg_query/pg_query_ruby.c +5 -0
- data/ext/pg_query/pg_query_ruby_freebsd.sym +0 -1
- data/ext/pg_query/pg_query_scan.c +1 -1
- data/ext/pg_query/pg_query_split.c +1 -1
- data/ext/pg_query/postgres_deparse.c +409 -21
- data/ext/pg_query/src_backend_catalog_namespace.c +241 -66
- data/ext/pg_query/src_backend_catalog_pg_proc.c +1 -3
- data/ext/pg_query/src_backend_commands_define.c +2 -3
- data/ext/pg_query/src_backend_nodes_bitmapset.c +137 -94
- data/ext/pg_query/src_backend_nodes_copyfuncs.c +1 -1
- data/ext/pg_query/src_backend_nodes_equalfuncs.c +1 -1
- data/ext/pg_query/src_backend_nodes_extensible.c +1 -1
- data/ext/pg_query/src_backend_nodes_list.c +3 -7
- data/ext/pg_query/src_backend_nodes_makefuncs.c +59 -20
- data/ext/pg_query/src_backend_nodes_nodeFuncs.c +109 -2
- data/ext/pg_query/src_backend_nodes_value.c +1 -1
- data/ext/pg_query/src_backend_parser_gram.c +34490 -32135
- data/ext/pg_query/src_backend_parser_parser.c +8 -8
- data/ext/pg_query/src_backend_parser_scan.c +5637 -3028
- data/ext/pg_query/src_backend_parser_scansup.c +2 -1
- data/ext/pg_query/src_backend_storage_ipc_ipc.c +1 -1
- data/ext/pg_query/src_backend_tcop_postgres.c +34 -10
- data/ext/pg_query/src_backend_utils_activity_pgstat_database.c +2 -2
- data/ext/pg_query/src_backend_utils_adt_datum.c +8 -6
- data/ext/pg_query/src_backend_utils_adt_expandeddatum.c +1 -1
- data/ext/pg_query/src_backend_utils_adt_format_type.c +1 -1
- data/ext/pg_query/src_backend_utils_adt_numutils.c +4 -5
- data/ext/pg_query/src_backend_utils_adt_ruleutils.c +101 -28
- data/ext/pg_query/src_backend_utils_error_assert.c +1 -1
- data/ext/pg_query/src_backend_utils_error_elog.c +60 -190
- data/ext/pg_query/src_backend_utils_fmgr_fmgr.c +4 -2
- data/ext/pg_query/src_backend_utils_init_globals.c +16 -4
- data/ext/pg_query/src_backend_utils_mb_mbutils.c +19 -81
- data/ext/pg_query/src_backend_utils_misc_guc_tables.c +16 -8
- data/ext/pg_query/src_backend_utils_mmgr_alignedalloc.c +8 -5
- data/ext/pg_query/src_backend_utils_mmgr_aset.c +308 -238
- data/ext/pg_query/src_backend_utils_mmgr_bump.c +728 -0
- data/ext/pg_query/src_backend_utils_mmgr_generation.c +273 -197
- data/ext/pg_query/src_backend_utils_mmgr_mcxt.c +270 -215
- data/ext/pg_query/src_backend_utils_mmgr_slab.c +154 -96
- data/ext/pg_query/src_common_encnames.c +43 -44
- data/ext/pg_query/src_common_hashfn.c +1 -1
- data/ext/pg_query/src_common_keywords.c +1 -1
- data/ext/pg_query/src_common_kwlist_d.h +511 -466
- data/ext/pg_query/src_common_kwlookup.c +1 -1
- data/ext/pg_query/src_common_psprintf.c +3 -3
- data/ext/pg_query/src_common_stringinfo.c +18 -1
- data/ext/pg_query/src_common_wchar.c +45 -108
- data/ext/pg_query/src_pl_plpgsql_src_pl_comp.c +99 -5
- data/ext/pg_query/src_pl_plpgsql_src_pl_funcs.c +1 -1
- data/ext/pg_query/src_pl_plpgsql_src_pl_gram.c +242 -143
- data/ext/pg_query/src_pl_plpgsql_src_pl_handler.c +1 -1
- data/ext/pg_query/src_pl_plpgsql_src_pl_reserved_kwlist_d.h +1 -1
- data/ext/pg_query/src_pl_plpgsql_src_pl_scanner.c +19 -1
- data/ext/pg_query/src_pl_plpgsql_src_pl_unreserved_kwlist_d.h +1 -1
- data/ext/pg_query/src_port_pg_bitutils.c +251 -32
- data/ext/pg_query/src_port_pgstrcasecmp.c +29 -1
- data/ext/pg_query/src_port_snprintf.c +4 -4
- data/ext/pg_query/src_port_strerror.c +1 -3
- data/ext/pg_query/src_port_strlcpy.c +79 -0
- data/lib/pg_query/fingerprint.rb +2 -3
- data/lib/pg_query/node.rb +16 -11
- data/lib/pg_query/param_refs.rb +1 -1
- data/lib/pg_query/parse.rb +1 -1
- data/lib/pg_query/pg_query_pb.rb +26 -3
- data/lib/pg_query/treewalker.rb +52 -12
- data/lib/pg_query/truncate.rb +1 -1
- data/lib/pg_query/version.rb +1 -1
- metadata +444 -400
- data/ext/pg_query/guc-file.c +0 -0
- data/ext/pg_query/include/access/amapi.h +0 -292
- data/ext/pg_query/include/access/attmap.h +0 -54
- data/ext/pg_query/include/access/attnum.h +0 -64
- data/ext/pg_query/include/access/clog.h +0 -63
- data/ext/pg_query/include/access/commit_ts.h +0 -74
- data/ext/pg_query/include/access/detoast.h +0 -82
- data/ext/pg_query/include/access/genam.h +0 -233
- data/ext/pg_query/include/access/gin.h +0 -91
- data/ext/pg_query/include/access/htup.h +0 -89
- data/ext/pg_query/include/access/htup_details.h +0 -811
- data/ext/pg_query/include/access/itup.h +0 -170
- data/ext/pg_query/include/access/parallel.h +0 -82
- data/ext/pg_query/include/access/printtup.h +0 -35
- data/ext/pg_query/include/access/relation.h +0 -28
- data/ext/pg_query/include/access/relscan.h +0 -191
- data/ext/pg_query/include/access/rmgrlist.h +0 -49
- data/ext/pg_query/include/access/sdir.h +0 -67
- data/ext/pg_query/include/access/skey.h +0 -151
- data/ext/pg_query/include/access/stratnum.h +0 -85
- data/ext/pg_query/include/access/sysattr.h +0 -29
- data/ext/pg_query/include/access/table.h +0 -28
- data/ext/pg_query/include/access/tableam.h +0 -2100
- data/ext/pg_query/include/access/toast_compression.h +0 -73
- data/ext/pg_query/include/access/transam.h +0 -375
- data/ext/pg_query/include/access/tsmapi.h +0 -82
- data/ext/pg_query/include/access/tupconvert.h +0 -54
- data/ext/pg_query/include/access/tupdesc.h +0 -154
- data/ext/pg_query/include/access/tupmacs.h +0 -207
- data/ext/pg_query/include/access/twophase.h +0 -65
- data/ext/pg_query/include/access/xact.h +0 -530
- data/ext/pg_query/include/access/xlog.h +0 -302
- data/ext/pg_query/include/access/xlog_internal.h +0 -404
- data/ext/pg_query/include/access/xlogbackup.h +0 -41
- data/ext/pg_query/include/access/xlogdefs.h +0 -82
- data/ext/pg_query/include/access/xlogprefetcher.h +0 -55
- data/ext/pg_query/include/access/xlogreader.h +0 -444
- data/ext/pg_query/include/access/xlogrecord.h +0 -248
- data/ext/pg_query/include/access/xlogrecovery.h +0 -158
- data/ext/pg_query/include/archive/archive_module.h +0 -59
- data/ext/pg_query/include/c.h +0 -1379
- data/ext/pg_query/include/catalog/catalog.h +0 -45
- data/ext/pg_query/include/catalog/catversion.h +0 -62
- data/ext/pg_query/include/catalog/dependency.h +0 -270
- data/ext/pg_query/include/catalog/genbki.h +0 -143
- data/ext/pg_query/include/catalog/index.h +0 -214
- data/ext/pg_query/include/catalog/indexing.h +0 -54
- data/ext/pg_query/include/catalog/namespace.h +0 -190
- data/ext/pg_query/include/catalog/objectaccess.h +0 -267
- data/ext/pg_query/include/catalog/objectaddress.h +0 -89
- data/ext/pg_query/include/catalog/pg_aggregate.h +0 -180
- data/ext/pg_query/include/catalog/pg_aggregate_d.h +0 -78
- data/ext/pg_query/include/catalog/pg_am.h +0 -63
- data/ext/pg_query/include/catalog/pg_am_d.h +0 -47
- data/ext/pg_query/include/catalog/pg_attribute.h +0 -223
- data/ext/pg_query/include/catalog/pg_attribute_d.h +0 -62
- data/ext/pg_query/include/catalog/pg_authid.h +0 -63
- data/ext/pg_query/include/catalog/pg_authid_d.h +0 -59
- data/ext/pg_query/include/catalog/pg_class.h +0 -230
- data/ext/pg_query/include/catalog/pg_class_d.h +0 -132
- data/ext/pg_query/include/catalog/pg_collation.h +0 -100
- data/ext/pg_query/include/catalog/pg_collation_d.h +0 -63
- data/ext/pg_query/include/catalog/pg_constraint.h +0 -273
- data/ext/pg_query/include/catalog/pg_constraint_d.h +0 -73
- data/ext/pg_query/include/catalog/pg_control.h +0 -258
- data/ext/pg_query/include/catalog/pg_conversion.h +0 -75
- data/ext/pg_query/include/catalog/pg_conversion_d.h +0 -38
- data/ext/pg_query/include/catalog/pg_database.h +0 -124
- data/ext/pg_query/include/catalog/pg_database_d.h +0 -52
- data/ext/pg_query/include/catalog/pg_depend.h +0 -77
- data/ext/pg_query/include/catalog/pg_depend_d.h +0 -36
- data/ext/pg_query/include/catalog/pg_event_trigger.h +0 -57
- data/ext/pg_query/include/catalog/pg_event_trigger_d.h +0 -36
- data/ext/pg_query/include/catalog/pg_index.h +0 -90
- data/ext/pg_query/include/catalog/pg_index_d.h +0 -59
- data/ext/pg_query/include/catalog/pg_language.h +0 -72
- data/ext/pg_query/include/catalog/pg_language_d.h +0 -41
- data/ext/pg_query/include/catalog/pg_namespace.h +0 -64
- data/ext/pg_query/include/catalog/pg_namespace_d.h +0 -36
- data/ext/pg_query/include/catalog/pg_opclass.h +0 -88
- data/ext/pg_query/include/catalog/pg_opclass_d.h +0 -51
- data/ext/pg_query/include/catalog/pg_operator.h +0 -107
- data/ext/pg_query/include/catalog/pg_operator_d.h +0 -142
- data/ext/pg_query/include/catalog/pg_opfamily.h +0 -64
- data/ext/pg_query/include/catalog/pg_opfamily_d.h +0 -51
- data/ext/pg_query/include/catalog/pg_partitioned_table.h +0 -74
- data/ext/pg_query/include/catalog/pg_partitioned_table_d.h +0 -36
- data/ext/pg_query/include/catalog/pg_proc.h +0 -220
- data/ext/pg_query/include/catalog/pg_proc_d.h +0 -101
- data/ext/pg_query/include/catalog/pg_publication.h +0 -158
- data/ext/pg_query/include/catalog/pg_publication_d.h +0 -38
- data/ext/pg_query/include/catalog/pg_replication_origin.h +0 -62
- data/ext/pg_query/include/catalog/pg_replication_origin_d.h +0 -33
- data/ext/pg_query/include/catalog/pg_statistic.h +0 -282
- data/ext/pg_query/include/catalog/pg_statistic_d.h +0 -195
- data/ext/pg_query/include/catalog/pg_statistic_ext.h +0 -88
- data/ext/pg_query/include/catalog/pg_statistic_ext_d.h +0 -45
- data/ext/pg_query/include/catalog/pg_transform.h +0 -48
- data/ext/pg_query/include/catalog/pg_transform_d.h +0 -34
- data/ext/pg_query/include/catalog/pg_trigger.h +0 -153
- data/ext/pg_query/include/catalog/pg_trigger_d.h +0 -109
- data/ext/pg_query/include/catalog/pg_ts_config.h +0 -53
- data/ext/pg_query/include/catalog/pg_ts_config_d.h +0 -34
- data/ext/pg_query/include/catalog/pg_ts_dict.h +0 -59
- data/ext/pg_query/include/catalog/pg_ts_dict_d.h +0 -35
- data/ext/pg_query/include/catalog/pg_ts_parser.h +0 -60
- data/ext/pg_query/include/catalog/pg_ts_parser_d.h +0 -37
- data/ext/pg_query/include/catalog/pg_ts_template.h +0 -51
- data/ext/pg_query/include/catalog/pg_ts_template_d.h +0 -34
- data/ext/pg_query/include/catalog/pg_type.h +0 -404
- data/ext/pg_query/include/catalog/pg_type_d.h +0 -324
- data/ext/pg_query/include/catalog/storage.h +0 -50
- data/ext/pg_query/include/commands/async.h +0 -53
- data/ext/pg_query/include/commands/dbcommands.h +0 -37
- data/ext/pg_query/include/commands/defrem.h +0 -161
- data/ext/pg_query/include/commands/event_trigger.h +0 -88
- data/ext/pg_query/include/commands/explain.h +0 -129
- data/ext/pg_query/include/commands/prepare.h +0 -61
- data/ext/pg_query/include/commands/tablespace.h +0 -69
- data/ext/pg_query/include/commands/trigger.h +0 -288
- data/ext/pg_query/include/commands/vacuum.h +0 -386
- data/ext/pg_query/include/common/cryptohash.h +0 -39
- data/ext/pg_query/include/common/file_perm.h +0 -56
- data/ext/pg_query/include/common/hashfn.h +0 -104
- data/ext/pg_query/include/common/int.h +0 -437
- data/ext/pg_query/include/common/ip.h +0 -33
- data/ext/pg_query/include/common/keywords.h +0 -29
- data/ext/pg_query/include/common/kwlookup.h +0 -44
- data/ext/pg_query/include/common/pg_prng.h +0 -61
- data/ext/pg_query/include/common/relpath.h +0 -97
- data/ext/pg_query/include/common/scram-common.h +0 -70
- data/ext/pg_query/include/common/sha2.h +0 -32
- data/ext/pg_query/include/common/string.h +0 -44
- data/ext/pg_query/include/common/unicode_east_asian_fw_table.h +0 -125
- data/ext/pg_query/include/copyfuncs.funcs.c +0 -5013
- data/ext/pg_query/include/copyfuncs.switch.c +0 -938
- data/ext/pg_query/include/datatype/timestamp.h +0 -243
- data/ext/pg_query/include/equalfuncs.funcs.c +0 -3097
- data/ext/pg_query/include/equalfuncs.switch.c +0 -785
- data/ext/pg_query/include/executor/execdesc.h +0 -70
- data/ext/pg_query/include/executor/executor.h +0 -680
- data/ext/pg_query/include/executor/functions.h +0 -55
- data/ext/pg_query/include/executor/instrument.h +0 -118
- data/ext/pg_query/include/executor/spi.h +0 -213
- data/ext/pg_query/include/executor/tablefunc.h +0 -67
- data/ext/pg_query/include/executor/tuptable.h +0 -494
- data/ext/pg_query/include/fmgr.h +0 -800
- data/ext/pg_query/include/foreign/fdwapi.h +0 -294
- data/ext/pg_query/include/funcapi.h +0 -360
- data/ext/pg_query/include/gram.h +0 -1127
- data/ext/pg_query/include/gramparse.h +0 -75
- data/ext/pg_query/include/jit/jit.h +0 -105
- data/ext/pg_query/include/kwlist_d.h +0 -1119
- data/ext/pg_query/include/lib/dshash.h +0 -115
- data/ext/pg_query/include/lib/ilist.h +0 -1159
- data/ext/pg_query/include/lib/pairingheap.h +0 -102
- data/ext/pg_query/include/lib/simplehash.h +0 -1184
- data/ext/pg_query/include/lib/sort_template.h +0 -432
- data/ext/pg_query/include/lib/stringinfo.h +0 -161
- data/ext/pg_query/include/libpq/auth.h +0 -37
- data/ext/pg_query/include/libpq/crypt.h +0 -47
- data/ext/pg_query/include/libpq/hba.h +0 -186
- data/ext/pg_query/include/libpq/libpq-be.h +0 -354
- data/ext/pg_query/include/libpq/libpq.h +0 -144
- data/ext/pg_query/include/libpq/pqcomm.h +0 -163
- data/ext/pg_query/include/libpq/pqformat.h +0 -210
- data/ext/pg_query/include/libpq/pqsignal.h +0 -54
- data/ext/pg_query/include/libpq/sasl.h +0 -136
- data/ext/pg_query/include/libpq/scram.h +0 -37
- data/ext/pg_query/include/mb/pg_wchar.h +0 -772
- data/ext/pg_query/include/mb/stringinfo_mb.h +0 -24
- data/ext/pg_query/include/miscadmin.h +0 -507
- data/ext/pg_query/include/nodes/bitmapset.h +0 -126
- data/ext/pg_query/include/nodes/execnodes.h +0 -2768
- data/ext/pg_query/include/nodes/extensible.h +0 -164
- data/ext/pg_query/include/nodes/lockoptions.h +0 -61
- data/ext/pg_query/include/nodes/makefuncs.h +0 -121
- data/ext/pg_query/include/nodes/memnodes.h +0 -113
- data/ext/pg_query/include/nodes/miscnodes.h +0 -56
- data/ext/pg_query/include/nodes/nodeFuncs.h +0 -222
- data/ext/pg_query/include/nodes/nodes.h +0 -446
- data/ext/pg_query/include/nodes/nodetags.h +0 -471
- data/ext/pg_query/include/nodes/params.h +0 -170
- data/ext/pg_query/include/nodes/parsenodes.h +0 -4050
- data/ext/pg_query/include/nodes/pathnodes.h +0 -3384
- data/ext/pg_query/include/nodes/pg_list.h +0 -635
- data/ext/pg_query/include/nodes/plannodes.h +0 -1592
- data/ext/pg_query/include/nodes/primnodes.h +0 -2041
- data/ext/pg_query/include/nodes/print.h +0 -34
- data/ext/pg_query/include/nodes/queryjumble.h +0 -86
- data/ext/pg_query/include/nodes/replnodes.h +0 -111
- data/ext/pg_query/include/nodes/supportnodes.h +0 -346
- data/ext/pg_query/include/nodes/tidbitmap.h +0 -75
- data/ext/pg_query/include/nodes/value.h +0 -90
- data/ext/pg_query/include/optimizer/cost.h +0 -215
- data/ext/pg_query/include/optimizer/geqo.h +0 -90
- data/ext/pg_query/include/optimizer/geqo_gene.h +0 -45
- data/ext/pg_query/include/optimizer/optimizer.h +0 -202
- data/ext/pg_query/include/optimizer/paths.h +0 -266
- data/ext/pg_query/include/optimizer/planmain.h +0 -117
- data/ext/pg_query/include/parser/analyze.h +0 -64
- data/ext/pg_query/include/parser/kwlist.h +0 -498
- data/ext/pg_query/include/parser/parse_agg.h +0 -65
- data/ext/pg_query/include/parser/parse_coerce.h +0 -102
- data/ext/pg_query/include/parser/parse_expr.h +0 -25
- data/ext/pg_query/include/parser/parse_func.h +0 -74
- data/ext/pg_query/include/parser/parse_node.h +0 -357
- data/ext/pg_query/include/parser/parse_oper.h +0 -65
- data/ext/pg_query/include/parser/parse_relation.h +0 -129
- data/ext/pg_query/include/parser/parse_type.h +0 -61
- data/ext/pg_query/include/parser/parser.h +0 -68
- data/ext/pg_query/include/parser/parsetree.h +0 -61
- data/ext/pg_query/include/parser/scanner.h +0 -152
- data/ext/pg_query/include/parser/scansup.h +0 -27
- data/ext/pg_query/include/partitioning/partdefs.h +0 -26
- data/ext/pg_query/include/pg_config.h +0 -843
- data/ext/pg_query/include/pg_config_manual.h +0 -372
- data/ext/pg_query/include/pg_config_os.h +0 -8
- data/ext/pg_query/include/pg_getopt.h +0 -56
- data/ext/pg_query/include/pg_trace.h +0 -17
- data/ext/pg_query/include/pgstat.h +0 -778
- data/ext/pg_query/include/pgtime.h +0 -94
- data/ext/pg_query/include/pl_gram.h +0 -385
- data/ext/pg_query/include/pl_reserved_kwlist.h +0 -52
- data/ext/pg_query/include/pl_reserved_kwlist_d.h +0 -114
- data/ext/pg_query/include/pl_unreserved_kwlist.h +0 -112
- data/ext/pg_query/include/pl_unreserved_kwlist_d.h +0 -246
- data/ext/pg_query/include/plerrcodes.h +0 -998
- data/ext/pg_query/include/plpgsql.h +0 -1340
- data/ext/pg_query/include/port/atomics/arch-arm.h +0 -32
- data/ext/pg_query/include/port/atomics/arch-ppc.h +0 -254
- data/ext/pg_query/include/port/atomics/arch-x86.h +0 -252
- data/ext/pg_query/include/port/atomics/fallback.h +0 -170
- data/ext/pg_query/include/port/atomics/generic-gcc.h +0 -286
- data/ext/pg_query/include/port/atomics/generic.h +0 -401
- data/ext/pg_query/include/port/atomics.h +0 -519
- data/ext/pg_query/include/port/pg_bitutils.h +0 -339
- data/ext/pg_query/include/port/pg_bswap.h +0 -161
- data/ext/pg_query/include/port/pg_crc32c.h +0 -101
- data/ext/pg_query/include/port/simd.h +0 -375
- data/ext/pg_query/include/port.h +0 -520
- data/ext/pg_query/include/portability/instr_time.h +0 -197
- data/ext/pg_query/include/postgres.h +0 -579
- data/ext/pg_query/include/postmaster/autovacuum.h +0 -80
- data/ext/pg_query/include/postmaster/auxprocess.h +0 -20
- data/ext/pg_query/include/postmaster/bgworker.h +0 -162
- data/ext/pg_query/include/postmaster/bgworker_internals.h +0 -64
- data/ext/pg_query/include/postmaster/bgwriter.h +0 -45
- data/ext/pg_query/include/postmaster/fork_process.h +0 -17
- data/ext/pg_query/include/postmaster/interrupt.h +0 -32
- data/ext/pg_query/include/postmaster/pgarch.h +0 -36
- data/ext/pg_query/include/postmaster/postmaster.h +0 -81
- data/ext/pg_query/include/postmaster/startup.h +0 -41
- data/ext/pg_query/include/postmaster/syslogger.h +0 -103
- data/ext/pg_query/include/postmaster/walwriter.h +0 -23
- data/ext/pg_query/include/regex/regex.h +0 -189
- data/ext/pg_query/include/replication/logicallauncher.h +0 -34
- data/ext/pg_query/include/replication/logicalproto.h +0 -274
- data/ext/pg_query/include/replication/logicalworker.h +0 -32
- data/ext/pg_query/include/replication/origin.h +0 -73
- data/ext/pg_query/include/replication/reorderbuffer.h +0 -753
- data/ext/pg_query/include/replication/slot.h +0 -249
- data/ext/pg_query/include/replication/syncrep.h +0 -109
- data/ext/pg_query/include/replication/walreceiver.h +0 -478
- data/ext/pg_query/include/replication/walsender.h +0 -74
- data/ext/pg_query/include/rewrite/prs2lock.h +0 -46
- data/ext/pg_query/include/rewrite/rewriteHandler.h +0 -35
- data/ext/pg_query/include/rewrite/rewriteManip.h +0 -96
- data/ext/pg_query/include/rewrite/rewriteSupport.h +0 -26
- data/ext/pg_query/include/src_backend_nodes_copyfuncs.funcs.c +0 -5321
- data/ext/pg_query/include/src_backend_nodes_equalfuncs.funcs.c +0 -3354
- data/ext/pg_query/include/storage/backendid.h +0 -37
- data/ext/pg_query/include/storage/block.h +0 -108
- data/ext/pg_query/include/storage/buf.h +0 -46
- data/ext/pg_query/include/storage/bufmgr.h +0 -393
- data/ext/pg_query/include/storage/bufpage.h +0 -510
- data/ext/pg_query/include/storage/condition_variable.h +0 -73
- data/ext/pg_query/include/storage/dsm.h +0 -61
- data/ext/pg_query/include/storage/dsm_impl.h +0 -79
- data/ext/pg_query/include/storage/fd.h +0 -202
- data/ext/pg_query/include/storage/fileset.h +0 -40
- data/ext/pg_query/include/storage/ipc.h +0 -84
- data/ext/pg_query/include/storage/item.h +0 -19
- data/ext/pg_query/include/storage/itemid.h +0 -184
- data/ext/pg_query/include/storage/itemptr.h +0 -245
- data/ext/pg_query/include/storage/large_object.h +0 -100
- data/ext/pg_query/include/storage/latch.h +0 -194
- data/ext/pg_query/include/storage/lmgr.h +0 -120
- data/ext/pg_query/include/storage/lock.h +0 -624
- data/ext/pg_query/include/storage/lockdefs.h +0 -59
- data/ext/pg_query/include/storage/lwlock.h +0 -220
- data/ext/pg_query/include/storage/lwlocknames.h +0 -50
- data/ext/pg_query/include/storage/off.h +0 -57
- data/ext/pg_query/include/storage/pg_sema.h +0 -61
- data/ext/pg_query/include/storage/pg_shmem.h +0 -92
- data/ext/pg_query/include/storage/pmsignal.h +0 -105
- data/ext/pg_query/include/storage/predicate.h +0 -87
- data/ext/pg_query/include/storage/proc.h +0 -466
- data/ext/pg_query/include/storage/procarray.h +0 -99
- data/ext/pg_query/include/storage/proclist_types.h +0 -51
- data/ext/pg_query/include/storage/procsignal.h +0 -73
- data/ext/pg_query/include/storage/relfilelocator.h +0 -99
- data/ext/pg_query/include/storage/s_lock.h +0 -867
- data/ext/pg_query/include/storage/sharedfileset.h +0 -37
- data/ext/pg_query/include/storage/shm_mq.h +0 -86
- data/ext/pg_query/include/storage/shm_toc.h +0 -58
- data/ext/pg_query/include/storage/shmem.h +0 -59
- data/ext/pg_query/include/storage/sinval.h +0 -153
- data/ext/pg_query/include/storage/sinvaladt.h +0 -45
- data/ext/pg_query/include/storage/smgr.h +0 -113
- data/ext/pg_query/include/storage/spin.h +0 -77
- data/ext/pg_query/include/storage/standby.h +0 -99
- data/ext/pg_query/include/storage/standbydefs.h +0 -74
- data/ext/pg_query/include/storage/sync.h +0 -66
- data/ext/pg_query/include/tcop/cmdtag.h +0 -63
- data/ext/pg_query/include/tcop/cmdtaglist.h +0 -218
- data/ext/pg_query/include/tcop/deparse_utility.h +0 -108
- data/ext/pg_query/include/tcop/dest.h +0 -147
- data/ext/pg_query/include/tcop/fastpath.h +0 -20
- data/ext/pg_query/include/tcop/pquery.h +0 -51
- data/ext/pg_query/include/tcop/tcopprot.h +0 -94
- data/ext/pg_query/include/tcop/utility.h +0 -112
- data/ext/pg_query/include/tsearch/ts_cache.h +0 -96
- data/ext/pg_query/include/utils/acl.h +0 -278
- data/ext/pg_query/include/utils/aclchk_internal.h +0 -45
- data/ext/pg_query/include/utils/array.h +0 -482
- data/ext/pg_query/include/utils/backend_progress.h +0 -45
- data/ext/pg_query/include/utils/backend_status.h +0 -342
- data/ext/pg_query/include/utils/builtins.h +0 -136
- data/ext/pg_query/include/utils/bytea.h +0 -28
- data/ext/pg_query/include/utils/catcache.h +0 -231
- data/ext/pg_query/include/utils/date.h +0 -118
- data/ext/pg_query/include/utils/datetime.h +0 -364
- data/ext/pg_query/include/utils/datum.h +0 -76
- data/ext/pg_query/include/utils/dsa.h +0 -127
- data/ext/pg_query/include/utils/elog.h +0 -545
- data/ext/pg_query/include/utils/errcodes.h +0 -354
- data/ext/pg_query/include/utils/expandeddatum.h +0 -170
- data/ext/pg_query/include/utils/expandedrecord.h +0 -241
- data/ext/pg_query/include/utils/float.h +0 -357
- data/ext/pg_query/include/utils/fmgroids.h +0 -3314
- data/ext/pg_query/include/utils/fmgrprotos.h +0 -2871
- data/ext/pg_query/include/utils/fmgrtab.h +0 -49
- data/ext/pg_query/include/utils/guc.h +0 -442
- data/ext/pg_query/include/utils/guc_hooks.h +0 -163
- data/ext/pg_query/include/utils/guc_tables.h +0 -322
- data/ext/pg_query/include/utils/hsearch.h +0 -153
- data/ext/pg_query/include/utils/inval.h +0 -68
- data/ext/pg_query/include/utils/logtape.h +0 -77
- data/ext/pg_query/include/utils/lsyscache.h +0 -212
- data/ext/pg_query/include/utils/memdebug.h +0 -82
- data/ext/pg_query/include/utils/memutils.h +0 -186
- data/ext/pg_query/include/utils/memutils_internal.h +0 -136
- data/ext/pg_query/include/utils/memutils_memorychunk.h +0 -237
- data/ext/pg_query/include/utils/numeric.h +0 -105
- data/ext/pg_query/include/utils/palloc.h +0 -165
- data/ext/pg_query/include/utils/partcache.h +0 -103
- data/ext/pg_query/include/utils/pg_locale.h +0 -135
- data/ext/pg_query/include/utils/pgstat_internal.h +0 -814
- data/ext/pg_query/include/utils/pidfile.h +0 -56
- data/ext/pg_query/include/utils/plancache.h +0 -236
- data/ext/pg_query/include/utils/portal.h +0 -252
- data/ext/pg_query/include/utils/queryenvironment.h +0 -74
- data/ext/pg_query/include/utils/regproc.h +0 -39
- data/ext/pg_query/include/utils/rel.h +0 -712
- data/ext/pg_query/include/utils/relcache.h +0 -158
- data/ext/pg_query/include/utils/reltrigger.h +0 -81
- data/ext/pg_query/include/utils/resowner.h +0 -86
- data/ext/pg_query/include/utils/ruleutils.h +0 -52
- data/ext/pg_query/include/utils/sharedtuplestore.h +0 -61
- data/ext/pg_query/include/utils/snapmgr.h +0 -181
- data/ext/pg_query/include/utils/snapshot.h +0 -219
- data/ext/pg_query/include/utils/sortsupport.h +0 -391
- data/ext/pg_query/include/utils/syscache.h +0 -227
- data/ext/pg_query/include/utils/timeout.h +0 -95
- data/ext/pg_query/include/utils/timestamp.h +0 -147
- data/ext/pg_query/include/utils/tuplesort.h +0 -445
- data/ext/pg_query/include/utils/tuplestore.h +0 -91
- data/ext/pg_query/include/utils/typcache.h +0 -209
- data/ext/pg_query/include/utils/varlena.h +0 -53
- data/ext/pg_query/include/utils/wait_event.h +0 -294
- data/ext/pg_query/include/utils/xml.h +0 -94
- data/ext/pg_query/include/varatt.h +0 -358
- data/ext/pg_query/src_backend_postmaster_postmaster.c +0 -2220
- data/ext/pg_query/src_port_strnlen.c +0 -39
- /data/ext/pg_query/include/{access → postgres/access}/rmgr.h +0 -0
- /data/ext/pg_query/include/{commands → postgres/commands}/user.h +0 -0
- /data/ext/pg_query/include/{common → postgres/common}/unicode_nonspacing_table.h +0 -0
- /data/ext/pg_query/include/{pg_config_ext.h → postgres/pg_config_ext.h} +0 -0
- /data/ext/pg_query/include/{postgres_ext.h → postgres/postgres_ext.h} +0 -0
- /data/ext/pg_query/include/{utils → postgres/utils}/probes.h +0 -0
- /data/ext/pg_query/include/{utils → postgres/utils}/ps_status.h +0 -0
data/ext/pg_query/include/gram.h
DELETED
@@ -1,1127 +0,0 @@
|
|
1
|
-
/* A Bison parser, made by GNU Bison 2.3. */
|
2
|
-
|
3
|
-
/* Skeleton interface for Bison's Yacc-like parsers in C
|
4
|
-
|
5
|
-
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
6
|
-
Free Software Foundation, Inc.
|
7
|
-
|
8
|
-
This program is free software; you can redistribute it and/or modify
|
9
|
-
it under the terms of the GNU General Public License as published by
|
10
|
-
the Free Software Foundation; either version 2, or (at your option)
|
11
|
-
any later version.
|
12
|
-
|
13
|
-
This program is distributed in the hope that it will be useful,
|
14
|
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15
|
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16
|
-
GNU General Public License for more details.
|
17
|
-
|
18
|
-
You should have received a copy of the GNU General Public License
|
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. */
|
22
|
-
|
23
|
-
/* As a special exception, you may create a larger work that contains
|
24
|
-
part or all of the Bison parser skeleton and distribute that work
|
25
|
-
under terms of your choice, so long as that work isn't itself a
|
26
|
-
parser generator using the skeleton or a modified version thereof
|
27
|
-
as a parser skeleton. Alternatively, if you modify or redistribute
|
28
|
-
the parser skeleton itself, you may (at your option) remove this
|
29
|
-
special exception, which will cause the skeleton and the resulting
|
30
|
-
Bison output files to be licensed under the GNU General Public
|
31
|
-
License without this special exception.
|
32
|
-
|
33
|
-
This special exception was added by the Free Software Foundation in
|
34
|
-
version 2.2 of Bison. */
|
35
|
-
|
36
|
-
/* Tokens. */
|
37
|
-
#ifndef YYTOKENTYPE
|
38
|
-
# define YYTOKENTYPE
|
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
|
-
UIDENT = 259,
|
44
|
-
FCONST = 260,
|
45
|
-
SCONST = 261,
|
46
|
-
USCONST = 262,
|
47
|
-
BCONST = 263,
|
48
|
-
XCONST = 264,
|
49
|
-
Op = 265,
|
50
|
-
ICONST = 266,
|
51
|
-
PARAM = 267,
|
52
|
-
TYPECAST = 268,
|
53
|
-
DOT_DOT = 269,
|
54
|
-
COLON_EQUALS = 270,
|
55
|
-
EQUALS_GREATER = 271,
|
56
|
-
LESS_EQUALS = 272,
|
57
|
-
GREATER_EQUALS = 273,
|
58
|
-
NOT_EQUALS = 274,
|
59
|
-
SQL_COMMENT = 275,
|
60
|
-
C_COMMENT = 276,
|
61
|
-
ABORT_P = 277,
|
62
|
-
ABSENT = 278,
|
63
|
-
ABSOLUTE_P = 279,
|
64
|
-
ACCESS = 280,
|
65
|
-
ACTION = 281,
|
66
|
-
ADD_P = 282,
|
67
|
-
ADMIN = 283,
|
68
|
-
AFTER = 284,
|
69
|
-
AGGREGATE = 285,
|
70
|
-
ALL = 286,
|
71
|
-
ALSO = 287,
|
72
|
-
ALTER = 288,
|
73
|
-
ALWAYS = 289,
|
74
|
-
ANALYSE = 290,
|
75
|
-
ANALYZE = 291,
|
76
|
-
AND = 292,
|
77
|
-
ANY = 293,
|
78
|
-
ARRAY = 294,
|
79
|
-
AS = 295,
|
80
|
-
ASC = 296,
|
81
|
-
ASENSITIVE = 297,
|
82
|
-
ASSERTION = 298,
|
83
|
-
ASSIGNMENT = 299,
|
84
|
-
ASYMMETRIC = 300,
|
85
|
-
ATOMIC = 301,
|
86
|
-
AT = 302,
|
87
|
-
ATTACH = 303,
|
88
|
-
ATTRIBUTE = 304,
|
89
|
-
AUTHORIZATION = 305,
|
90
|
-
BACKWARD = 306,
|
91
|
-
BEFORE = 307,
|
92
|
-
BEGIN_P = 308,
|
93
|
-
BETWEEN = 309,
|
94
|
-
BIGINT = 310,
|
95
|
-
BINARY = 311,
|
96
|
-
BIT = 312,
|
97
|
-
BOOLEAN_P = 313,
|
98
|
-
BOTH = 314,
|
99
|
-
BREADTH = 315,
|
100
|
-
BY = 316,
|
101
|
-
CACHE = 317,
|
102
|
-
CALL = 318,
|
103
|
-
CALLED = 319,
|
104
|
-
CASCADE = 320,
|
105
|
-
CASCADED = 321,
|
106
|
-
CASE = 322,
|
107
|
-
CAST = 323,
|
108
|
-
CATALOG_P = 324,
|
109
|
-
CHAIN = 325,
|
110
|
-
CHAR_P = 326,
|
111
|
-
CHARACTER = 327,
|
112
|
-
CHARACTERISTICS = 328,
|
113
|
-
CHECK = 329,
|
114
|
-
CHECKPOINT = 330,
|
115
|
-
CLASS = 331,
|
116
|
-
CLOSE = 332,
|
117
|
-
CLUSTER = 333,
|
118
|
-
COALESCE = 334,
|
119
|
-
COLLATE = 335,
|
120
|
-
COLLATION = 336,
|
121
|
-
COLUMN = 337,
|
122
|
-
COLUMNS = 338,
|
123
|
-
COMMENT = 339,
|
124
|
-
COMMENTS = 340,
|
125
|
-
COMMIT = 341,
|
126
|
-
COMMITTED = 342,
|
127
|
-
COMPRESSION = 343,
|
128
|
-
CONCURRENTLY = 344,
|
129
|
-
CONFIGURATION = 345,
|
130
|
-
CONFLICT = 346,
|
131
|
-
CONNECTION = 347,
|
132
|
-
CONSTRAINT = 348,
|
133
|
-
CONSTRAINTS = 349,
|
134
|
-
CONTENT_P = 350,
|
135
|
-
CONTINUE_P = 351,
|
136
|
-
CONVERSION_P = 352,
|
137
|
-
COPY = 353,
|
138
|
-
COST = 354,
|
139
|
-
CREATE = 355,
|
140
|
-
CROSS = 356,
|
141
|
-
CSV = 357,
|
142
|
-
CUBE = 358,
|
143
|
-
CURRENT_P = 359,
|
144
|
-
CURRENT_CATALOG = 360,
|
145
|
-
CURRENT_DATE = 361,
|
146
|
-
CURRENT_ROLE = 362,
|
147
|
-
CURRENT_SCHEMA = 363,
|
148
|
-
CURRENT_TIME = 364,
|
149
|
-
CURRENT_TIMESTAMP = 365,
|
150
|
-
CURRENT_USER = 366,
|
151
|
-
CURSOR = 367,
|
152
|
-
CYCLE = 368,
|
153
|
-
DATA_P = 369,
|
154
|
-
DATABASE = 370,
|
155
|
-
DAY_P = 371,
|
156
|
-
DEALLOCATE = 372,
|
157
|
-
DEC = 373,
|
158
|
-
DECIMAL_P = 374,
|
159
|
-
DECLARE = 375,
|
160
|
-
DEFAULT = 376,
|
161
|
-
DEFAULTS = 377,
|
162
|
-
DEFERRABLE = 378,
|
163
|
-
DEFERRED = 379,
|
164
|
-
DEFINER = 380,
|
165
|
-
DELETE_P = 381,
|
166
|
-
DELIMITER = 382,
|
167
|
-
DELIMITERS = 383,
|
168
|
-
DEPENDS = 384,
|
169
|
-
DEPTH = 385,
|
170
|
-
DESC = 386,
|
171
|
-
DETACH = 387,
|
172
|
-
DICTIONARY = 388,
|
173
|
-
DISABLE_P = 389,
|
174
|
-
DISCARD = 390,
|
175
|
-
DISTINCT = 391,
|
176
|
-
DO = 392,
|
177
|
-
DOCUMENT_P = 393,
|
178
|
-
DOMAIN_P = 394,
|
179
|
-
DOUBLE_P = 395,
|
180
|
-
DROP = 396,
|
181
|
-
EACH = 397,
|
182
|
-
ELSE = 398,
|
183
|
-
ENABLE_P = 399,
|
184
|
-
ENCODING = 400,
|
185
|
-
ENCRYPTED = 401,
|
186
|
-
END_P = 402,
|
187
|
-
ENUM_P = 403,
|
188
|
-
ESCAPE = 404,
|
189
|
-
EVENT = 405,
|
190
|
-
EXCEPT = 406,
|
191
|
-
EXCLUDE = 407,
|
192
|
-
EXCLUDING = 408,
|
193
|
-
EXCLUSIVE = 409,
|
194
|
-
EXECUTE = 410,
|
195
|
-
EXISTS = 411,
|
196
|
-
EXPLAIN = 412,
|
197
|
-
EXPRESSION = 413,
|
198
|
-
EXTENSION = 414,
|
199
|
-
EXTERNAL = 415,
|
200
|
-
EXTRACT = 416,
|
201
|
-
FALSE_P = 417,
|
202
|
-
FAMILY = 418,
|
203
|
-
FETCH = 419,
|
204
|
-
FILTER = 420,
|
205
|
-
FINALIZE = 421,
|
206
|
-
FIRST_P = 422,
|
207
|
-
FLOAT_P = 423,
|
208
|
-
FOLLOWING = 424,
|
209
|
-
FOR = 425,
|
210
|
-
FORCE = 426,
|
211
|
-
FOREIGN = 427,
|
212
|
-
FORMAT = 428,
|
213
|
-
FORWARD = 429,
|
214
|
-
FREEZE = 430,
|
215
|
-
FROM = 431,
|
216
|
-
FULL = 432,
|
217
|
-
FUNCTION = 433,
|
218
|
-
FUNCTIONS = 434,
|
219
|
-
GENERATED = 435,
|
220
|
-
GLOBAL = 436,
|
221
|
-
GRANT = 437,
|
222
|
-
GRANTED = 438,
|
223
|
-
GREATEST = 439,
|
224
|
-
GROUP_P = 440,
|
225
|
-
GROUPING = 441,
|
226
|
-
GROUPS = 442,
|
227
|
-
HANDLER = 443,
|
228
|
-
HAVING = 444,
|
229
|
-
HEADER_P = 445,
|
230
|
-
HOLD = 446,
|
231
|
-
HOUR_P = 447,
|
232
|
-
IDENTITY_P = 448,
|
233
|
-
IF_P = 449,
|
234
|
-
ILIKE = 450,
|
235
|
-
IMMEDIATE = 451,
|
236
|
-
IMMUTABLE = 452,
|
237
|
-
IMPLICIT_P = 453,
|
238
|
-
IMPORT_P = 454,
|
239
|
-
IN_P = 455,
|
240
|
-
INCLUDE = 456,
|
241
|
-
INCLUDING = 457,
|
242
|
-
INCREMENT = 458,
|
243
|
-
INDENT = 459,
|
244
|
-
INDEX = 460,
|
245
|
-
INDEXES = 461,
|
246
|
-
INHERIT = 462,
|
247
|
-
INHERITS = 463,
|
248
|
-
INITIALLY = 464,
|
249
|
-
INLINE_P = 465,
|
250
|
-
INNER_P = 466,
|
251
|
-
INOUT = 467,
|
252
|
-
INPUT_P = 468,
|
253
|
-
INSENSITIVE = 469,
|
254
|
-
INSERT = 470,
|
255
|
-
INSTEAD = 471,
|
256
|
-
INT_P = 472,
|
257
|
-
INTEGER = 473,
|
258
|
-
INTERSECT = 474,
|
259
|
-
INTERVAL = 475,
|
260
|
-
INTO = 476,
|
261
|
-
INVOKER = 477,
|
262
|
-
IS = 478,
|
263
|
-
ISNULL = 479,
|
264
|
-
ISOLATION = 480,
|
265
|
-
JOIN = 481,
|
266
|
-
JSON = 482,
|
267
|
-
JSON_ARRAY = 483,
|
268
|
-
JSON_ARRAYAGG = 484,
|
269
|
-
JSON_OBJECT = 485,
|
270
|
-
JSON_OBJECTAGG = 486,
|
271
|
-
KEY = 487,
|
272
|
-
KEYS = 488,
|
273
|
-
LABEL = 489,
|
274
|
-
LANGUAGE = 490,
|
275
|
-
LARGE_P = 491,
|
276
|
-
LAST_P = 492,
|
277
|
-
LATERAL_P = 493,
|
278
|
-
LEADING = 494,
|
279
|
-
LEAKPROOF = 495,
|
280
|
-
LEAST = 496,
|
281
|
-
LEFT = 497,
|
282
|
-
LEVEL = 498,
|
283
|
-
LIKE = 499,
|
284
|
-
LIMIT = 500,
|
285
|
-
LISTEN = 501,
|
286
|
-
LOAD = 502,
|
287
|
-
LOCAL = 503,
|
288
|
-
LOCALTIME = 504,
|
289
|
-
LOCALTIMESTAMP = 505,
|
290
|
-
LOCATION = 506,
|
291
|
-
LOCK_P = 507,
|
292
|
-
LOCKED = 508,
|
293
|
-
LOGGED = 509,
|
294
|
-
MAPPING = 510,
|
295
|
-
MATCH = 511,
|
296
|
-
MATCHED = 512,
|
297
|
-
MATERIALIZED = 513,
|
298
|
-
MAXVALUE = 514,
|
299
|
-
MERGE = 515,
|
300
|
-
METHOD = 516,
|
301
|
-
MINUTE_P = 517,
|
302
|
-
MINVALUE = 518,
|
303
|
-
MODE = 519,
|
304
|
-
MONTH_P = 520,
|
305
|
-
MOVE = 521,
|
306
|
-
NAME_P = 522,
|
307
|
-
NAMES = 523,
|
308
|
-
NATIONAL = 524,
|
309
|
-
NATURAL = 525,
|
310
|
-
NCHAR = 526,
|
311
|
-
NEW = 527,
|
312
|
-
NEXT = 528,
|
313
|
-
NFC = 529,
|
314
|
-
NFD = 530,
|
315
|
-
NFKC = 531,
|
316
|
-
NFKD = 532,
|
317
|
-
NO = 533,
|
318
|
-
NONE = 534,
|
319
|
-
NORMALIZE = 535,
|
320
|
-
NORMALIZED = 536,
|
321
|
-
NOT = 537,
|
322
|
-
NOTHING = 538,
|
323
|
-
NOTIFY = 539,
|
324
|
-
NOTNULL = 540,
|
325
|
-
NOWAIT = 541,
|
326
|
-
NULL_P = 542,
|
327
|
-
NULLIF = 543,
|
328
|
-
NULLS_P = 544,
|
329
|
-
NUMERIC = 545,
|
330
|
-
OBJECT_P = 546,
|
331
|
-
OF = 547,
|
332
|
-
OFF = 548,
|
333
|
-
OFFSET = 549,
|
334
|
-
OIDS = 550,
|
335
|
-
OLD = 551,
|
336
|
-
ON = 552,
|
337
|
-
ONLY = 553,
|
338
|
-
OPERATOR = 554,
|
339
|
-
OPTION = 555,
|
340
|
-
OPTIONS = 556,
|
341
|
-
OR = 557,
|
342
|
-
ORDER = 558,
|
343
|
-
ORDINALITY = 559,
|
344
|
-
OTHERS = 560,
|
345
|
-
OUT_P = 561,
|
346
|
-
OUTER_P = 562,
|
347
|
-
OVER = 563,
|
348
|
-
OVERLAPS = 564,
|
349
|
-
OVERLAY = 565,
|
350
|
-
OVERRIDING = 566,
|
351
|
-
OWNED = 567,
|
352
|
-
OWNER = 568,
|
353
|
-
PARALLEL = 569,
|
354
|
-
PARAMETER = 570,
|
355
|
-
PARSER = 571,
|
356
|
-
PARTIAL = 572,
|
357
|
-
PARTITION = 573,
|
358
|
-
PASSING = 574,
|
359
|
-
PASSWORD = 575,
|
360
|
-
PLACING = 576,
|
361
|
-
PLANS = 577,
|
362
|
-
POLICY = 578,
|
363
|
-
POSITION = 579,
|
364
|
-
PRECEDING = 580,
|
365
|
-
PRECISION = 581,
|
366
|
-
PRESERVE = 582,
|
367
|
-
PREPARE = 583,
|
368
|
-
PREPARED = 584,
|
369
|
-
PRIMARY = 585,
|
370
|
-
PRIOR = 586,
|
371
|
-
PRIVILEGES = 587,
|
372
|
-
PROCEDURAL = 588,
|
373
|
-
PROCEDURE = 589,
|
374
|
-
PROCEDURES = 590,
|
375
|
-
PROGRAM = 591,
|
376
|
-
PUBLICATION = 592,
|
377
|
-
QUOTE = 593,
|
378
|
-
RANGE = 594,
|
379
|
-
READ = 595,
|
380
|
-
REAL = 596,
|
381
|
-
REASSIGN = 597,
|
382
|
-
RECHECK = 598,
|
383
|
-
RECURSIVE = 599,
|
384
|
-
REF_P = 600,
|
385
|
-
REFERENCES = 601,
|
386
|
-
REFERENCING = 602,
|
387
|
-
REFRESH = 603,
|
388
|
-
REINDEX = 604,
|
389
|
-
RELATIVE_P = 605,
|
390
|
-
RELEASE = 606,
|
391
|
-
RENAME = 607,
|
392
|
-
REPEATABLE = 608,
|
393
|
-
REPLACE = 609,
|
394
|
-
REPLICA = 610,
|
395
|
-
RESET = 611,
|
396
|
-
RESTART = 612,
|
397
|
-
RESTRICT = 613,
|
398
|
-
RETURN = 614,
|
399
|
-
RETURNING = 615,
|
400
|
-
RETURNS = 616,
|
401
|
-
REVOKE = 617,
|
402
|
-
RIGHT = 618,
|
403
|
-
ROLE = 619,
|
404
|
-
ROLLBACK = 620,
|
405
|
-
ROLLUP = 621,
|
406
|
-
ROUTINE = 622,
|
407
|
-
ROUTINES = 623,
|
408
|
-
ROW = 624,
|
409
|
-
ROWS = 625,
|
410
|
-
RULE = 626,
|
411
|
-
SAVEPOINT = 627,
|
412
|
-
SCALAR = 628,
|
413
|
-
SCHEMA = 629,
|
414
|
-
SCHEMAS = 630,
|
415
|
-
SCROLL = 631,
|
416
|
-
SEARCH = 632,
|
417
|
-
SECOND_P = 633,
|
418
|
-
SECURITY = 634,
|
419
|
-
SELECT = 635,
|
420
|
-
SEQUENCE = 636,
|
421
|
-
SEQUENCES = 637,
|
422
|
-
SERIALIZABLE = 638,
|
423
|
-
SERVER = 639,
|
424
|
-
SESSION = 640,
|
425
|
-
SESSION_USER = 641,
|
426
|
-
SET = 642,
|
427
|
-
SETS = 643,
|
428
|
-
SETOF = 644,
|
429
|
-
SHARE = 645,
|
430
|
-
SHOW = 646,
|
431
|
-
SIMILAR = 647,
|
432
|
-
SIMPLE = 648,
|
433
|
-
SKIP = 649,
|
434
|
-
SMALLINT = 650,
|
435
|
-
SNAPSHOT = 651,
|
436
|
-
SOME = 652,
|
437
|
-
SQL_P = 653,
|
438
|
-
STABLE = 654,
|
439
|
-
STANDALONE_P = 655,
|
440
|
-
START = 656,
|
441
|
-
STATEMENT = 657,
|
442
|
-
STATISTICS = 658,
|
443
|
-
STDIN = 659,
|
444
|
-
STDOUT = 660,
|
445
|
-
STORAGE = 661,
|
446
|
-
STORED = 662,
|
447
|
-
STRICT_P = 663,
|
448
|
-
STRIP_P = 664,
|
449
|
-
SUBSCRIPTION = 665,
|
450
|
-
SUBSTRING = 666,
|
451
|
-
SUPPORT = 667,
|
452
|
-
SYMMETRIC = 668,
|
453
|
-
SYSID = 669,
|
454
|
-
SYSTEM_P = 670,
|
455
|
-
SYSTEM_USER = 671,
|
456
|
-
TABLE = 672,
|
457
|
-
TABLES = 673,
|
458
|
-
TABLESAMPLE = 674,
|
459
|
-
TABLESPACE = 675,
|
460
|
-
TEMP = 676,
|
461
|
-
TEMPLATE = 677,
|
462
|
-
TEMPORARY = 678,
|
463
|
-
TEXT_P = 679,
|
464
|
-
THEN = 680,
|
465
|
-
TIES = 681,
|
466
|
-
TIME = 682,
|
467
|
-
TIMESTAMP = 683,
|
468
|
-
TO = 684,
|
469
|
-
TRAILING = 685,
|
470
|
-
TRANSACTION = 686,
|
471
|
-
TRANSFORM = 687,
|
472
|
-
TREAT = 688,
|
473
|
-
TRIGGER = 689,
|
474
|
-
TRIM = 690,
|
475
|
-
TRUE_P = 691,
|
476
|
-
TRUNCATE = 692,
|
477
|
-
TRUSTED = 693,
|
478
|
-
TYPE_P = 694,
|
479
|
-
TYPES_P = 695,
|
480
|
-
UESCAPE = 696,
|
481
|
-
UNBOUNDED = 697,
|
482
|
-
UNCOMMITTED = 698,
|
483
|
-
UNENCRYPTED = 699,
|
484
|
-
UNION = 700,
|
485
|
-
UNIQUE = 701,
|
486
|
-
UNKNOWN = 702,
|
487
|
-
UNLISTEN = 703,
|
488
|
-
UNLOGGED = 704,
|
489
|
-
UNTIL = 705,
|
490
|
-
UPDATE = 706,
|
491
|
-
USER = 707,
|
492
|
-
USING = 708,
|
493
|
-
VACUUM = 709,
|
494
|
-
VALID = 710,
|
495
|
-
VALIDATE = 711,
|
496
|
-
VALIDATOR = 712,
|
497
|
-
VALUE_P = 713,
|
498
|
-
VALUES = 714,
|
499
|
-
VARCHAR = 715,
|
500
|
-
VARIADIC = 716,
|
501
|
-
VARYING = 717,
|
502
|
-
VERBOSE = 718,
|
503
|
-
VERSION_P = 719,
|
504
|
-
VIEW = 720,
|
505
|
-
VIEWS = 721,
|
506
|
-
VOLATILE = 722,
|
507
|
-
WHEN = 723,
|
508
|
-
WHERE = 724,
|
509
|
-
WHITESPACE_P = 725,
|
510
|
-
WINDOW = 726,
|
511
|
-
WITH = 727,
|
512
|
-
WITHIN = 728,
|
513
|
-
WITHOUT = 729,
|
514
|
-
WORK = 730,
|
515
|
-
WRAPPER = 731,
|
516
|
-
WRITE = 732,
|
517
|
-
XML_P = 733,
|
518
|
-
XMLATTRIBUTES = 734,
|
519
|
-
XMLCONCAT = 735,
|
520
|
-
XMLELEMENT = 736,
|
521
|
-
XMLEXISTS = 737,
|
522
|
-
XMLFOREST = 738,
|
523
|
-
XMLNAMESPACES = 739,
|
524
|
-
XMLPARSE = 740,
|
525
|
-
XMLPI = 741,
|
526
|
-
XMLROOT = 742,
|
527
|
-
XMLSERIALIZE = 743,
|
528
|
-
XMLTABLE = 744,
|
529
|
-
YEAR_P = 745,
|
530
|
-
YES_P = 746,
|
531
|
-
ZONE = 747,
|
532
|
-
FORMAT_LA = 748,
|
533
|
-
NOT_LA = 749,
|
534
|
-
NULLS_LA = 750,
|
535
|
-
WITH_LA = 751,
|
536
|
-
WITHOUT_LA = 752,
|
537
|
-
MODE_TYPE_NAME = 753,
|
538
|
-
MODE_PLPGSQL_EXPR = 754,
|
539
|
-
MODE_PLPGSQL_ASSIGN1 = 755,
|
540
|
-
MODE_PLPGSQL_ASSIGN2 = 756,
|
541
|
-
MODE_PLPGSQL_ASSIGN3 = 757,
|
542
|
-
UMINUS = 758
|
543
|
-
};
|
544
|
-
#endif
|
545
|
-
/* Tokens. */
|
546
|
-
#define IDENT 258
|
547
|
-
#define UIDENT 259
|
548
|
-
#define FCONST 260
|
549
|
-
#define SCONST 261
|
550
|
-
#define USCONST 262
|
551
|
-
#define BCONST 263
|
552
|
-
#define XCONST 264
|
553
|
-
#define Op 265
|
554
|
-
#define ICONST 266
|
555
|
-
#define PARAM 267
|
556
|
-
#define TYPECAST 268
|
557
|
-
#define DOT_DOT 269
|
558
|
-
#define COLON_EQUALS 270
|
559
|
-
#define EQUALS_GREATER 271
|
560
|
-
#define LESS_EQUALS 272
|
561
|
-
#define GREATER_EQUALS 273
|
562
|
-
#define NOT_EQUALS 274
|
563
|
-
#define SQL_COMMENT 275
|
564
|
-
#define C_COMMENT 276
|
565
|
-
#define ABORT_P 277
|
566
|
-
#define ABSENT 278
|
567
|
-
#define ABSOLUTE_P 279
|
568
|
-
#define ACCESS 280
|
569
|
-
#define ACTION 281
|
570
|
-
#define ADD_P 282
|
571
|
-
#define ADMIN 283
|
572
|
-
#define AFTER 284
|
573
|
-
#define AGGREGATE 285
|
574
|
-
#define ALL 286
|
575
|
-
#define ALSO 287
|
576
|
-
#define ALTER 288
|
577
|
-
#define ALWAYS 289
|
578
|
-
#define ANALYSE 290
|
579
|
-
#define ANALYZE 291
|
580
|
-
#define AND 292
|
581
|
-
#define ANY 293
|
582
|
-
#define ARRAY 294
|
583
|
-
#define AS 295
|
584
|
-
#define ASC 296
|
585
|
-
#define ASENSITIVE 297
|
586
|
-
#define ASSERTION 298
|
587
|
-
#define ASSIGNMENT 299
|
588
|
-
#define ASYMMETRIC 300
|
589
|
-
#define ATOMIC 301
|
590
|
-
#define AT 302
|
591
|
-
#define ATTACH 303
|
592
|
-
#define ATTRIBUTE 304
|
593
|
-
#define AUTHORIZATION 305
|
594
|
-
#define BACKWARD 306
|
595
|
-
#define BEFORE 307
|
596
|
-
#define BEGIN_P 308
|
597
|
-
#define BETWEEN 309
|
598
|
-
#define BIGINT 310
|
599
|
-
#define BINARY 311
|
600
|
-
#define BIT 312
|
601
|
-
#define BOOLEAN_P 313
|
602
|
-
#define BOTH 314
|
603
|
-
#define BREADTH 315
|
604
|
-
#define BY 316
|
605
|
-
#define CACHE 317
|
606
|
-
#define CALL 318
|
607
|
-
#define CALLED 319
|
608
|
-
#define CASCADE 320
|
609
|
-
#define CASCADED 321
|
610
|
-
#define CASE 322
|
611
|
-
#define CAST 323
|
612
|
-
#define CATALOG_P 324
|
613
|
-
#define CHAIN 325
|
614
|
-
#define CHAR_P 326
|
615
|
-
#define CHARACTER 327
|
616
|
-
#define CHARACTERISTICS 328
|
617
|
-
#define CHECK 329
|
618
|
-
#define CHECKPOINT 330
|
619
|
-
#define CLASS 331
|
620
|
-
#define CLOSE 332
|
621
|
-
#define CLUSTER 333
|
622
|
-
#define COALESCE 334
|
623
|
-
#define COLLATE 335
|
624
|
-
#define COLLATION 336
|
625
|
-
#define COLUMN 337
|
626
|
-
#define COLUMNS 338
|
627
|
-
#define COMMENT 339
|
628
|
-
#define COMMENTS 340
|
629
|
-
#define COMMIT 341
|
630
|
-
#define COMMITTED 342
|
631
|
-
#define COMPRESSION 343
|
632
|
-
#define CONCURRENTLY 344
|
633
|
-
#define CONFIGURATION 345
|
634
|
-
#define CONFLICT 346
|
635
|
-
#define CONNECTION 347
|
636
|
-
#define CONSTRAINT 348
|
637
|
-
#define CONSTRAINTS 349
|
638
|
-
#define CONTENT_P 350
|
639
|
-
#define CONTINUE_P 351
|
640
|
-
#define CONVERSION_P 352
|
641
|
-
#define COPY 353
|
642
|
-
#define COST 354
|
643
|
-
#define CREATE 355
|
644
|
-
#define CROSS 356
|
645
|
-
#define CSV 357
|
646
|
-
#define CUBE 358
|
647
|
-
#define CURRENT_P 359
|
648
|
-
#define CURRENT_CATALOG 360
|
649
|
-
#define CURRENT_DATE 361
|
650
|
-
#define CURRENT_ROLE 362
|
651
|
-
#define CURRENT_SCHEMA 363
|
652
|
-
#define CURRENT_TIME 364
|
653
|
-
#define CURRENT_TIMESTAMP 365
|
654
|
-
#define CURRENT_USER 366
|
655
|
-
#define CURSOR 367
|
656
|
-
#define CYCLE 368
|
657
|
-
#define DATA_P 369
|
658
|
-
#define DATABASE 370
|
659
|
-
#define DAY_P 371
|
660
|
-
#define DEALLOCATE 372
|
661
|
-
#define DEC 373
|
662
|
-
#define DECIMAL_P 374
|
663
|
-
#define DECLARE 375
|
664
|
-
#define DEFAULT 376
|
665
|
-
#define DEFAULTS 377
|
666
|
-
#define DEFERRABLE 378
|
667
|
-
#define DEFERRED 379
|
668
|
-
#define DEFINER 380
|
669
|
-
#define DELETE_P 381
|
670
|
-
#define DELIMITER 382
|
671
|
-
#define DELIMITERS 383
|
672
|
-
#define DEPENDS 384
|
673
|
-
#define DEPTH 385
|
674
|
-
#define DESC 386
|
675
|
-
#define DETACH 387
|
676
|
-
#define DICTIONARY 388
|
677
|
-
#define DISABLE_P 389
|
678
|
-
#define DISCARD 390
|
679
|
-
#define DISTINCT 391
|
680
|
-
#define DO 392
|
681
|
-
#define DOCUMENT_P 393
|
682
|
-
#define DOMAIN_P 394
|
683
|
-
#define DOUBLE_P 395
|
684
|
-
#define DROP 396
|
685
|
-
#define EACH 397
|
686
|
-
#define ELSE 398
|
687
|
-
#define ENABLE_P 399
|
688
|
-
#define ENCODING 400
|
689
|
-
#define ENCRYPTED 401
|
690
|
-
#define END_P 402
|
691
|
-
#define ENUM_P 403
|
692
|
-
#define ESCAPE 404
|
693
|
-
#define EVENT 405
|
694
|
-
#define EXCEPT 406
|
695
|
-
#define EXCLUDE 407
|
696
|
-
#define EXCLUDING 408
|
697
|
-
#define EXCLUSIVE 409
|
698
|
-
#define EXECUTE 410
|
699
|
-
#define EXISTS 411
|
700
|
-
#define EXPLAIN 412
|
701
|
-
#define EXPRESSION 413
|
702
|
-
#define EXTENSION 414
|
703
|
-
#define EXTERNAL 415
|
704
|
-
#define EXTRACT 416
|
705
|
-
#define FALSE_P 417
|
706
|
-
#define FAMILY 418
|
707
|
-
#define FETCH 419
|
708
|
-
#define FILTER 420
|
709
|
-
#define FINALIZE 421
|
710
|
-
#define FIRST_P 422
|
711
|
-
#define FLOAT_P 423
|
712
|
-
#define FOLLOWING 424
|
713
|
-
#define FOR 425
|
714
|
-
#define FORCE 426
|
715
|
-
#define FOREIGN 427
|
716
|
-
#define FORMAT 428
|
717
|
-
#define FORWARD 429
|
718
|
-
#define FREEZE 430
|
719
|
-
#define FROM 431
|
720
|
-
#define FULL 432
|
721
|
-
#define FUNCTION 433
|
722
|
-
#define FUNCTIONS 434
|
723
|
-
#define GENERATED 435
|
724
|
-
#define GLOBAL 436
|
725
|
-
#define GRANT 437
|
726
|
-
#define GRANTED 438
|
727
|
-
#define GREATEST 439
|
728
|
-
#define GROUP_P 440
|
729
|
-
#define GROUPING 441
|
730
|
-
#define GROUPS 442
|
731
|
-
#define HANDLER 443
|
732
|
-
#define HAVING 444
|
733
|
-
#define HEADER_P 445
|
734
|
-
#define HOLD 446
|
735
|
-
#define HOUR_P 447
|
736
|
-
#define IDENTITY_P 448
|
737
|
-
#define IF_P 449
|
738
|
-
#define ILIKE 450
|
739
|
-
#define IMMEDIATE 451
|
740
|
-
#define IMMUTABLE 452
|
741
|
-
#define IMPLICIT_P 453
|
742
|
-
#define IMPORT_P 454
|
743
|
-
#define IN_P 455
|
744
|
-
#define INCLUDE 456
|
745
|
-
#define INCLUDING 457
|
746
|
-
#define INCREMENT 458
|
747
|
-
#define INDENT 459
|
748
|
-
#define INDEX 460
|
749
|
-
#define INDEXES 461
|
750
|
-
#define INHERIT 462
|
751
|
-
#define INHERITS 463
|
752
|
-
#define INITIALLY 464
|
753
|
-
#define INLINE_P 465
|
754
|
-
#define INNER_P 466
|
755
|
-
#define INOUT 467
|
756
|
-
#define INPUT_P 468
|
757
|
-
#define INSENSITIVE 469
|
758
|
-
#define INSERT 470
|
759
|
-
#define INSTEAD 471
|
760
|
-
#define INT_P 472
|
761
|
-
#define INTEGER 473
|
762
|
-
#define INTERSECT 474
|
763
|
-
#define INTERVAL 475
|
764
|
-
#define INTO 476
|
765
|
-
#define INVOKER 477
|
766
|
-
#define IS 478
|
767
|
-
#define ISNULL 479
|
768
|
-
#define ISOLATION 480
|
769
|
-
#define JOIN 481
|
770
|
-
#define JSON 482
|
771
|
-
#define JSON_ARRAY 483
|
772
|
-
#define JSON_ARRAYAGG 484
|
773
|
-
#define JSON_OBJECT 485
|
774
|
-
#define JSON_OBJECTAGG 486
|
775
|
-
#define KEY 487
|
776
|
-
#define KEYS 488
|
777
|
-
#define LABEL 489
|
778
|
-
#define LANGUAGE 490
|
779
|
-
#define LARGE_P 491
|
780
|
-
#define LAST_P 492
|
781
|
-
#define LATERAL_P 493
|
782
|
-
#define LEADING 494
|
783
|
-
#define LEAKPROOF 495
|
784
|
-
#define LEAST 496
|
785
|
-
#define LEFT 497
|
786
|
-
#define LEVEL 498
|
787
|
-
#define LIKE 499
|
788
|
-
#define LIMIT 500
|
789
|
-
#define LISTEN 501
|
790
|
-
#define LOAD 502
|
791
|
-
#define LOCAL 503
|
792
|
-
#define LOCALTIME 504
|
793
|
-
#define LOCALTIMESTAMP 505
|
794
|
-
#define LOCATION 506
|
795
|
-
#define LOCK_P 507
|
796
|
-
#define LOCKED 508
|
797
|
-
#define LOGGED 509
|
798
|
-
#define MAPPING 510
|
799
|
-
#define MATCH 511
|
800
|
-
#define MATCHED 512
|
801
|
-
#define MATERIALIZED 513
|
802
|
-
#define MAXVALUE 514
|
803
|
-
#define MERGE 515
|
804
|
-
#define METHOD 516
|
805
|
-
#define MINUTE_P 517
|
806
|
-
#define MINVALUE 518
|
807
|
-
#define MODE 519
|
808
|
-
#define MONTH_P 520
|
809
|
-
#define MOVE 521
|
810
|
-
#define NAME_P 522
|
811
|
-
#define NAMES 523
|
812
|
-
#define NATIONAL 524
|
813
|
-
#define NATURAL 525
|
814
|
-
#define NCHAR 526
|
815
|
-
#define NEW 527
|
816
|
-
#define NEXT 528
|
817
|
-
#define NFC 529
|
818
|
-
#define NFD 530
|
819
|
-
#define NFKC 531
|
820
|
-
#define NFKD 532
|
821
|
-
#define NO 533
|
822
|
-
#define NONE 534
|
823
|
-
#define NORMALIZE 535
|
824
|
-
#define NORMALIZED 536
|
825
|
-
#define NOT 537
|
826
|
-
#define NOTHING 538
|
827
|
-
#define NOTIFY 539
|
828
|
-
#define NOTNULL 540
|
829
|
-
#define NOWAIT 541
|
830
|
-
#define NULL_P 542
|
831
|
-
#define NULLIF 543
|
832
|
-
#define NULLS_P 544
|
833
|
-
#define NUMERIC 545
|
834
|
-
#define OBJECT_P 546
|
835
|
-
#define OF 547
|
836
|
-
#define OFF 548
|
837
|
-
#define OFFSET 549
|
838
|
-
#define OIDS 550
|
839
|
-
#define OLD 551
|
840
|
-
#define ON 552
|
841
|
-
#define ONLY 553
|
842
|
-
#define OPERATOR 554
|
843
|
-
#define OPTION 555
|
844
|
-
#define OPTIONS 556
|
845
|
-
#define OR 557
|
846
|
-
#define ORDER 558
|
847
|
-
#define ORDINALITY 559
|
848
|
-
#define OTHERS 560
|
849
|
-
#define OUT_P 561
|
850
|
-
#define OUTER_P 562
|
851
|
-
#define OVER 563
|
852
|
-
#define OVERLAPS 564
|
853
|
-
#define OVERLAY 565
|
854
|
-
#define OVERRIDING 566
|
855
|
-
#define OWNED 567
|
856
|
-
#define OWNER 568
|
857
|
-
#define PARALLEL 569
|
858
|
-
#define PARAMETER 570
|
859
|
-
#define PARSER 571
|
860
|
-
#define PARTIAL 572
|
861
|
-
#define PARTITION 573
|
862
|
-
#define PASSING 574
|
863
|
-
#define PASSWORD 575
|
864
|
-
#define PLACING 576
|
865
|
-
#define PLANS 577
|
866
|
-
#define POLICY 578
|
867
|
-
#define POSITION 579
|
868
|
-
#define PRECEDING 580
|
869
|
-
#define PRECISION 581
|
870
|
-
#define PRESERVE 582
|
871
|
-
#define PREPARE 583
|
872
|
-
#define PREPARED 584
|
873
|
-
#define PRIMARY 585
|
874
|
-
#define PRIOR 586
|
875
|
-
#define PRIVILEGES 587
|
876
|
-
#define PROCEDURAL 588
|
877
|
-
#define PROCEDURE 589
|
878
|
-
#define PROCEDURES 590
|
879
|
-
#define PROGRAM 591
|
880
|
-
#define PUBLICATION 592
|
881
|
-
#define QUOTE 593
|
882
|
-
#define RANGE 594
|
883
|
-
#define READ 595
|
884
|
-
#define REAL 596
|
885
|
-
#define REASSIGN 597
|
886
|
-
#define RECHECK 598
|
887
|
-
#define RECURSIVE 599
|
888
|
-
#define REF_P 600
|
889
|
-
#define REFERENCES 601
|
890
|
-
#define REFERENCING 602
|
891
|
-
#define REFRESH 603
|
892
|
-
#define REINDEX 604
|
893
|
-
#define RELATIVE_P 605
|
894
|
-
#define RELEASE 606
|
895
|
-
#define RENAME 607
|
896
|
-
#define REPEATABLE 608
|
897
|
-
#define REPLACE 609
|
898
|
-
#define REPLICA 610
|
899
|
-
#define RESET 611
|
900
|
-
#define RESTART 612
|
901
|
-
#define RESTRICT 613
|
902
|
-
#define RETURN 614
|
903
|
-
#define RETURNING 615
|
904
|
-
#define RETURNS 616
|
905
|
-
#define REVOKE 617
|
906
|
-
#define RIGHT 618
|
907
|
-
#define ROLE 619
|
908
|
-
#define ROLLBACK 620
|
909
|
-
#define ROLLUP 621
|
910
|
-
#define ROUTINE 622
|
911
|
-
#define ROUTINES 623
|
912
|
-
#define ROW 624
|
913
|
-
#define ROWS 625
|
914
|
-
#define RULE 626
|
915
|
-
#define SAVEPOINT 627
|
916
|
-
#define SCALAR 628
|
917
|
-
#define SCHEMA 629
|
918
|
-
#define SCHEMAS 630
|
919
|
-
#define SCROLL 631
|
920
|
-
#define SEARCH 632
|
921
|
-
#define SECOND_P 633
|
922
|
-
#define SECURITY 634
|
923
|
-
#define SELECT 635
|
924
|
-
#define SEQUENCE 636
|
925
|
-
#define SEQUENCES 637
|
926
|
-
#define SERIALIZABLE 638
|
927
|
-
#define SERVER 639
|
928
|
-
#define SESSION 640
|
929
|
-
#define SESSION_USER 641
|
930
|
-
#define SET 642
|
931
|
-
#define SETS 643
|
932
|
-
#define SETOF 644
|
933
|
-
#define SHARE 645
|
934
|
-
#define SHOW 646
|
935
|
-
#define SIMILAR 647
|
936
|
-
#define SIMPLE 648
|
937
|
-
#define SKIP 649
|
938
|
-
#define SMALLINT 650
|
939
|
-
#define SNAPSHOT 651
|
940
|
-
#define SOME 652
|
941
|
-
#define SQL_P 653
|
942
|
-
#define STABLE 654
|
943
|
-
#define STANDALONE_P 655
|
944
|
-
#define START 656
|
945
|
-
#define STATEMENT 657
|
946
|
-
#define STATISTICS 658
|
947
|
-
#define STDIN 659
|
948
|
-
#define STDOUT 660
|
949
|
-
#define STORAGE 661
|
950
|
-
#define STORED 662
|
951
|
-
#define STRICT_P 663
|
952
|
-
#define STRIP_P 664
|
953
|
-
#define SUBSCRIPTION 665
|
954
|
-
#define SUBSTRING 666
|
955
|
-
#define SUPPORT 667
|
956
|
-
#define SYMMETRIC 668
|
957
|
-
#define SYSID 669
|
958
|
-
#define SYSTEM_P 670
|
959
|
-
#define SYSTEM_USER 671
|
960
|
-
#define TABLE 672
|
961
|
-
#define TABLES 673
|
962
|
-
#define TABLESAMPLE 674
|
963
|
-
#define TABLESPACE 675
|
964
|
-
#define TEMP 676
|
965
|
-
#define TEMPLATE 677
|
966
|
-
#define TEMPORARY 678
|
967
|
-
#define TEXT_P 679
|
968
|
-
#define THEN 680
|
969
|
-
#define TIES 681
|
970
|
-
#define TIME 682
|
971
|
-
#define TIMESTAMP 683
|
972
|
-
#define TO 684
|
973
|
-
#define TRAILING 685
|
974
|
-
#define TRANSACTION 686
|
975
|
-
#define TRANSFORM 687
|
976
|
-
#define TREAT 688
|
977
|
-
#define TRIGGER 689
|
978
|
-
#define TRIM 690
|
979
|
-
#define TRUE_P 691
|
980
|
-
#define TRUNCATE 692
|
981
|
-
#define TRUSTED 693
|
982
|
-
#define TYPE_P 694
|
983
|
-
#define TYPES_P 695
|
984
|
-
#define UESCAPE 696
|
985
|
-
#define UNBOUNDED 697
|
986
|
-
#define UNCOMMITTED 698
|
987
|
-
#define UNENCRYPTED 699
|
988
|
-
#define UNION 700
|
989
|
-
#define UNIQUE 701
|
990
|
-
#define UNKNOWN 702
|
991
|
-
#define UNLISTEN 703
|
992
|
-
#define UNLOGGED 704
|
993
|
-
#define UNTIL 705
|
994
|
-
#define UPDATE 706
|
995
|
-
#define USER 707
|
996
|
-
#define USING 708
|
997
|
-
#define VACUUM 709
|
998
|
-
#define VALID 710
|
999
|
-
#define VALIDATE 711
|
1000
|
-
#define VALIDATOR 712
|
1001
|
-
#define VALUE_P 713
|
1002
|
-
#define VALUES 714
|
1003
|
-
#define VARCHAR 715
|
1004
|
-
#define VARIADIC 716
|
1005
|
-
#define VARYING 717
|
1006
|
-
#define VERBOSE 718
|
1007
|
-
#define VERSION_P 719
|
1008
|
-
#define VIEW 720
|
1009
|
-
#define VIEWS 721
|
1010
|
-
#define VOLATILE 722
|
1011
|
-
#define WHEN 723
|
1012
|
-
#define WHERE 724
|
1013
|
-
#define WHITESPACE_P 725
|
1014
|
-
#define WINDOW 726
|
1015
|
-
#define WITH 727
|
1016
|
-
#define WITHIN 728
|
1017
|
-
#define WITHOUT 729
|
1018
|
-
#define WORK 730
|
1019
|
-
#define WRAPPER 731
|
1020
|
-
#define WRITE 732
|
1021
|
-
#define XML_P 733
|
1022
|
-
#define XMLATTRIBUTES 734
|
1023
|
-
#define XMLCONCAT 735
|
1024
|
-
#define XMLELEMENT 736
|
1025
|
-
#define XMLEXISTS 737
|
1026
|
-
#define XMLFOREST 738
|
1027
|
-
#define XMLNAMESPACES 739
|
1028
|
-
#define XMLPARSE 740
|
1029
|
-
#define XMLPI 741
|
1030
|
-
#define XMLROOT 742
|
1031
|
-
#define XMLSERIALIZE 743
|
1032
|
-
#define XMLTABLE 744
|
1033
|
-
#define YEAR_P 745
|
1034
|
-
#define YES_P 746
|
1035
|
-
#define ZONE 747
|
1036
|
-
#define FORMAT_LA 748
|
1037
|
-
#define NOT_LA 749
|
1038
|
-
#define NULLS_LA 750
|
1039
|
-
#define WITH_LA 751
|
1040
|
-
#define WITHOUT_LA 752
|
1041
|
-
#define MODE_TYPE_NAME 753
|
1042
|
-
#define MODE_PLPGSQL_EXPR 754
|
1043
|
-
#define MODE_PLPGSQL_ASSIGN1 755
|
1044
|
-
#define MODE_PLPGSQL_ASSIGN2 756
|
1045
|
-
#define MODE_PLPGSQL_ASSIGN3 757
|
1046
|
-
#define UMINUS 758
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
1051
|
-
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
1052
|
-
typedef union YYSTYPE
|
1053
|
-
#line 234 "gram.y"
|
1054
|
-
{
|
1055
|
-
core_YYSTYPE core_yystype;
|
1056
|
-
/* these fields must match core_YYSTYPE: */
|
1057
|
-
int ival;
|
1058
|
-
char *str;
|
1059
|
-
const char *keyword;
|
1060
|
-
|
1061
|
-
char chr;
|
1062
|
-
bool boolean;
|
1063
|
-
JoinType jtype;
|
1064
|
-
DropBehavior dbehavior;
|
1065
|
-
OnCommitAction oncommit;
|
1066
|
-
List *list;
|
1067
|
-
Node *node;
|
1068
|
-
ObjectType objtype;
|
1069
|
-
TypeName *typnam;
|
1070
|
-
FunctionParameter *fun_param;
|
1071
|
-
FunctionParameterMode fun_param_mode;
|
1072
|
-
ObjectWithArgs *objwithargs;
|
1073
|
-
DefElem *defelt;
|
1074
|
-
SortBy *sortby;
|
1075
|
-
WindowDef *windef;
|
1076
|
-
JoinExpr *jexpr;
|
1077
|
-
IndexElem *ielem;
|
1078
|
-
StatsElem *selem;
|
1079
|
-
Alias *alias;
|
1080
|
-
RangeVar *range;
|
1081
|
-
IntoClause *into;
|
1082
|
-
WithClause *with;
|
1083
|
-
InferClause *infer;
|
1084
|
-
OnConflictClause *onconflict;
|
1085
|
-
A_Indices *aind;
|
1086
|
-
ResTarget *target;
|
1087
|
-
struct PrivTarget *privtarget;
|
1088
|
-
AccessPriv *accesspriv;
|
1089
|
-
struct ImportQual *importqual;
|
1090
|
-
InsertStmt *istmt;
|
1091
|
-
VariableSetStmt *vsetstmt;
|
1092
|
-
PartitionElem *partelem;
|
1093
|
-
PartitionSpec *partspec;
|
1094
|
-
PartitionBoundSpec *partboundspec;
|
1095
|
-
RoleSpec *rolespec;
|
1096
|
-
PublicationObjSpec *publicationobjectspec;
|
1097
|
-
struct SelectLimit *selectlimit;
|
1098
|
-
SetQuantifier setquantifier;
|
1099
|
-
struct GroupClause *groupclause;
|
1100
|
-
MergeWhenClause *mergewhen;
|
1101
|
-
struct KeyActions *keyactions;
|
1102
|
-
struct KeyAction *keyaction;
|
1103
|
-
}
|
1104
|
-
/* Line 1529 of yacc.c. */
|
1105
|
-
#line 1106 "gram.h"
|
1106
|
-
YYSTYPE;
|
1107
|
-
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
1108
|
-
# define YYSTYPE_IS_DECLARED 1
|
1109
|
-
# define YYSTYPE_IS_TRIVIAL 1
|
1110
|
-
#endif
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
1114
|
-
#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
|
1115
|
-
typedef struct YYLTYPE
|
1116
|
-
{
|
1117
|
-
int first_line;
|
1118
|
-
int first_column;
|
1119
|
-
int last_line;
|
1120
|
-
int last_column;
|
1121
|
-
} YYLTYPE;
|
1122
|
-
# define yyltype YYLTYPE /* obsolescent; will be withdrawn */
|
1123
|
-
# define YYLTYPE_IS_DECLARED 1
|
1124
|
-
# define YYLTYPE_IS_TRIVIAL 1
|
1125
|
-
#endif
|
1126
|
-
|
1127
|
-
|