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
@@ -36,6 +36,8 @@ typedef struct PgQuery__Param PgQuery__Param;
|
|
36
36
|
typedef struct PgQuery__Aggref PgQuery__Aggref;
|
37
37
|
typedef struct PgQuery__GroupingFunc PgQuery__GroupingFunc;
|
38
38
|
typedef struct PgQuery__WindowFunc PgQuery__WindowFunc;
|
39
|
+
typedef struct PgQuery__WindowFuncRunCondition PgQuery__WindowFuncRunCondition;
|
40
|
+
typedef struct PgQuery__MergeSupportFunc PgQuery__MergeSupportFunc;
|
39
41
|
typedef struct PgQuery__SubscriptingRef PgQuery__SubscriptingRef;
|
40
42
|
typedef struct PgQuery__FuncExpr PgQuery__FuncExpr;
|
41
43
|
typedef struct PgQuery__NamedArgExpr PgQuery__NamedArgExpr;
|
@@ -69,8 +71,14 @@ typedef struct PgQuery__JsonReturning PgQuery__JsonReturning;
|
|
69
71
|
typedef struct PgQuery__JsonValueExpr PgQuery__JsonValueExpr;
|
70
72
|
typedef struct PgQuery__JsonConstructorExpr PgQuery__JsonConstructorExpr;
|
71
73
|
typedef struct PgQuery__JsonIsPredicate PgQuery__JsonIsPredicate;
|
74
|
+
typedef struct PgQuery__JsonBehavior PgQuery__JsonBehavior;
|
75
|
+
typedef struct PgQuery__JsonExpr PgQuery__JsonExpr;
|
76
|
+
typedef struct PgQuery__JsonTablePath PgQuery__JsonTablePath;
|
77
|
+
typedef struct PgQuery__JsonTablePathScan PgQuery__JsonTablePathScan;
|
78
|
+
typedef struct PgQuery__JsonTableSiblingJoin PgQuery__JsonTableSiblingJoin;
|
72
79
|
typedef struct PgQuery__NullTest PgQuery__NullTest;
|
73
80
|
typedef struct PgQuery__BooleanTest PgQuery__BooleanTest;
|
81
|
+
typedef struct PgQuery__MergeAction PgQuery__MergeAction;
|
74
82
|
typedef struct PgQuery__CoerceToDomain PgQuery__CoerceToDomain;
|
75
83
|
typedef struct PgQuery__CoerceToDomainValue PgQuery__CoerceToDomainValue;
|
76
84
|
typedef struct PgQuery__SetToDefault PgQuery__SetToDefault;
|
@@ -114,6 +122,7 @@ typedef struct PgQuery__PartitionElem PgQuery__PartitionElem;
|
|
114
122
|
typedef struct PgQuery__PartitionSpec PgQuery__PartitionSpec;
|
115
123
|
typedef struct PgQuery__PartitionBoundSpec PgQuery__PartitionBoundSpec;
|
116
124
|
typedef struct PgQuery__PartitionRangeDatum PgQuery__PartitionRangeDatum;
|
125
|
+
typedef struct PgQuery__SinglePartitionSpec PgQuery__SinglePartitionSpec;
|
117
126
|
typedef struct PgQuery__PartitionCmd PgQuery__PartitionCmd;
|
118
127
|
typedef struct PgQuery__RangeTblEntry PgQuery__RangeTblEntry;
|
119
128
|
typedef struct PgQuery__RTEPermissionInfo PgQuery__RTEPermissionInfo;
|
@@ -131,10 +140,17 @@ typedef struct PgQuery__CTESearchClause PgQuery__CTESearchClause;
|
|
131
140
|
typedef struct PgQuery__CTECycleClause PgQuery__CTECycleClause;
|
132
141
|
typedef struct PgQuery__CommonTableExpr PgQuery__CommonTableExpr;
|
133
142
|
typedef struct PgQuery__MergeWhenClause PgQuery__MergeWhenClause;
|
134
|
-
typedef struct PgQuery__MergeAction PgQuery__MergeAction;
|
135
143
|
typedef struct PgQuery__TriggerTransition PgQuery__TriggerTransition;
|
136
144
|
typedef struct PgQuery__JsonOutput PgQuery__JsonOutput;
|
145
|
+
typedef struct PgQuery__JsonArgument PgQuery__JsonArgument;
|
146
|
+
typedef struct PgQuery__JsonFuncExpr PgQuery__JsonFuncExpr;
|
147
|
+
typedef struct PgQuery__JsonTablePathSpec PgQuery__JsonTablePathSpec;
|
148
|
+
typedef struct PgQuery__JsonTable PgQuery__JsonTable;
|
149
|
+
typedef struct PgQuery__JsonTableColumn PgQuery__JsonTableColumn;
|
137
150
|
typedef struct PgQuery__JsonKeyValue PgQuery__JsonKeyValue;
|
151
|
+
typedef struct PgQuery__JsonParseExpr PgQuery__JsonParseExpr;
|
152
|
+
typedef struct PgQuery__JsonScalarExpr PgQuery__JsonScalarExpr;
|
153
|
+
typedef struct PgQuery__JsonSerializeExpr PgQuery__JsonSerializeExpr;
|
138
154
|
typedef struct PgQuery__JsonObjectConstructor PgQuery__JsonObjectConstructor;
|
139
155
|
typedef struct PgQuery__JsonArrayConstructor PgQuery__JsonArrayConstructor;
|
140
156
|
typedef struct PgQuery__JsonArrayQueryConstructor PgQuery__JsonArrayQueryConstructor;
|
@@ -275,13 +291,6 @@ typedef struct PgQuery__ScanToken PgQuery__ScanToken;
|
|
275
291
|
|
276
292
|
/* --- enums --- */
|
277
293
|
|
278
|
-
typedef enum _PgQuery__OverridingKind {
|
279
|
-
PG_QUERY__OVERRIDING_KIND__OVERRIDING_KIND_UNDEFINED = 0,
|
280
|
-
PG_QUERY__OVERRIDING_KIND__OVERRIDING_NOT_SET = 1,
|
281
|
-
PG_QUERY__OVERRIDING_KIND__OVERRIDING_USER_VALUE = 2,
|
282
|
-
PG_QUERY__OVERRIDING_KIND__OVERRIDING_SYSTEM_VALUE = 3
|
283
|
-
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__OVERRIDING_KIND)
|
284
|
-
} PgQuery__OverridingKind;
|
285
294
|
typedef enum _PgQuery__QuerySource {
|
286
295
|
PG_QUERY__QUERY_SOURCE__QUERY_SOURCE_UNDEFINED = 0,
|
287
296
|
PG_QUERY__QUERY_SOURCE__QSRC_ORIGINAL = 1,
|
@@ -415,6 +424,22 @@ typedef enum _PgQuery__CTEMaterialize {
|
|
415
424
|
PG_QUERY__CTEMATERIALIZE__CTEMaterializeNever = 3
|
416
425
|
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__CTEMATERIALIZE)
|
417
426
|
} PgQuery__CTEMaterialize;
|
427
|
+
typedef enum _PgQuery__JsonQuotes {
|
428
|
+
PG_QUERY__JSON_QUOTES__JSON_QUOTES_UNDEFINED = 0,
|
429
|
+
PG_QUERY__JSON_QUOTES__JS_QUOTES_UNSPEC = 1,
|
430
|
+
PG_QUERY__JSON_QUOTES__JS_QUOTES_KEEP = 2,
|
431
|
+
PG_QUERY__JSON_QUOTES__JS_QUOTES_OMIT = 3
|
432
|
+
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__JSON_QUOTES)
|
433
|
+
} PgQuery__JsonQuotes;
|
434
|
+
typedef enum _PgQuery__JsonTableColumnType {
|
435
|
+
PG_QUERY__JSON_TABLE_COLUMN_TYPE__JSON_TABLE_COLUMN_TYPE_UNDEFINED = 0,
|
436
|
+
PG_QUERY__JSON_TABLE_COLUMN_TYPE__JTC_FOR_ORDINALITY = 1,
|
437
|
+
PG_QUERY__JSON_TABLE_COLUMN_TYPE__JTC_REGULAR = 2,
|
438
|
+
PG_QUERY__JSON_TABLE_COLUMN_TYPE__JTC_EXISTS = 3,
|
439
|
+
PG_QUERY__JSON_TABLE_COLUMN_TYPE__JTC_FORMATTED = 4,
|
440
|
+
PG_QUERY__JSON_TABLE_COLUMN_TYPE__JTC_NESTED = 5
|
441
|
+
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__JSON_TABLE_COLUMN_TYPE)
|
442
|
+
} PgQuery__JsonTableColumnType;
|
418
443
|
typedef enum _PgQuery__SetOperation {
|
419
444
|
PG_QUERY__SET_OPERATION__SET_OPERATION_UNDEFINED = 0,
|
420
445
|
PG_QUERY__SET_OPERATION__SETOP_NONE = 1,
|
@@ -493,66 +518,67 @@ typedef enum _PgQuery__AlterTableType {
|
|
493
518
|
PG_QUERY__ALTER_TABLE_TYPE__AT_CookedColumnDefault = 4,
|
494
519
|
PG_QUERY__ALTER_TABLE_TYPE__AT_DropNotNull = 5,
|
495
520
|
PG_QUERY__ALTER_TABLE_TYPE__AT_SetNotNull = 6,
|
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
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
521
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_SetExpression = 7,
|
522
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_DropExpression = 8,
|
523
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_CheckNotNull = 9,
|
524
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_SetStatistics = 10,
|
525
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_SetOptions = 11,
|
526
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_ResetOptions = 12,
|
527
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_SetStorage = 13,
|
528
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_SetCompression = 14,
|
529
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_DropColumn = 15,
|
530
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_AddIndex = 16,
|
531
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_ReAddIndex = 17,
|
532
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_AddConstraint = 18,
|
533
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_ReAddConstraint = 19,
|
534
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_ReAddDomainConstraint = 20,
|
535
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_AlterConstraint = 21,
|
536
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_ValidateConstraint = 22,
|
537
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_AddIndexConstraint = 23,
|
538
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_DropConstraint = 24,
|
539
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_ReAddComment = 25,
|
540
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_AlterColumnType = 26,
|
541
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_AlterColumnGenericOptions = 27,
|
542
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_ChangeOwner = 28,
|
543
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_ClusterOn = 29,
|
544
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_DropCluster = 30,
|
545
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_SetLogged = 31,
|
546
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_SetUnLogged = 32,
|
547
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_DropOids = 33,
|
548
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_SetAccessMethod = 34,
|
549
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_SetTableSpace = 35,
|
550
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_SetRelOptions = 36,
|
551
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_ResetRelOptions = 37,
|
552
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_ReplaceRelOptions = 38,
|
553
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_EnableTrig = 39,
|
554
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_EnableAlwaysTrig = 40,
|
555
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_EnableReplicaTrig = 41,
|
556
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_DisableTrig = 42,
|
557
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_EnableTrigAll = 43,
|
558
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_DisableTrigAll = 44,
|
559
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_EnableTrigUser = 45,
|
560
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_DisableTrigUser = 46,
|
561
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_EnableRule = 47,
|
562
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_EnableAlwaysRule = 48,
|
563
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_EnableReplicaRule = 49,
|
564
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_DisableRule = 50,
|
565
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_AddInherit = 51,
|
566
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_DropInherit = 52,
|
567
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_AddOf = 53,
|
568
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_DropOf = 54,
|
569
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_ReplicaIdentity = 55,
|
570
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_EnableRowSecurity = 56,
|
571
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_DisableRowSecurity = 57,
|
572
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_ForceRowSecurity = 58,
|
573
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_NoForceRowSecurity = 59,
|
574
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_GenericOptions = 60,
|
575
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_AttachPartition = 61,
|
576
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_DetachPartition = 62,
|
577
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_DetachPartitionFinalize = 63,
|
578
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_AddIdentity = 64,
|
579
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_SetIdentity = 65,
|
580
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_DropIdentity = 66,
|
581
|
+
PG_QUERY__ALTER_TABLE_TYPE__AT_ReAddStatistics = 67
|
556
582
|
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__ALTER_TABLE_TYPE)
|
557
583
|
} PgQuery__AlterTableType;
|
558
584
|
typedef enum _PgQuery__GrantTargetType {
|
@@ -696,6 +722,13 @@ typedef enum _PgQuery__AlterSubscriptionType {
|
|
696
722
|
PG_QUERY__ALTER_SUBSCRIPTION_TYPE__ALTER_SUBSCRIPTION_SKIP = 8
|
697
723
|
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__ALTER_SUBSCRIPTION_TYPE)
|
698
724
|
} PgQuery__AlterSubscriptionType;
|
725
|
+
typedef enum _PgQuery__OverridingKind {
|
726
|
+
PG_QUERY__OVERRIDING_KIND__OVERRIDING_KIND_UNDEFINED = 0,
|
727
|
+
PG_QUERY__OVERRIDING_KIND__OVERRIDING_NOT_SET = 1,
|
728
|
+
PG_QUERY__OVERRIDING_KIND__OVERRIDING_USER_VALUE = 2,
|
729
|
+
PG_QUERY__OVERRIDING_KIND__OVERRIDING_SYSTEM_VALUE = 3
|
730
|
+
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__OVERRIDING_KIND)
|
731
|
+
} PgQuery__OverridingKind;
|
699
732
|
typedef enum _PgQuery__OnCommitAction {
|
700
733
|
PG_QUERY__ON_COMMIT_ACTION__ON_COMMIT_ACTION_UNDEFINED = 0,
|
701
734
|
PG_QUERY__ON_COMMIT_ACTION__ONCOMMIT_NOOP = 1,
|
@@ -704,6 +737,12 @@ typedef enum _PgQuery__OnCommitAction {
|
|
704
737
|
PG_QUERY__ON_COMMIT_ACTION__ONCOMMIT_DROP = 4
|
705
738
|
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__ON_COMMIT_ACTION)
|
706
739
|
} PgQuery__OnCommitAction;
|
740
|
+
typedef enum _PgQuery__TableFuncType {
|
741
|
+
PG_QUERY__TABLE_FUNC_TYPE__TABLE_FUNC_TYPE_UNDEFINED = 0,
|
742
|
+
PG_QUERY__TABLE_FUNC_TYPE__TFT_XMLTABLE = 1,
|
743
|
+
PG_QUERY__TABLE_FUNC_TYPE__TFT_JSON_TABLE = 2
|
744
|
+
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__TABLE_FUNC_TYPE)
|
745
|
+
} PgQuery__TableFuncType;
|
707
746
|
typedef enum _PgQuery__ParamKind {
|
708
747
|
PG_QUERY__PARAM_KIND__PARAM_KIND_UNDEFINED = 0,
|
709
748
|
PG_QUERY__PARAM_KIND__PARAM_EXTERN = 1,
|
@@ -820,7 +859,10 @@ typedef enum _PgQuery__JsonConstructorType {
|
|
820
859
|
PG_QUERY__JSON_CONSTRUCTOR_TYPE__JSCTOR_JSON_OBJECT = 1,
|
821
860
|
PG_QUERY__JSON_CONSTRUCTOR_TYPE__JSCTOR_JSON_ARRAY = 2,
|
822
861
|
PG_QUERY__JSON_CONSTRUCTOR_TYPE__JSCTOR_JSON_OBJECTAGG = 3,
|
823
|
-
PG_QUERY__JSON_CONSTRUCTOR_TYPE__JSCTOR_JSON_ARRAYAGG = 4
|
862
|
+
PG_QUERY__JSON_CONSTRUCTOR_TYPE__JSCTOR_JSON_ARRAYAGG = 4,
|
863
|
+
PG_QUERY__JSON_CONSTRUCTOR_TYPE__JSCTOR_JSON_PARSE = 5,
|
864
|
+
PG_QUERY__JSON_CONSTRUCTOR_TYPE__JSCTOR_JSON_SCALAR = 6,
|
865
|
+
PG_QUERY__JSON_CONSTRUCTOR_TYPE__JSCTOR_JSON_SERIALIZE = 7
|
824
866
|
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__JSON_CONSTRUCTOR_TYPE)
|
825
867
|
} PgQuery__JsonConstructorType;
|
826
868
|
typedef enum _PgQuery__JsonValueType {
|
@@ -831,6 +873,35 @@ typedef enum _PgQuery__JsonValueType {
|
|
831
873
|
PG_QUERY__JSON_VALUE_TYPE__JS_TYPE_SCALAR = 4
|
832
874
|
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__JSON_VALUE_TYPE)
|
833
875
|
} PgQuery__JsonValueType;
|
876
|
+
typedef enum _PgQuery__JsonWrapper {
|
877
|
+
PG_QUERY__JSON_WRAPPER__JSON_WRAPPER_UNDEFINED = 0,
|
878
|
+
PG_QUERY__JSON_WRAPPER__JSW_UNSPEC = 1,
|
879
|
+
PG_QUERY__JSON_WRAPPER__JSW_NONE = 2,
|
880
|
+
PG_QUERY__JSON_WRAPPER__JSW_CONDITIONAL = 3,
|
881
|
+
PG_QUERY__JSON_WRAPPER__JSW_UNCONDITIONAL = 4
|
882
|
+
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__JSON_WRAPPER)
|
883
|
+
} PgQuery__JsonWrapper;
|
884
|
+
typedef enum _PgQuery__JsonBehaviorType {
|
885
|
+
PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_TYPE_UNDEFINED = 0,
|
886
|
+
PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_NULL = 1,
|
887
|
+
PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_ERROR = 2,
|
888
|
+
PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_EMPTY = 3,
|
889
|
+
PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_TRUE = 4,
|
890
|
+
PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_FALSE = 5,
|
891
|
+
PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_UNKNOWN = 6,
|
892
|
+
PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_EMPTY_ARRAY = 7,
|
893
|
+
PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_EMPTY_OBJECT = 8,
|
894
|
+
PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_DEFAULT = 9
|
895
|
+
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__JSON_BEHAVIOR_TYPE)
|
896
|
+
} PgQuery__JsonBehaviorType;
|
897
|
+
typedef enum _PgQuery__JsonExprOp {
|
898
|
+
PG_QUERY__JSON_EXPR_OP__JSON_EXPR_OP_UNDEFINED = 0,
|
899
|
+
PG_QUERY__JSON_EXPR_OP__JSON_EXISTS_OP = 1,
|
900
|
+
PG_QUERY__JSON_EXPR_OP__JSON_QUERY_OP = 2,
|
901
|
+
PG_QUERY__JSON_EXPR_OP__JSON_VALUE_OP = 3,
|
902
|
+
PG_QUERY__JSON_EXPR_OP__JSON_TABLE_OP = 4
|
903
|
+
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__JSON_EXPR_OP)
|
904
|
+
} PgQuery__JsonExprOp;
|
834
905
|
typedef enum _PgQuery__NullTestType {
|
835
906
|
PG_QUERY__NULL_TEST_TYPE__NULL_TEST_TYPE_UNDEFINED = 0,
|
836
907
|
PG_QUERY__NULL_TEST_TYPE__IS_NULL = 1,
|
@@ -847,6 +918,13 @@ typedef enum _PgQuery__BoolTestType {
|
|
847
918
|
PG_QUERY__BOOL_TEST_TYPE__IS_NOT_UNKNOWN = 6
|
848
919
|
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__BOOL_TEST_TYPE)
|
849
920
|
} PgQuery__BoolTestType;
|
921
|
+
typedef enum _PgQuery__MergeMatchKind {
|
922
|
+
PG_QUERY__MERGE_MATCH_KIND__MERGE_MATCH_KIND_UNDEFINED = 0,
|
923
|
+
PG_QUERY__MERGE_MATCH_KIND__MERGE_WHEN_MATCHED = 1,
|
924
|
+
PG_QUERY__MERGE_MATCH_KIND__MERGE_WHEN_NOT_MATCHED_BY_SOURCE = 2,
|
925
|
+
PG_QUERY__MERGE_MATCH_KIND__MERGE_WHEN_NOT_MATCHED_BY_TARGET = 3
|
926
|
+
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__MERGE_MATCH_KIND)
|
927
|
+
} PgQuery__MergeMatchKind;
|
850
928
|
typedef enum _PgQuery__CmdType {
|
851
929
|
PG_QUERY__CMD_TYPE__CMD_TYPE_UNDEFINED = 0,
|
852
930
|
PG_QUERY__CMD_TYPE__CMD_UNKNOWN = 1,
|
@@ -1124,420 +1202,440 @@ typedef enum _PgQuery__Token {
|
|
1124
1202
|
PG_QUERY__TOKEN__COMMITTED = 342,
|
1125
1203
|
PG_QUERY__TOKEN__COMPRESSION = 343,
|
1126
1204
|
PG_QUERY__TOKEN__CONCURRENTLY = 344,
|
1127
|
-
|
1128
|
-
|
1129
|
-
|
1130
|
-
|
1131
|
-
|
1132
|
-
|
1133
|
-
|
1134
|
-
|
1135
|
-
|
1136
|
-
|
1137
|
-
|
1138
|
-
|
1139
|
-
|
1140
|
-
|
1141
|
-
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1147
|
-
|
1148
|
-
|
1149
|
-
|
1150
|
-
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1156
|
-
|
1157
|
-
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1161
|
-
|
1162
|
-
|
1163
|
-
|
1164
|
-
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
1168
|
-
|
1169
|
-
|
1170
|
-
|
1171
|
-
|
1172
|
-
|
1173
|
-
|
1174
|
-
|
1175
|
-
|
1176
|
-
|
1177
|
-
|
1178
|
-
|
1179
|
-
|
1180
|
-
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1188
|
-
|
1189
|
-
|
1190
|
-
|
1191
|
-
|
1192
|
-
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1196
|
-
|
1197
|
-
|
1198
|
-
|
1199
|
-
|
1200
|
-
|
1201
|
-
|
1202
|
-
|
1203
|
-
|
1204
|
-
|
1205
|
-
|
1206
|
-
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1211
|
-
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1227
|
-
|
1228
|
-
|
1229
|
-
|
1230
|
-
|
1231
|
-
|
1232
|
-
|
1233
|
-
|
1234
|
-
|
1235
|
-
|
1236
|
-
|
1237
|
-
|
1238
|
-
|
1239
|
-
|
1240
|
-
|
1241
|
-
|
1242
|
-
|
1243
|
-
|
1244
|
-
|
1245
|
-
|
1246
|
-
|
1247
|
-
|
1248
|
-
|
1249
|
-
|
1250
|
-
|
1251
|
-
|
1252
|
-
|
1253
|
-
|
1254
|
-
|
1255
|
-
|
1256
|
-
|
1257
|
-
|
1258
|
-
|
1259
|
-
|
1260
|
-
|
1261
|
-
|
1262
|
-
|
1263
|
-
|
1264
|
-
|
1265
|
-
|
1266
|
-
|
1267
|
-
|
1268
|
-
|
1269
|
-
|
1270
|
-
|
1271
|
-
|
1272
|
-
|
1273
|
-
|
1274
|
-
|
1275
|
-
|
1276
|
-
|
1277
|
-
|
1278
|
-
|
1279
|
-
|
1280
|
-
|
1281
|
-
|
1282
|
-
|
1283
|
-
|
1284
|
-
|
1285
|
-
|
1286
|
-
|
1287
|
-
|
1288
|
-
|
1289
|
-
|
1290
|
-
|
1291
|
-
|
1292
|
-
|
1293
|
-
|
1294
|
-
|
1295
|
-
|
1296
|
-
|
1297
|
-
|
1298
|
-
|
1299
|
-
|
1300
|
-
|
1301
|
-
|
1302
|
-
|
1303
|
-
|
1304
|
-
|
1305
|
-
|
1306
|
-
|
1307
|
-
|
1308
|
-
|
1309
|
-
|
1310
|
-
|
1311
|
-
|
1312
|
-
|
1313
|
-
|
1314
|
-
|
1315
|
-
|
1316
|
-
|
1317
|
-
|
1318
|
-
|
1319
|
-
|
1320
|
-
|
1321
|
-
|
1322
|
-
|
1323
|
-
|
1324
|
-
|
1325
|
-
|
1326
|
-
|
1327
|
-
|
1328
|
-
|
1329
|
-
|
1330
|
-
|
1331
|
-
|
1332
|
-
|
1333
|
-
|
1334
|
-
|
1335
|
-
|
1336
|
-
|
1337
|
-
|
1338
|
-
|
1339
|
-
|
1340
|
-
|
1341
|
-
|
1342
|
-
|
1343
|
-
|
1344
|
-
|
1345
|
-
|
1346
|
-
|
1347
|
-
|
1348
|
-
|
1349
|
-
|
1350
|
-
|
1351
|
-
|
1352
|
-
|
1353
|
-
|
1354
|
-
|
1355
|
-
|
1356
|
-
|
1357
|
-
|
1358
|
-
|
1359
|
-
|
1360
|
-
|
1361
|
-
|
1362
|
-
|
1363
|
-
|
1364
|
-
|
1365
|
-
|
1366
|
-
|
1367
|
-
|
1368
|
-
|
1369
|
-
|
1370
|
-
|
1371
|
-
|
1372
|
-
|
1373
|
-
|
1374
|
-
|
1375
|
-
|
1376
|
-
|
1377
|
-
|
1378
|
-
|
1379
|
-
|
1380
|
-
|
1381
|
-
|
1382
|
-
|
1383
|
-
|
1384
|
-
|
1385
|
-
|
1386
|
-
|
1387
|
-
|
1388
|
-
|
1389
|
-
|
1390
|
-
|
1391
|
-
|
1392
|
-
|
1393
|
-
|
1394
|
-
|
1395
|
-
|
1396
|
-
|
1397
|
-
|
1398
|
-
|
1399
|
-
|
1400
|
-
|
1401
|
-
|
1402
|
-
|
1403
|
-
|
1404
|
-
|
1405
|
-
|
1406
|
-
|
1407
|
-
|
1408
|
-
|
1409
|
-
|
1410
|
-
|
1411
|
-
|
1412
|
-
|
1413
|
-
|
1414
|
-
|
1415
|
-
|
1416
|
-
|
1417
|
-
|
1418
|
-
|
1419
|
-
|
1420
|
-
|
1421
|
-
|
1422
|
-
|
1423
|
-
|
1424
|
-
|
1425
|
-
|
1426
|
-
|
1427
|
-
|
1428
|
-
|
1429
|
-
|
1430
|
-
|
1431
|
-
|
1432
|
-
|
1433
|
-
|
1434
|
-
|
1435
|
-
|
1436
|
-
|
1437
|
-
|
1438
|
-
|
1439
|
-
|
1440
|
-
|
1441
|
-
|
1442
|
-
|
1443
|
-
|
1444
|
-
|
1445
|
-
|
1446
|
-
|
1447
|
-
|
1448
|
-
|
1449
|
-
|
1450
|
-
|
1451
|
-
|
1452
|
-
|
1453
|
-
|
1454
|
-
|
1455
|
-
|
1456
|
-
|
1457
|
-
|
1458
|
-
|
1459
|
-
|
1460
|
-
|
1461
|
-
|
1462
|
-
|
1463
|
-
|
1464
|
-
|
1465
|
-
|
1466
|
-
|
1467
|
-
|
1468
|
-
|
1469
|
-
|
1470
|
-
|
1471
|
-
|
1472
|
-
|
1473
|
-
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1477
|
-
|
1478
|
-
|
1479
|
-
|
1480
|
-
|
1481
|
-
|
1482
|
-
|
1483
|
-
|
1484
|
-
|
1485
|
-
|
1486
|
-
|
1487
|
-
|
1488
|
-
|
1489
|
-
|
1490
|
-
|
1491
|
-
|
1492
|
-
|
1493
|
-
|
1494
|
-
|
1495
|
-
|
1496
|
-
|
1497
|
-
|
1498
|
-
|
1499
|
-
|
1500
|
-
|
1501
|
-
|
1502
|
-
|
1503
|
-
|
1504
|
-
|
1505
|
-
|
1506
|
-
|
1507
|
-
|
1508
|
-
|
1509
|
-
|
1510
|
-
|
1511
|
-
|
1512
|
-
|
1513
|
-
|
1514
|
-
|
1515
|
-
|
1516
|
-
|
1517
|
-
|
1518
|
-
|
1519
|
-
|
1520
|
-
|
1521
|
-
|
1522
|
-
|
1523
|
-
|
1524
|
-
|
1525
|
-
|
1526
|
-
|
1527
|
-
|
1528
|
-
|
1529
|
-
|
1530
|
-
|
1531
|
-
|
1532
|
-
|
1533
|
-
|
1534
|
-
|
1535
|
-
|
1536
|
-
|
1537
|
-
|
1538
|
-
|
1539
|
-
|
1540
|
-
|
1205
|
+
PG_QUERY__TOKEN__CONDITIONAL = 345,
|
1206
|
+
PG_QUERY__TOKEN__CONFIGURATION = 346,
|
1207
|
+
PG_QUERY__TOKEN__CONFLICT = 347,
|
1208
|
+
PG_QUERY__TOKEN__CONNECTION = 348,
|
1209
|
+
PG_QUERY__TOKEN__CONSTRAINT = 349,
|
1210
|
+
PG_QUERY__TOKEN__CONSTRAINTS = 350,
|
1211
|
+
PG_QUERY__TOKEN__CONTENT_P = 351,
|
1212
|
+
PG_QUERY__TOKEN__CONTINUE_P = 352,
|
1213
|
+
PG_QUERY__TOKEN__CONVERSION_P = 353,
|
1214
|
+
PG_QUERY__TOKEN__COPY = 354,
|
1215
|
+
PG_QUERY__TOKEN__COST = 355,
|
1216
|
+
PG_QUERY__TOKEN__CREATE = 356,
|
1217
|
+
PG_QUERY__TOKEN__CROSS = 357,
|
1218
|
+
PG_QUERY__TOKEN__CSV = 358,
|
1219
|
+
PG_QUERY__TOKEN__CUBE = 359,
|
1220
|
+
PG_QUERY__TOKEN__CURRENT_P = 360,
|
1221
|
+
PG_QUERY__TOKEN__CURRENT_CATALOG = 361,
|
1222
|
+
PG_QUERY__TOKEN__CURRENT_DATE = 362,
|
1223
|
+
PG_QUERY__TOKEN__CURRENT_ROLE = 363,
|
1224
|
+
PG_QUERY__TOKEN__CURRENT_SCHEMA = 364,
|
1225
|
+
PG_QUERY__TOKEN__CURRENT_TIME = 365,
|
1226
|
+
PG_QUERY__TOKEN__CURRENT_TIMESTAMP = 366,
|
1227
|
+
PG_QUERY__TOKEN__CURRENT_USER = 367,
|
1228
|
+
PG_QUERY__TOKEN__CURSOR = 368,
|
1229
|
+
PG_QUERY__TOKEN__CYCLE = 369,
|
1230
|
+
PG_QUERY__TOKEN__DATA_P = 370,
|
1231
|
+
PG_QUERY__TOKEN__DATABASE = 371,
|
1232
|
+
PG_QUERY__TOKEN__DAY_P = 372,
|
1233
|
+
PG_QUERY__TOKEN__DEALLOCATE = 373,
|
1234
|
+
PG_QUERY__TOKEN__DEC = 374,
|
1235
|
+
PG_QUERY__TOKEN__DECIMAL_P = 375,
|
1236
|
+
PG_QUERY__TOKEN__DECLARE = 376,
|
1237
|
+
PG_QUERY__TOKEN__DEFAULT = 377,
|
1238
|
+
PG_QUERY__TOKEN__DEFAULTS = 378,
|
1239
|
+
PG_QUERY__TOKEN__DEFERRABLE = 379,
|
1240
|
+
PG_QUERY__TOKEN__DEFERRED = 380,
|
1241
|
+
PG_QUERY__TOKEN__DEFINER = 381,
|
1242
|
+
PG_QUERY__TOKEN__DELETE_P = 382,
|
1243
|
+
PG_QUERY__TOKEN__DELIMITER = 383,
|
1244
|
+
PG_QUERY__TOKEN__DELIMITERS = 384,
|
1245
|
+
PG_QUERY__TOKEN__DEPENDS = 385,
|
1246
|
+
PG_QUERY__TOKEN__DEPTH = 386,
|
1247
|
+
PG_QUERY__TOKEN__DESC = 387,
|
1248
|
+
PG_QUERY__TOKEN__DETACH = 388,
|
1249
|
+
PG_QUERY__TOKEN__DICTIONARY = 389,
|
1250
|
+
PG_QUERY__TOKEN__DISABLE_P = 390,
|
1251
|
+
PG_QUERY__TOKEN__DISCARD = 391,
|
1252
|
+
PG_QUERY__TOKEN__DISTINCT = 392,
|
1253
|
+
PG_QUERY__TOKEN__DO = 393,
|
1254
|
+
PG_QUERY__TOKEN__DOCUMENT_P = 394,
|
1255
|
+
PG_QUERY__TOKEN__DOMAIN_P = 395,
|
1256
|
+
PG_QUERY__TOKEN__DOUBLE_P = 396,
|
1257
|
+
PG_QUERY__TOKEN__DROP = 397,
|
1258
|
+
PG_QUERY__TOKEN__EACH = 398,
|
1259
|
+
PG_QUERY__TOKEN__ELSE = 399,
|
1260
|
+
PG_QUERY__TOKEN__EMPTY_P = 400,
|
1261
|
+
PG_QUERY__TOKEN__ENABLE_P = 401,
|
1262
|
+
PG_QUERY__TOKEN__ENCODING = 402,
|
1263
|
+
PG_QUERY__TOKEN__ENCRYPTED = 403,
|
1264
|
+
PG_QUERY__TOKEN__END_P = 404,
|
1265
|
+
PG_QUERY__TOKEN__ENUM_P = 405,
|
1266
|
+
PG_QUERY__TOKEN__ERROR_P = 406,
|
1267
|
+
PG_QUERY__TOKEN__ESCAPE = 407,
|
1268
|
+
PG_QUERY__TOKEN__EVENT = 408,
|
1269
|
+
PG_QUERY__TOKEN__EXCEPT = 409,
|
1270
|
+
PG_QUERY__TOKEN__EXCLUDE = 410,
|
1271
|
+
PG_QUERY__TOKEN__EXCLUDING = 411,
|
1272
|
+
PG_QUERY__TOKEN__EXCLUSIVE = 412,
|
1273
|
+
PG_QUERY__TOKEN__EXECUTE = 413,
|
1274
|
+
PG_QUERY__TOKEN__EXISTS = 414,
|
1275
|
+
PG_QUERY__TOKEN__EXPLAIN = 415,
|
1276
|
+
PG_QUERY__TOKEN__EXPRESSION = 416,
|
1277
|
+
PG_QUERY__TOKEN__EXTENSION = 417,
|
1278
|
+
PG_QUERY__TOKEN__EXTERNAL = 418,
|
1279
|
+
PG_QUERY__TOKEN__EXTRACT = 419,
|
1280
|
+
PG_QUERY__TOKEN__FALSE_P = 420,
|
1281
|
+
PG_QUERY__TOKEN__FAMILY = 421,
|
1282
|
+
PG_QUERY__TOKEN__FETCH = 422,
|
1283
|
+
PG_QUERY__TOKEN__FILTER = 423,
|
1284
|
+
PG_QUERY__TOKEN__FINALIZE = 424,
|
1285
|
+
PG_QUERY__TOKEN__FIRST_P = 425,
|
1286
|
+
PG_QUERY__TOKEN__FLOAT_P = 426,
|
1287
|
+
PG_QUERY__TOKEN__FOLLOWING = 427,
|
1288
|
+
PG_QUERY__TOKEN__FOR = 428,
|
1289
|
+
PG_QUERY__TOKEN__FORCE = 429,
|
1290
|
+
PG_QUERY__TOKEN__FOREIGN = 430,
|
1291
|
+
PG_QUERY__TOKEN__FORMAT = 431,
|
1292
|
+
PG_QUERY__TOKEN__FORWARD = 432,
|
1293
|
+
PG_QUERY__TOKEN__FREEZE = 433,
|
1294
|
+
PG_QUERY__TOKEN__FROM = 434,
|
1295
|
+
PG_QUERY__TOKEN__FULL = 435,
|
1296
|
+
PG_QUERY__TOKEN__FUNCTION = 436,
|
1297
|
+
PG_QUERY__TOKEN__FUNCTIONS = 437,
|
1298
|
+
PG_QUERY__TOKEN__GENERATED = 438,
|
1299
|
+
PG_QUERY__TOKEN__GLOBAL = 439,
|
1300
|
+
PG_QUERY__TOKEN__GRANT = 440,
|
1301
|
+
PG_QUERY__TOKEN__GRANTED = 441,
|
1302
|
+
PG_QUERY__TOKEN__GREATEST = 442,
|
1303
|
+
PG_QUERY__TOKEN__GROUP_P = 443,
|
1304
|
+
PG_QUERY__TOKEN__GROUPING = 444,
|
1305
|
+
PG_QUERY__TOKEN__GROUPS = 445,
|
1306
|
+
PG_QUERY__TOKEN__HANDLER = 446,
|
1307
|
+
PG_QUERY__TOKEN__HAVING = 447,
|
1308
|
+
PG_QUERY__TOKEN__HEADER_P = 448,
|
1309
|
+
PG_QUERY__TOKEN__HOLD = 449,
|
1310
|
+
PG_QUERY__TOKEN__HOUR_P = 450,
|
1311
|
+
PG_QUERY__TOKEN__IDENTITY_P = 451,
|
1312
|
+
PG_QUERY__TOKEN__IF_P = 452,
|
1313
|
+
PG_QUERY__TOKEN__ILIKE = 453,
|
1314
|
+
PG_QUERY__TOKEN__IMMEDIATE = 454,
|
1315
|
+
PG_QUERY__TOKEN__IMMUTABLE = 455,
|
1316
|
+
PG_QUERY__TOKEN__IMPLICIT_P = 456,
|
1317
|
+
PG_QUERY__TOKEN__IMPORT_P = 457,
|
1318
|
+
PG_QUERY__TOKEN__IN_P = 458,
|
1319
|
+
PG_QUERY__TOKEN__INCLUDE = 459,
|
1320
|
+
PG_QUERY__TOKEN__INCLUDING = 460,
|
1321
|
+
PG_QUERY__TOKEN__INCREMENT = 461,
|
1322
|
+
PG_QUERY__TOKEN__INDENT = 462,
|
1323
|
+
PG_QUERY__TOKEN__INDEX = 463,
|
1324
|
+
PG_QUERY__TOKEN__INDEXES = 464,
|
1325
|
+
PG_QUERY__TOKEN__INHERIT = 465,
|
1326
|
+
PG_QUERY__TOKEN__INHERITS = 466,
|
1327
|
+
PG_QUERY__TOKEN__INITIALLY = 467,
|
1328
|
+
PG_QUERY__TOKEN__INLINE_P = 468,
|
1329
|
+
PG_QUERY__TOKEN__INNER_P = 469,
|
1330
|
+
PG_QUERY__TOKEN__INOUT = 470,
|
1331
|
+
PG_QUERY__TOKEN__INPUT_P = 471,
|
1332
|
+
PG_QUERY__TOKEN__INSENSITIVE = 472,
|
1333
|
+
PG_QUERY__TOKEN__INSERT = 473,
|
1334
|
+
PG_QUERY__TOKEN__INSTEAD = 474,
|
1335
|
+
PG_QUERY__TOKEN__INT_P = 475,
|
1336
|
+
PG_QUERY__TOKEN__INTEGER = 476,
|
1337
|
+
PG_QUERY__TOKEN__INTERSECT = 477,
|
1338
|
+
PG_QUERY__TOKEN__INTERVAL = 478,
|
1339
|
+
PG_QUERY__TOKEN__INTO = 479,
|
1340
|
+
PG_QUERY__TOKEN__INVOKER = 480,
|
1341
|
+
PG_QUERY__TOKEN__IS = 481,
|
1342
|
+
PG_QUERY__TOKEN__ISNULL = 482,
|
1343
|
+
PG_QUERY__TOKEN__ISOLATION = 483,
|
1344
|
+
PG_QUERY__TOKEN__JOIN = 484,
|
1345
|
+
PG_QUERY__TOKEN__JSON = 485,
|
1346
|
+
PG_QUERY__TOKEN__JSON_ARRAY = 486,
|
1347
|
+
PG_QUERY__TOKEN__JSON_ARRAYAGG = 487,
|
1348
|
+
PG_QUERY__TOKEN__JSON_EXISTS = 488,
|
1349
|
+
PG_QUERY__TOKEN__JSON_OBJECT = 489,
|
1350
|
+
PG_QUERY__TOKEN__JSON_OBJECTAGG = 490,
|
1351
|
+
PG_QUERY__TOKEN__JSON_QUERY = 491,
|
1352
|
+
PG_QUERY__TOKEN__JSON_SCALAR = 492,
|
1353
|
+
PG_QUERY__TOKEN__JSON_SERIALIZE = 493,
|
1354
|
+
PG_QUERY__TOKEN__JSON_TABLE = 494,
|
1355
|
+
PG_QUERY__TOKEN__JSON_VALUE = 495,
|
1356
|
+
PG_QUERY__TOKEN__KEEP = 496,
|
1357
|
+
PG_QUERY__TOKEN__KEY = 497,
|
1358
|
+
PG_QUERY__TOKEN__KEYS = 498,
|
1359
|
+
PG_QUERY__TOKEN__LABEL = 499,
|
1360
|
+
PG_QUERY__TOKEN__LANGUAGE = 500,
|
1361
|
+
PG_QUERY__TOKEN__LARGE_P = 501,
|
1362
|
+
PG_QUERY__TOKEN__LAST_P = 502,
|
1363
|
+
PG_QUERY__TOKEN__LATERAL_P = 503,
|
1364
|
+
PG_QUERY__TOKEN__LEADING = 504,
|
1365
|
+
PG_QUERY__TOKEN__LEAKPROOF = 505,
|
1366
|
+
PG_QUERY__TOKEN__LEAST = 506,
|
1367
|
+
PG_QUERY__TOKEN__LEFT = 507,
|
1368
|
+
PG_QUERY__TOKEN__LEVEL = 508,
|
1369
|
+
PG_QUERY__TOKEN__LIKE = 509,
|
1370
|
+
PG_QUERY__TOKEN__LIMIT = 510,
|
1371
|
+
PG_QUERY__TOKEN__LISTEN = 511,
|
1372
|
+
PG_QUERY__TOKEN__LOAD = 512,
|
1373
|
+
PG_QUERY__TOKEN__LOCAL = 513,
|
1374
|
+
PG_QUERY__TOKEN__LOCALTIME = 514,
|
1375
|
+
PG_QUERY__TOKEN__LOCALTIMESTAMP = 515,
|
1376
|
+
PG_QUERY__TOKEN__LOCATION = 516,
|
1377
|
+
PG_QUERY__TOKEN__LOCK_P = 517,
|
1378
|
+
PG_QUERY__TOKEN__LOCKED = 518,
|
1379
|
+
PG_QUERY__TOKEN__LOGGED = 519,
|
1380
|
+
PG_QUERY__TOKEN__MAPPING = 520,
|
1381
|
+
PG_QUERY__TOKEN__MATCH = 521,
|
1382
|
+
PG_QUERY__TOKEN__MATCHED = 522,
|
1383
|
+
PG_QUERY__TOKEN__MATERIALIZED = 523,
|
1384
|
+
PG_QUERY__TOKEN__MAXVALUE = 524,
|
1385
|
+
PG_QUERY__TOKEN__MERGE = 525,
|
1386
|
+
PG_QUERY__TOKEN__MERGE_ACTION = 526,
|
1387
|
+
PG_QUERY__TOKEN__METHOD = 527,
|
1388
|
+
PG_QUERY__TOKEN__MINUTE_P = 528,
|
1389
|
+
PG_QUERY__TOKEN__MINVALUE = 529,
|
1390
|
+
PG_QUERY__TOKEN__MODE = 530,
|
1391
|
+
PG_QUERY__TOKEN__MONTH_P = 531,
|
1392
|
+
PG_QUERY__TOKEN__MOVE = 532,
|
1393
|
+
PG_QUERY__TOKEN__NAME_P = 533,
|
1394
|
+
PG_QUERY__TOKEN__NAMES = 534,
|
1395
|
+
PG_QUERY__TOKEN__NATIONAL = 535,
|
1396
|
+
PG_QUERY__TOKEN__NATURAL = 536,
|
1397
|
+
PG_QUERY__TOKEN__NCHAR = 537,
|
1398
|
+
PG_QUERY__TOKEN__NESTED = 538,
|
1399
|
+
PG_QUERY__TOKEN__NEW = 539,
|
1400
|
+
PG_QUERY__TOKEN__NEXT = 540,
|
1401
|
+
PG_QUERY__TOKEN__NFC = 541,
|
1402
|
+
PG_QUERY__TOKEN__NFD = 542,
|
1403
|
+
PG_QUERY__TOKEN__NFKC = 543,
|
1404
|
+
PG_QUERY__TOKEN__NFKD = 544,
|
1405
|
+
PG_QUERY__TOKEN__NO = 545,
|
1406
|
+
PG_QUERY__TOKEN__NONE = 546,
|
1407
|
+
PG_QUERY__TOKEN__NORMALIZE = 547,
|
1408
|
+
PG_QUERY__TOKEN__NORMALIZED = 548,
|
1409
|
+
PG_QUERY__TOKEN__NOT = 549,
|
1410
|
+
PG_QUERY__TOKEN__NOTHING = 550,
|
1411
|
+
PG_QUERY__TOKEN__NOTIFY = 551,
|
1412
|
+
PG_QUERY__TOKEN__NOTNULL = 552,
|
1413
|
+
PG_QUERY__TOKEN__NOWAIT = 553,
|
1414
|
+
PG_QUERY__TOKEN__NULL_P = 554,
|
1415
|
+
PG_QUERY__TOKEN__NULLIF = 555,
|
1416
|
+
PG_QUERY__TOKEN__NULLS_P = 556,
|
1417
|
+
PG_QUERY__TOKEN__NUMERIC = 557,
|
1418
|
+
PG_QUERY__TOKEN__OBJECT_P = 558,
|
1419
|
+
PG_QUERY__TOKEN__OF = 559,
|
1420
|
+
PG_QUERY__TOKEN__OFF = 560,
|
1421
|
+
PG_QUERY__TOKEN__OFFSET = 561,
|
1422
|
+
PG_QUERY__TOKEN__OIDS = 562,
|
1423
|
+
PG_QUERY__TOKEN__OLD = 563,
|
1424
|
+
PG_QUERY__TOKEN__OMIT = 564,
|
1425
|
+
PG_QUERY__TOKEN__ON = 565,
|
1426
|
+
PG_QUERY__TOKEN__ONLY = 566,
|
1427
|
+
PG_QUERY__TOKEN__OPERATOR = 567,
|
1428
|
+
PG_QUERY__TOKEN__OPTION = 568,
|
1429
|
+
PG_QUERY__TOKEN__OPTIONS = 569,
|
1430
|
+
PG_QUERY__TOKEN__OR = 570,
|
1431
|
+
PG_QUERY__TOKEN__ORDER = 571,
|
1432
|
+
PG_QUERY__TOKEN__ORDINALITY = 572,
|
1433
|
+
PG_QUERY__TOKEN__OTHERS = 573,
|
1434
|
+
PG_QUERY__TOKEN__OUT_P = 574,
|
1435
|
+
PG_QUERY__TOKEN__OUTER_P = 575,
|
1436
|
+
PG_QUERY__TOKEN__OVER = 576,
|
1437
|
+
PG_QUERY__TOKEN__OVERLAPS = 577,
|
1438
|
+
PG_QUERY__TOKEN__OVERLAY = 578,
|
1439
|
+
PG_QUERY__TOKEN__OVERRIDING = 579,
|
1440
|
+
PG_QUERY__TOKEN__OWNED = 580,
|
1441
|
+
PG_QUERY__TOKEN__OWNER = 581,
|
1442
|
+
PG_QUERY__TOKEN__PARALLEL = 582,
|
1443
|
+
PG_QUERY__TOKEN__PARAMETER = 583,
|
1444
|
+
PG_QUERY__TOKEN__PARSER = 584,
|
1445
|
+
PG_QUERY__TOKEN__PARTIAL = 585,
|
1446
|
+
PG_QUERY__TOKEN__PARTITION = 586,
|
1447
|
+
PG_QUERY__TOKEN__PASSING = 587,
|
1448
|
+
PG_QUERY__TOKEN__PASSWORD = 588,
|
1449
|
+
PG_QUERY__TOKEN__PATH = 589,
|
1450
|
+
PG_QUERY__TOKEN__PLACING = 590,
|
1451
|
+
PG_QUERY__TOKEN__PLAN = 591,
|
1452
|
+
PG_QUERY__TOKEN__PLANS = 592,
|
1453
|
+
PG_QUERY__TOKEN__POLICY = 593,
|
1454
|
+
PG_QUERY__TOKEN__POSITION = 594,
|
1455
|
+
PG_QUERY__TOKEN__PRECEDING = 595,
|
1456
|
+
PG_QUERY__TOKEN__PRECISION = 596,
|
1457
|
+
PG_QUERY__TOKEN__PRESERVE = 597,
|
1458
|
+
PG_QUERY__TOKEN__PREPARE = 598,
|
1459
|
+
PG_QUERY__TOKEN__PREPARED = 599,
|
1460
|
+
PG_QUERY__TOKEN__PRIMARY = 600,
|
1461
|
+
PG_QUERY__TOKEN__PRIOR = 601,
|
1462
|
+
PG_QUERY__TOKEN__PRIVILEGES = 602,
|
1463
|
+
PG_QUERY__TOKEN__PROCEDURAL = 603,
|
1464
|
+
PG_QUERY__TOKEN__PROCEDURE = 604,
|
1465
|
+
PG_QUERY__TOKEN__PROCEDURES = 605,
|
1466
|
+
PG_QUERY__TOKEN__PROGRAM = 606,
|
1467
|
+
PG_QUERY__TOKEN__PUBLICATION = 607,
|
1468
|
+
PG_QUERY__TOKEN__QUOTE = 608,
|
1469
|
+
PG_QUERY__TOKEN__QUOTES = 609,
|
1470
|
+
PG_QUERY__TOKEN__RANGE = 610,
|
1471
|
+
PG_QUERY__TOKEN__READ = 611,
|
1472
|
+
PG_QUERY__TOKEN__REAL = 612,
|
1473
|
+
PG_QUERY__TOKEN__REASSIGN = 613,
|
1474
|
+
PG_QUERY__TOKEN__RECHECK = 614,
|
1475
|
+
PG_QUERY__TOKEN__RECURSIVE = 615,
|
1476
|
+
PG_QUERY__TOKEN__REF_P = 616,
|
1477
|
+
PG_QUERY__TOKEN__REFERENCES = 617,
|
1478
|
+
PG_QUERY__TOKEN__REFERENCING = 618,
|
1479
|
+
PG_QUERY__TOKEN__REFRESH = 619,
|
1480
|
+
PG_QUERY__TOKEN__REINDEX = 620,
|
1481
|
+
PG_QUERY__TOKEN__RELATIVE_P = 621,
|
1482
|
+
PG_QUERY__TOKEN__RELEASE = 622,
|
1483
|
+
PG_QUERY__TOKEN__RENAME = 623,
|
1484
|
+
PG_QUERY__TOKEN__REPEATABLE = 624,
|
1485
|
+
PG_QUERY__TOKEN__REPLACE = 625,
|
1486
|
+
PG_QUERY__TOKEN__REPLICA = 626,
|
1487
|
+
PG_QUERY__TOKEN__RESET = 627,
|
1488
|
+
PG_QUERY__TOKEN__RESTART = 628,
|
1489
|
+
PG_QUERY__TOKEN__RESTRICT = 629,
|
1490
|
+
PG_QUERY__TOKEN__RETURN = 630,
|
1491
|
+
PG_QUERY__TOKEN__RETURNING = 631,
|
1492
|
+
PG_QUERY__TOKEN__RETURNS = 632,
|
1493
|
+
PG_QUERY__TOKEN__REVOKE = 633,
|
1494
|
+
PG_QUERY__TOKEN__RIGHT = 634,
|
1495
|
+
PG_QUERY__TOKEN__ROLE = 635,
|
1496
|
+
PG_QUERY__TOKEN__ROLLBACK = 636,
|
1497
|
+
PG_QUERY__TOKEN__ROLLUP = 637,
|
1498
|
+
PG_QUERY__TOKEN__ROUTINE = 638,
|
1499
|
+
PG_QUERY__TOKEN__ROUTINES = 639,
|
1500
|
+
PG_QUERY__TOKEN__ROW = 640,
|
1501
|
+
PG_QUERY__TOKEN__ROWS = 641,
|
1502
|
+
PG_QUERY__TOKEN__RULE = 642,
|
1503
|
+
PG_QUERY__TOKEN__SAVEPOINT = 643,
|
1504
|
+
PG_QUERY__TOKEN__SCALAR = 644,
|
1505
|
+
PG_QUERY__TOKEN__SCHEMA = 645,
|
1506
|
+
PG_QUERY__TOKEN__SCHEMAS = 646,
|
1507
|
+
PG_QUERY__TOKEN__SCROLL = 647,
|
1508
|
+
PG_QUERY__TOKEN__SEARCH = 648,
|
1509
|
+
PG_QUERY__TOKEN__SECOND_P = 649,
|
1510
|
+
PG_QUERY__TOKEN__SECURITY = 650,
|
1511
|
+
PG_QUERY__TOKEN__SELECT = 651,
|
1512
|
+
PG_QUERY__TOKEN__SEQUENCE = 652,
|
1513
|
+
PG_QUERY__TOKEN__SEQUENCES = 653,
|
1514
|
+
PG_QUERY__TOKEN__SERIALIZABLE = 654,
|
1515
|
+
PG_QUERY__TOKEN__SERVER = 655,
|
1516
|
+
PG_QUERY__TOKEN__SESSION = 656,
|
1517
|
+
PG_QUERY__TOKEN__SESSION_USER = 657,
|
1518
|
+
PG_QUERY__TOKEN__SET = 658,
|
1519
|
+
PG_QUERY__TOKEN__SETS = 659,
|
1520
|
+
PG_QUERY__TOKEN__SETOF = 660,
|
1521
|
+
PG_QUERY__TOKEN__SHARE = 661,
|
1522
|
+
PG_QUERY__TOKEN__SHOW = 662,
|
1523
|
+
PG_QUERY__TOKEN__SIMILAR = 663,
|
1524
|
+
PG_QUERY__TOKEN__SIMPLE = 664,
|
1525
|
+
PG_QUERY__TOKEN__SKIP = 665,
|
1526
|
+
PG_QUERY__TOKEN__SMALLINT = 666,
|
1527
|
+
PG_QUERY__TOKEN__SNAPSHOT = 667,
|
1528
|
+
PG_QUERY__TOKEN__SOME = 668,
|
1529
|
+
PG_QUERY__TOKEN__SOURCE = 669,
|
1530
|
+
PG_QUERY__TOKEN__SQL_P = 670,
|
1531
|
+
PG_QUERY__TOKEN__STABLE = 671,
|
1532
|
+
PG_QUERY__TOKEN__STANDALONE_P = 672,
|
1533
|
+
PG_QUERY__TOKEN__START = 673,
|
1534
|
+
PG_QUERY__TOKEN__STATEMENT = 674,
|
1535
|
+
PG_QUERY__TOKEN__STATISTICS = 675,
|
1536
|
+
PG_QUERY__TOKEN__STDIN = 676,
|
1537
|
+
PG_QUERY__TOKEN__STDOUT = 677,
|
1538
|
+
PG_QUERY__TOKEN__STORAGE = 678,
|
1539
|
+
PG_QUERY__TOKEN__STORED = 679,
|
1540
|
+
PG_QUERY__TOKEN__STRICT_P = 680,
|
1541
|
+
PG_QUERY__TOKEN__STRING_P = 681,
|
1542
|
+
PG_QUERY__TOKEN__STRIP_P = 682,
|
1543
|
+
PG_QUERY__TOKEN__SUBSCRIPTION = 683,
|
1544
|
+
PG_QUERY__TOKEN__SUBSTRING = 684,
|
1545
|
+
PG_QUERY__TOKEN__SUPPORT = 685,
|
1546
|
+
PG_QUERY__TOKEN__SYMMETRIC = 686,
|
1547
|
+
PG_QUERY__TOKEN__SYSID = 687,
|
1548
|
+
PG_QUERY__TOKEN__SYSTEM_P = 688,
|
1549
|
+
PG_QUERY__TOKEN__SYSTEM_USER = 689,
|
1550
|
+
PG_QUERY__TOKEN__TABLE = 690,
|
1551
|
+
PG_QUERY__TOKEN__TABLES = 691,
|
1552
|
+
PG_QUERY__TOKEN__TABLESAMPLE = 692,
|
1553
|
+
PG_QUERY__TOKEN__TABLESPACE = 693,
|
1554
|
+
PG_QUERY__TOKEN__TARGET = 694,
|
1555
|
+
PG_QUERY__TOKEN__TEMP = 695,
|
1556
|
+
PG_QUERY__TOKEN__TEMPLATE = 696,
|
1557
|
+
PG_QUERY__TOKEN__TEMPORARY = 697,
|
1558
|
+
PG_QUERY__TOKEN__TEXT_P = 698,
|
1559
|
+
PG_QUERY__TOKEN__THEN = 699,
|
1560
|
+
PG_QUERY__TOKEN__TIES = 700,
|
1561
|
+
PG_QUERY__TOKEN__TIME = 701,
|
1562
|
+
PG_QUERY__TOKEN__TIMESTAMP = 702,
|
1563
|
+
PG_QUERY__TOKEN__TO = 703,
|
1564
|
+
PG_QUERY__TOKEN__TRAILING = 704,
|
1565
|
+
PG_QUERY__TOKEN__TRANSACTION = 705,
|
1566
|
+
PG_QUERY__TOKEN__TRANSFORM = 706,
|
1567
|
+
PG_QUERY__TOKEN__TREAT = 707,
|
1568
|
+
PG_QUERY__TOKEN__TRIGGER = 708,
|
1569
|
+
PG_QUERY__TOKEN__TRIM = 709,
|
1570
|
+
PG_QUERY__TOKEN__TRUE_P = 710,
|
1571
|
+
PG_QUERY__TOKEN__TRUNCATE = 711,
|
1572
|
+
PG_QUERY__TOKEN__TRUSTED = 712,
|
1573
|
+
PG_QUERY__TOKEN__TYPE_P = 713,
|
1574
|
+
PG_QUERY__TOKEN__TYPES_P = 714,
|
1575
|
+
PG_QUERY__TOKEN__UESCAPE = 715,
|
1576
|
+
PG_QUERY__TOKEN__UNBOUNDED = 716,
|
1577
|
+
PG_QUERY__TOKEN__UNCONDITIONAL = 717,
|
1578
|
+
PG_QUERY__TOKEN__UNCOMMITTED = 718,
|
1579
|
+
PG_QUERY__TOKEN__UNENCRYPTED = 719,
|
1580
|
+
PG_QUERY__TOKEN__UNION = 720,
|
1581
|
+
PG_QUERY__TOKEN__UNIQUE = 721,
|
1582
|
+
PG_QUERY__TOKEN__UNKNOWN = 722,
|
1583
|
+
PG_QUERY__TOKEN__UNLISTEN = 723,
|
1584
|
+
PG_QUERY__TOKEN__UNLOGGED = 724,
|
1585
|
+
PG_QUERY__TOKEN__UNTIL = 725,
|
1586
|
+
PG_QUERY__TOKEN__UPDATE = 726,
|
1587
|
+
PG_QUERY__TOKEN__USER = 727,
|
1588
|
+
PG_QUERY__TOKEN__USING = 728,
|
1589
|
+
PG_QUERY__TOKEN__VACUUM = 729,
|
1590
|
+
PG_QUERY__TOKEN__VALID = 730,
|
1591
|
+
PG_QUERY__TOKEN__VALIDATE = 731,
|
1592
|
+
PG_QUERY__TOKEN__VALIDATOR = 732,
|
1593
|
+
PG_QUERY__TOKEN__VALUE_P = 733,
|
1594
|
+
PG_QUERY__TOKEN__VALUES = 734,
|
1595
|
+
PG_QUERY__TOKEN__VARCHAR = 735,
|
1596
|
+
PG_QUERY__TOKEN__VARIADIC = 736,
|
1597
|
+
PG_QUERY__TOKEN__VARYING = 737,
|
1598
|
+
PG_QUERY__TOKEN__VERBOSE = 738,
|
1599
|
+
PG_QUERY__TOKEN__VERSION_P = 739,
|
1600
|
+
PG_QUERY__TOKEN__VIEW = 740,
|
1601
|
+
PG_QUERY__TOKEN__VIEWS = 741,
|
1602
|
+
PG_QUERY__TOKEN__VOLATILE = 742,
|
1603
|
+
PG_QUERY__TOKEN__WHEN = 743,
|
1604
|
+
PG_QUERY__TOKEN__WHERE = 744,
|
1605
|
+
PG_QUERY__TOKEN__WHITESPACE_P = 745,
|
1606
|
+
PG_QUERY__TOKEN__WINDOW = 746,
|
1607
|
+
PG_QUERY__TOKEN__WITH = 747,
|
1608
|
+
PG_QUERY__TOKEN__WITHIN = 748,
|
1609
|
+
PG_QUERY__TOKEN__WITHOUT = 749,
|
1610
|
+
PG_QUERY__TOKEN__WORK = 750,
|
1611
|
+
PG_QUERY__TOKEN__WRAPPER = 751,
|
1612
|
+
PG_QUERY__TOKEN__WRITE = 752,
|
1613
|
+
PG_QUERY__TOKEN__XML_P = 753,
|
1614
|
+
PG_QUERY__TOKEN__XMLATTRIBUTES = 754,
|
1615
|
+
PG_QUERY__TOKEN__XMLCONCAT = 755,
|
1616
|
+
PG_QUERY__TOKEN__XMLELEMENT = 756,
|
1617
|
+
PG_QUERY__TOKEN__XMLEXISTS = 757,
|
1618
|
+
PG_QUERY__TOKEN__XMLFOREST = 758,
|
1619
|
+
PG_QUERY__TOKEN__XMLNAMESPACES = 759,
|
1620
|
+
PG_QUERY__TOKEN__XMLPARSE = 760,
|
1621
|
+
PG_QUERY__TOKEN__XMLPI = 761,
|
1622
|
+
PG_QUERY__TOKEN__XMLROOT = 762,
|
1623
|
+
PG_QUERY__TOKEN__XMLSERIALIZE = 763,
|
1624
|
+
PG_QUERY__TOKEN__XMLTABLE = 764,
|
1625
|
+
PG_QUERY__TOKEN__YEAR_P = 765,
|
1626
|
+
PG_QUERY__TOKEN__YES_P = 766,
|
1627
|
+
PG_QUERY__TOKEN__ZONE = 767,
|
1628
|
+
PG_QUERY__TOKEN__FORMAT_LA = 768,
|
1629
|
+
PG_QUERY__TOKEN__NOT_LA = 769,
|
1630
|
+
PG_QUERY__TOKEN__NULLS_LA = 770,
|
1631
|
+
PG_QUERY__TOKEN__WITH_LA = 771,
|
1632
|
+
PG_QUERY__TOKEN__WITHOUT_LA = 772,
|
1633
|
+
PG_QUERY__TOKEN__MODE_TYPE_NAME = 773,
|
1634
|
+
PG_QUERY__TOKEN__MODE_PLPGSQL_EXPR = 774,
|
1635
|
+
PG_QUERY__TOKEN__MODE_PLPGSQL_ASSIGN1 = 775,
|
1636
|
+
PG_QUERY__TOKEN__MODE_PLPGSQL_ASSIGN2 = 776,
|
1637
|
+
PG_QUERY__TOKEN__MODE_PLPGSQL_ASSIGN3 = 777,
|
1638
|
+
PG_QUERY__TOKEN__UMINUS = 778
|
1541
1639
|
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__TOKEN)
|
1542
1640
|
} PgQuery__Token;
|
1543
1641
|
|
@@ -1578,249 +1676,265 @@ typedef enum {
|
|
1578
1676
|
PG_QUERY__NODE__NODE_AGGREF = 7,
|
1579
1677
|
PG_QUERY__NODE__NODE_GROUPING_FUNC = 8,
|
1580
1678
|
PG_QUERY__NODE__NODE_WINDOW_FUNC = 9,
|
1581
|
-
|
1582
|
-
|
1583
|
-
|
1584
|
-
|
1585
|
-
|
1586
|
-
|
1587
|
-
|
1588
|
-
|
1589
|
-
|
1590
|
-
|
1591
|
-
|
1592
|
-
|
1593
|
-
|
1594
|
-
|
1595
|
-
|
1596
|
-
|
1597
|
-
|
1598
|
-
|
1599
|
-
|
1600
|
-
|
1601
|
-
|
1602
|
-
|
1603
|
-
|
1604
|
-
|
1605
|
-
|
1606
|
-
|
1607
|
-
|
1608
|
-
|
1609
|
-
|
1610
|
-
|
1611
|
-
|
1612
|
-
|
1613
|
-
|
1614
|
-
|
1615
|
-
|
1616
|
-
|
1617
|
-
|
1618
|
-
|
1619
|
-
|
1620
|
-
|
1621
|
-
|
1622
|
-
|
1623
|
-
|
1624
|
-
|
1625
|
-
|
1626
|
-
|
1627
|
-
|
1628
|
-
|
1629
|
-
|
1630
|
-
|
1631
|
-
|
1632
|
-
|
1633
|
-
|
1634
|
-
|
1635
|
-
|
1636
|
-
|
1637
|
-
|
1638
|
-
|
1639
|
-
|
1640
|
-
|
1641
|
-
|
1642
|
-
|
1643
|
-
|
1644
|
-
|
1645
|
-
|
1646
|
-
|
1647
|
-
|
1648
|
-
|
1649
|
-
|
1650
|
-
|
1651
|
-
|
1652
|
-
|
1653
|
-
|
1654
|
-
|
1655
|
-
|
1656
|
-
|
1657
|
-
|
1658
|
-
|
1659
|
-
|
1660
|
-
|
1661
|
-
|
1662
|
-
|
1663
|
-
|
1664
|
-
|
1665
|
-
|
1666
|
-
|
1667
|
-
|
1668
|
-
|
1669
|
-
|
1670
|
-
|
1671
|
-
|
1672
|
-
|
1673
|
-
|
1674
|
-
|
1675
|
-
|
1676
|
-
|
1677
|
-
|
1678
|
-
|
1679
|
-
|
1680
|
-
|
1681
|
-
|
1682
|
-
|
1683
|
-
|
1684
|
-
|
1685
|
-
|
1686
|
-
|
1687
|
-
|
1688
|
-
|
1689
|
-
|
1690
|
-
|
1691
|
-
|
1692
|
-
|
1693
|
-
|
1694
|
-
|
1695
|
-
|
1696
|
-
|
1697
|
-
|
1698
|
-
|
1699
|
-
|
1700
|
-
|
1701
|
-
|
1702
|
-
|
1703
|
-
|
1704
|
-
|
1705
|
-
|
1706
|
-
|
1707
|
-
|
1708
|
-
|
1709
|
-
|
1710
|
-
|
1711
|
-
|
1712
|
-
|
1713
|
-
|
1714
|
-
|
1715
|
-
|
1716
|
-
|
1717
|
-
|
1718
|
-
|
1719
|
-
|
1720
|
-
|
1721
|
-
|
1722
|
-
|
1723
|
-
|
1724
|
-
|
1725
|
-
|
1726
|
-
|
1727
|
-
|
1728
|
-
|
1729
|
-
|
1730
|
-
|
1731
|
-
|
1732
|
-
|
1733
|
-
|
1734
|
-
|
1735
|
-
|
1736
|
-
|
1737
|
-
|
1738
|
-
|
1739
|
-
|
1740
|
-
|
1741
|
-
|
1742
|
-
|
1743
|
-
|
1744
|
-
|
1745
|
-
|
1746
|
-
|
1747
|
-
|
1748
|
-
|
1749
|
-
|
1750
|
-
|
1751
|
-
|
1752
|
-
|
1753
|
-
|
1754
|
-
|
1755
|
-
|
1756
|
-
|
1757
|
-
|
1758
|
-
|
1759
|
-
|
1760
|
-
|
1761
|
-
|
1762
|
-
|
1763
|
-
|
1764
|
-
|
1765
|
-
|
1766
|
-
|
1767
|
-
|
1768
|
-
|
1769
|
-
|
1770
|
-
|
1771
|
-
|
1772
|
-
|
1773
|
-
|
1774
|
-
|
1775
|
-
|
1776
|
-
|
1777
|
-
|
1778
|
-
|
1779
|
-
|
1780
|
-
|
1781
|
-
|
1782
|
-
|
1783
|
-
|
1784
|
-
|
1785
|
-
|
1786
|
-
|
1787
|
-
|
1788
|
-
|
1789
|
-
|
1790
|
-
|
1791
|
-
|
1792
|
-
|
1793
|
-
|
1794
|
-
|
1795
|
-
|
1796
|
-
|
1797
|
-
|
1798
|
-
|
1799
|
-
|
1800
|
-
|
1801
|
-
|
1802
|
-
|
1803
|
-
|
1804
|
-
|
1805
|
-
|
1806
|
-
|
1807
|
-
|
1808
|
-
|
1809
|
-
|
1810
|
-
|
1811
|
-
|
1812
|
-
|
1813
|
-
|
1814
|
-
|
1815
|
-
|
1816
|
-
|
1817
|
-
|
1818
|
-
|
1819
|
-
|
1820
|
-
|
1821
|
-
|
1822
|
-
|
1823
|
-
|
1679
|
+
PG_QUERY__NODE__NODE_WINDOW_FUNC_RUN_CONDITION = 10,
|
1680
|
+
PG_QUERY__NODE__NODE_MERGE_SUPPORT_FUNC = 11,
|
1681
|
+
PG_QUERY__NODE__NODE_SUBSCRIPTING_REF = 12,
|
1682
|
+
PG_QUERY__NODE__NODE_FUNC_EXPR = 13,
|
1683
|
+
PG_QUERY__NODE__NODE_NAMED_ARG_EXPR = 14,
|
1684
|
+
PG_QUERY__NODE__NODE_OP_EXPR = 15,
|
1685
|
+
PG_QUERY__NODE__NODE_DISTINCT_EXPR = 16,
|
1686
|
+
PG_QUERY__NODE__NODE_NULL_IF_EXPR = 17,
|
1687
|
+
PG_QUERY__NODE__NODE_SCALAR_ARRAY_OP_EXPR = 18,
|
1688
|
+
PG_QUERY__NODE__NODE_BOOL_EXPR = 19,
|
1689
|
+
PG_QUERY__NODE__NODE_SUB_LINK = 20,
|
1690
|
+
PG_QUERY__NODE__NODE_SUB_PLAN = 21,
|
1691
|
+
PG_QUERY__NODE__NODE_ALTERNATIVE_SUB_PLAN = 22,
|
1692
|
+
PG_QUERY__NODE__NODE_FIELD_SELECT = 23,
|
1693
|
+
PG_QUERY__NODE__NODE_FIELD_STORE = 24,
|
1694
|
+
PG_QUERY__NODE__NODE_RELABEL_TYPE = 25,
|
1695
|
+
PG_QUERY__NODE__NODE_COERCE_VIA_IO = 26,
|
1696
|
+
PG_QUERY__NODE__NODE_ARRAY_COERCE_EXPR = 27,
|
1697
|
+
PG_QUERY__NODE__NODE_CONVERT_ROWTYPE_EXPR = 28,
|
1698
|
+
PG_QUERY__NODE__NODE_COLLATE_EXPR = 29,
|
1699
|
+
PG_QUERY__NODE__NODE_CASE_EXPR = 30,
|
1700
|
+
PG_QUERY__NODE__NODE_CASE_WHEN = 31,
|
1701
|
+
PG_QUERY__NODE__NODE_CASE_TEST_EXPR = 32,
|
1702
|
+
PG_QUERY__NODE__NODE_ARRAY_EXPR = 33,
|
1703
|
+
PG_QUERY__NODE__NODE_ROW_EXPR = 34,
|
1704
|
+
PG_QUERY__NODE__NODE_ROW_COMPARE_EXPR = 35,
|
1705
|
+
PG_QUERY__NODE__NODE_COALESCE_EXPR = 36,
|
1706
|
+
PG_QUERY__NODE__NODE_MIN_MAX_EXPR = 37,
|
1707
|
+
PG_QUERY__NODE__NODE_SQLVALUE_FUNCTION = 38,
|
1708
|
+
PG_QUERY__NODE__NODE_XML_EXPR = 39,
|
1709
|
+
PG_QUERY__NODE__NODE_JSON_FORMAT = 40,
|
1710
|
+
PG_QUERY__NODE__NODE_JSON_RETURNING = 41,
|
1711
|
+
PG_QUERY__NODE__NODE_JSON_VALUE_EXPR = 42,
|
1712
|
+
PG_QUERY__NODE__NODE_JSON_CONSTRUCTOR_EXPR = 43,
|
1713
|
+
PG_QUERY__NODE__NODE_JSON_IS_PREDICATE = 44,
|
1714
|
+
PG_QUERY__NODE__NODE_JSON_BEHAVIOR = 45,
|
1715
|
+
PG_QUERY__NODE__NODE_JSON_EXPR = 46,
|
1716
|
+
PG_QUERY__NODE__NODE_JSON_TABLE_PATH = 47,
|
1717
|
+
PG_QUERY__NODE__NODE_JSON_TABLE_PATH_SCAN = 48,
|
1718
|
+
PG_QUERY__NODE__NODE_JSON_TABLE_SIBLING_JOIN = 49,
|
1719
|
+
PG_QUERY__NODE__NODE_NULL_TEST = 50,
|
1720
|
+
PG_QUERY__NODE__NODE_BOOLEAN_TEST = 51,
|
1721
|
+
PG_QUERY__NODE__NODE_MERGE_ACTION = 52,
|
1722
|
+
PG_QUERY__NODE__NODE_COERCE_TO_DOMAIN = 53,
|
1723
|
+
PG_QUERY__NODE__NODE_COERCE_TO_DOMAIN_VALUE = 54,
|
1724
|
+
PG_QUERY__NODE__NODE_SET_TO_DEFAULT = 55,
|
1725
|
+
PG_QUERY__NODE__NODE_CURRENT_OF_EXPR = 56,
|
1726
|
+
PG_QUERY__NODE__NODE_NEXT_VALUE_EXPR = 57,
|
1727
|
+
PG_QUERY__NODE__NODE_INFERENCE_ELEM = 58,
|
1728
|
+
PG_QUERY__NODE__NODE_TARGET_ENTRY = 59,
|
1729
|
+
PG_QUERY__NODE__NODE_RANGE_TBL_REF = 60,
|
1730
|
+
PG_QUERY__NODE__NODE_JOIN_EXPR = 61,
|
1731
|
+
PG_QUERY__NODE__NODE_FROM_EXPR = 62,
|
1732
|
+
PG_QUERY__NODE__NODE_ON_CONFLICT_EXPR = 63,
|
1733
|
+
PG_QUERY__NODE__NODE_QUERY = 64,
|
1734
|
+
PG_QUERY__NODE__NODE_TYPE_NAME = 65,
|
1735
|
+
PG_QUERY__NODE__NODE_COLUMN_REF = 66,
|
1736
|
+
PG_QUERY__NODE__NODE_PARAM_REF = 67,
|
1737
|
+
PG_QUERY__NODE__NODE_A_EXPR = 68,
|
1738
|
+
PG_QUERY__NODE__NODE_TYPE_CAST = 69,
|
1739
|
+
PG_QUERY__NODE__NODE_COLLATE_CLAUSE = 70,
|
1740
|
+
PG_QUERY__NODE__NODE_ROLE_SPEC = 71,
|
1741
|
+
PG_QUERY__NODE__NODE_FUNC_CALL = 72,
|
1742
|
+
PG_QUERY__NODE__NODE_A_STAR = 73,
|
1743
|
+
PG_QUERY__NODE__NODE_A_INDICES = 74,
|
1744
|
+
PG_QUERY__NODE__NODE_A_INDIRECTION = 75,
|
1745
|
+
PG_QUERY__NODE__NODE_A_ARRAY_EXPR = 76,
|
1746
|
+
PG_QUERY__NODE__NODE_RES_TARGET = 77,
|
1747
|
+
PG_QUERY__NODE__NODE_MULTI_ASSIGN_REF = 78,
|
1748
|
+
PG_QUERY__NODE__NODE_SORT_BY = 79,
|
1749
|
+
PG_QUERY__NODE__NODE_WINDOW_DEF = 80,
|
1750
|
+
PG_QUERY__NODE__NODE_RANGE_SUBSELECT = 81,
|
1751
|
+
PG_QUERY__NODE__NODE_RANGE_FUNCTION = 82,
|
1752
|
+
PG_QUERY__NODE__NODE_RANGE_TABLE_FUNC = 83,
|
1753
|
+
PG_QUERY__NODE__NODE_RANGE_TABLE_FUNC_COL = 84,
|
1754
|
+
PG_QUERY__NODE__NODE_RANGE_TABLE_SAMPLE = 85,
|
1755
|
+
PG_QUERY__NODE__NODE_COLUMN_DEF = 86,
|
1756
|
+
PG_QUERY__NODE__NODE_TABLE_LIKE_CLAUSE = 87,
|
1757
|
+
PG_QUERY__NODE__NODE_INDEX_ELEM = 88,
|
1758
|
+
PG_QUERY__NODE__NODE_DEF_ELEM = 89,
|
1759
|
+
PG_QUERY__NODE__NODE_LOCKING_CLAUSE = 90,
|
1760
|
+
PG_QUERY__NODE__NODE_XML_SERIALIZE = 91,
|
1761
|
+
PG_QUERY__NODE__NODE_PARTITION_ELEM = 92,
|
1762
|
+
PG_QUERY__NODE__NODE_PARTITION_SPEC = 93,
|
1763
|
+
PG_QUERY__NODE__NODE_PARTITION_BOUND_SPEC = 94,
|
1764
|
+
PG_QUERY__NODE__NODE_PARTITION_RANGE_DATUM = 95,
|
1765
|
+
PG_QUERY__NODE__NODE_SINGLE_PARTITION_SPEC = 96,
|
1766
|
+
PG_QUERY__NODE__NODE_PARTITION_CMD = 97,
|
1767
|
+
PG_QUERY__NODE__NODE_RANGE_TBL_ENTRY = 98,
|
1768
|
+
PG_QUERY__NODE__NODE_RTEPERMISSION_INFO = 99,
|
1769
|
+
PG_QUERY__NODE__NODE_RANGE_TBL_FUNCTION = 100,
|
1770
|
+
PG_QUERY__NODE__NODE_TABLE_SAMPLE_CLAUSE = 101,
|
1771
|
+
PG_QUERY__NODE__NODE_WITH_CHECK_OPTION = 102,
|
1772
|
+
PG_QUERY__NODE__NODE_SORT_GROUP_CLAUSE = 103,
|
1773
|
+
PG_QUERY__NODE__NODE_GROUPING_SET = 104,
|
1774
|
+
PG_QUERY__NODE__NODE_WINDOW_CLAUSE = 105,
|
1775
|
+
PG_QUERY__NODE__NODE_ROW_MARK_CLAUSE = 106,
|
1776
|
+
PG_QUERY__NODE__NODE_WITH_CLAUSE = 107,
|
1777
|
+
PG_QUERY__NODE__NODE_INFER_CLAUSE = 108,
|
1778
|
+
PG_QUERY__NODE__NODE_ON_CONFLICT_CLAUSE = 109,
|
1779
|
+
PG_QUERY__NODE__NODE_CTESEARCH_CLAUSE = 110,
|
1780
|
+
PG_QUERY__NODE__NODE_CTECYCLE_CLAUSE = 111,
|
1781
|
+
PG_QUERY__NODE__NODE_COMMON_TABLE_EXPR = 112,
|
1782
|
+
PG_QUERY__NODE__NODE_MERGE_WHEN_CLAUSE = 113,
|
1783
|
+
PG_QUERY__NODE__NODE_TRIGGER_TRANSITION = 114,
|
1784
|
+
PG_QUERY__NODE__NODE_JSON_OUTPUT = 115,
|
1785
|
+
PG_QUERY__NODE__NODE_JSON_ARGUMENT = 116,
|
1786
|
+
PG_QUERY__NODE__NODE_JSON_FUNC_EXPR = 117,
|
1787
|
+
PG_QUERY__NODE__NODE_JSON_TABLE_PATH_SPEC = 118,
|
1788
|
+
PG_QUERY__NODE__NODE_JSON_TABLE = 119,
|
1789
|
+
PG_QUERY__NODE__NODE_JSON_TABLE_COLUMN = 120,
|
1790
|
+
PG_QUERY__NODE__NODE_JSON_KEY_VALUE = 121,
|
1791
|
+
PG_QUERY__NODE__NODE_JSON_PARSE_EXPR = 122,
|
1792
|
+
PG_QUERY__NODE__NODE_JSON_SCALAR_EXPR = 123,
|
1793
|
+
PG_QUERY__NODE__NODE_JSON_SERIALIZE_EXPR = 124,
|
1794
|
+
PG_QUERY__NODE__NODE_JSON_OBJECT_CONSTRUCTOR = 125,
|
1795
|
+
PG_QUERY__NODE__NODE_JSON_ARRAY_CONSTRUCTOR = 126,
|
1796
|
+
PG_QUERY__NODE__NODE_JSON_ARRAY_QUERY_CONSTRUCTOR = 127,
|
1797
|
+
PG_QUERY__NODE__NODE_JSON_AGG_CONSTRUCTOR = 128,
|
1798
|
+
PG_QUERY__NODE__NODE_JSON_OBJECT_AGG = 129,
|
1799
|
+
PG_QUERY__NODE__NODE_JSON_ARRAY_AGG = 130,
|
1800
|
+
PG_QUERY__NODE__NODE_RAW_STMT = 131,
|
1801
|
+
PG_QUERY__NODE__NODE_INSERT_STMT = 132,
|
1802
|
+
PG_QUERY__NODE__NODE_DELETE_STMT = 133,
|
1803
|
+
PG_QUERY__NODE__NODE_UPDATE_STMT = 134,
|
1804
|
+
PG_QUERY__NODE__NODE_MERGE_STMT = 135,
|
1805
|
+
PG_QUERY__NODE__NODE_SELECT_STMT = 136,
|
1806
|
+
PG_QUERY__NODE__NODE_SET_OPERATION_STMT = 137,
|
1807
|
+
PG_QUERY__NODE__NODE_RETURN_STMT = 138,
|
1808
|
+
PG_QUERY__NODE__NODE_PLASSIGN_STMT = 139,
|
1809
|
+
PG_QUERY__NODE__NODE_CREATE_SCHEMA_STMT = 140,
|
1810
|
+
PG_QUERY__NODE__NODE_ALTER_TABLE_STMT = 141,
|
1811
|
+
PG_QUERY__NODE__NODE_REPLICA_IDENTITY_STMT = 142,
|
1812
|
+
PG_QUERY__NODE__NODE_ALTER_TABLE_CMD = 143,
|
1813
|
+
PG_QUERY__NODE__NODE_ALTER_COLLATION_STMT = 144,
|
1814
|
+
PG_QUERY__NODE__NODE_ALTER_DOMAIN_STMT = 145,
|
1815
|
+
PG_QUERY__NODE__NODE_GRANT_STMT = 146,
|
1816
|
+
PG_QUERY__NODE__NODE_OBJECT_WITH_ARGS = 147,
|
1817
|
+
PG_QUERY__NODE__NODE_ACCESS_PRIV = 148,
|
1818
|
+
PG_QUERY__NODE__NODE_GRANT_ROLE_STMT = 149,
|
1819
|
+
PG_QUERY__NODE__NODE_ALTER_DEFAULT_PRIVILEGES_STMT = 150,
|
1820
|
+
PG_QUERY__NODE__NODE_COPY_STMT = 151,
|
1821
|
+
PG_QUERY__NODE__NODE_VARIABLE_SET_STMT = 152,
|
1822
|
+
PG_QUERY__NODE__NODE_VARIABLE_SHOW_STMT = 153,
|
1823
|
+
PG_QUERY__NODE__NODE_CREATE_STMT = 154,
|
1824
|
+
PG_QUERY__NODE__NODE_CONSTRAINT = 155,
|
1825
|
+
PG_QUERY__NODE__NODE_CREATE_TABLE_SPACE_STMT = 156,
|
1826
|
+
PG_QUERY__NODE__NODE_DROP_TABLE_SPACE_STMT = 157,
|
1827
|
+
PG_QUERY__NODE__NODE_ALTER_TABLE_SPACE_OPTIONS_STMT = 158,
|
1828
|
+
PG_QUERY__NODE__NODE_ALTER_TABLE_MOVE_ALL_STMT = 159,
|
1829
|
+
PG_QUERY__NODE__NODE_CREATE_EXTENSION_STMT = 160,
|
1830
|
+
PG_QUERY__NODE__NODE_ALTER_EXTENSION_STMT = 161,
|
1831
|
+
PG_QUERY__NODE__NODE_ALTER_EXTENSION_CONTENTS_STMT = 162,
|
1832
|
+
PG_QUERY__NODE__NODE_CREATE_FDW_STMT = 163,
|
1833
|
+
PG_QUERY__NODE__NODE_ALTER_FDW_STMT = 164,
|
1834
|
+
PG_QUERY__NODE__NODE_CREATE_FOREIGN_SERVER_STMT = 165,
|
1835
|
+
PG_QUERY__NODE__NODE_ALTER_FOREIGN_SERVER_STMT = 166,
|
1836
|
+
PG_QUERY__NODE__NODE_CREATE_FOREIGN_TABLE_STMT = 167,
|
1837
|
+
PG_QUERY__NODE__NODE_CREATE_USER_MAPPING_STMT = 168,
|
1838
|
+
PG_QUERY__NODE__NODE_ALTER_USER_MAPPING_STMT = 169,
|
1839
|
+
PG_QUERY__NODE__NODE_DROP_USER_MAPPING_STMT = 170,
|
1840
|
+
PG_QUERY__NODE__NODE_IMPORT_FOREIGN_SCHEMA_STMT = 171,
|
1841
|
+
PG_QUERY__NODE__NODE_CREATE_POLICY_STMT = 172,
|
1842
|
+
PG_QUERY__NODE__NODE_ALTER_POLICY_STMT = 173,
|
1843
|
+
PG_QUERY__NODE__NODE_CREATE_AM_STMT = 174,
|
1844
|
+
PG_QUERY__NODE__NODE_CREATE_TRIG_STMT = 175,
|
1845
|
+
PG_QUERY__NODE__NODE_CREATE_EVENT_TRIG_STMT = 176,
|
1846
|
+
PG_QUERY__NODE__NODE_ALTER_EVENT_TRIG_STMT = 177,
|
1847
|
+
PG_QUERY__NODE__NODE_CREATE_PLANG_STMT = 178,
|
1848
|
+
PG_QUERY__NODE__NODE_CREATE_ROLE_STMT = 179,
|
1849
|
+
PG_QUERY__NODE__NODE_ALTER_ROLE_STMT = 180,
|
1850
|
+
PG_QUERY__NODE__NODE_ALTER_ROLE_SET_STMT = 181,
|
1851
|
+
PG_QUERY__NODE__NODE_DROP_ROLE_STMT = 182,
|
1852
|
+
PG_QUERY__NODE__NODE_CREATE_SEQ_STMT = 183,
|
1853
|
+
PG_QUERY__NODE__NODE_ALTER_SEQ_STMT = 184,
|
1854
|
+
PG_QUERY__NODE__NODE_DEFINE_STMT = 185,
|
1855
|
+
PG_QUERY__NODE__NODE_CREATE_DOMAIN_STMT = 186,
|
1856
|
+
PG_QUERY__NODE__NODE_CREATE_OP_CLASS_STMT = 187,
|
1857
|
+
PG_QUERY__NODE__NODE_CREATE_OP_CLASS_ITEM = 188,
|
1858
|
+
PG_QUERY__NODE__NODE_CREATE_OP_FAMILY_STMT = 189,
|
1859
|
+
PG_QUERY__NODE__NODE_ALTER_OP_FAMILY_STMT = 190,
|
1860
|
+
PG_QUERY__NODE__NODE_DROP_STMT = 191,
|
1861
|
+
PG_QUERY__NODE__NODE_TRUNCATE_STMT = 192,
|
1862
|
+
PG_QUERY__NODE__NODE_COMMENT_STMT = 193,
|
1863
|
+
PG_QUERY__NODE__NODE_SEC_LABEL_STMT = 194,
|
1864
|
+
PG_QUERY__NODE__NODE_DECLARE_CURSOR_STMT = 195,
|
1865
|
+
PG_QUERY__NODE__NODE_CLOSE_PORTAL_STMT = 196,
|
1866
|
+
PG_QUERY__NODE__NODE_FETCH_STMT = 197,
|
1867
|
+
PG_QUERY__NODE__NODE_INDEX_STMT = 198,
|
1868
|
+
PG_QUERY__NODE__NODE_CREATE_STATS_STMT = 199,
|
1869
|
+
PG_QUERY__NODE__NODE_STATS_ELEM = 200,
|
1870
|
+
PG_QUERY__NODE__NODE_ALTER_STATS_STMT = 201,
|
1871
|
+
PG_QUERY__NODE__NODE_CREATE_FUNCTION_STMT = 202,
|
1872
|
+
PG_QUERY__NODE__NODE_FUNCTION_PARAMETER = 203,
|
1873
|
+
PG_QUERY__NODE__NODE_ALTER_FUNCTION_STMT = 204,
|
1874
|
+
PG_QUERY__NODE__NODE_DO_STMT = 205,
|
1875
|
+
PG_QUERY__NODE__NODE_INLINE_CODE_BLOCK = 206,
|
1876
|
+
PG_QUERY__NODE__NODE_CALL_STMT = 207,
|
1877
|
+
PG_QUERY__NODE__NODE_CALL_CONTEXT = 208,
|
1878
|
+
PG_QUERY__NODE__NODE_RENAME_STMT = 209,
|
1879
|
+
PG_QUERY__NODE__NODE_ALTER_OBJECT_DEPENDS_STMT = 210,
|
1880
|
+
PG_QUERY__NODE__NODE_ALTER_OBJECT_SCHEMA_STMT = 211,
|
1881
|
+
PG_QUERY__NODE__NODE_ALTER_OWNER_STMT = 212,
|
1882
|
+
PG_QUERY__NODE__NODE_ALTER_OPERATOR_STMT = 213,
|
1883
|
+
PG_QUERY__NODE__NODE_ALTER_TYPE_STMT = 214,
|
1884
|
+
PG_QUERY__NODE__NODE_RULE_STMT = 215,
|
1885
|
+
PG_QUERY__NODE__NODE_NOTIFY_STMT = 216,
|
1886
|
+
PG_QUERY__NODE__NODE_LISTEN_STMT = 217,
|
1887
|
+
PG_QUERY__NODE__NODE_UNLISTEN_STMT = 218,
|
1888
|
+
PG_QUERY__NODE__NODE_TRANSACTION_STMT = 219,
|
1889
|
+
PG_QUERY__NODE__NODE_COMPOSITE_TYPE_STMT = 220,
|
1890
|
+
PG_QUERY__NODE__NODE_CREATE_ENUM_STMT = 221,
|
1891
|
+
PG_QUERY__NODE__NODE_CREATE_RANGE_STMT = 222,
|
1892
|
+
PG_QUERY__NODE__NODE_ALTER_ENUM_STMT = 223,
|
1893
|
+
PG_QUERY__NODE__NODE_VIEW_STMT = 224,
|
1894
|
+
PG_QUERY__NODE__NODE_LOAD_STMT = 225,
|
1895
|
+
PG_QUERY__NODE__NODE_CREATEDB_STMT = 226,
|
1896
|
+
PG_QUERY__NODE__NODE_ALTER_DATABASE_STMT = 227,
|
1897
|
+
PG_QUERY__NODE__NODE_ALTER_DATABASE_REFRESH_COLL_STMT = 228,
|
1898
|
+
PG_QUERY__NODE__NODE_ALTER_DATABASE_SET_STMT = 229,
|
1899
|
+
PG_QUERY__NODE__NODE_DROPDB_STMT = 230,
|
1900
|
+
PG_QUERY__NODE__NODE_ALTER_SYSTEM_STMT = 231,
|
1901
|
+
PG_QUERY__NODE__NODE_CLUSTER_STMT = 232,
|
1902
|
+
PG_QUERY__NODE__NODE_VACUUM_STMT = 233,
|
1903
|
+
PG_QUERY__NODE__NODE_VACUUM_RELATION = 234,
|
1904
|
+
PG_QUERY__NODE__NODE_EXPLAIN_STMT = 235,
|
1905
|
+
PG_QUERY__NODE__NODE_CREATE_TABLE_AS_STMT = 236,
|
1906
|
+
PG_QUERY__NODE__NODE_REFRESH_MAT_VIEW_STMT = 237,
|
1907
|
+
PG_QUERY__NODE__NODE_CHECK_POINT_STMT = 238,
|
1908
|
+
PG_QUERY__NODE__NODE_DISCARD_STMT = 239,
|
1909
|
+
PG_QUERY__NODE__NODE_LOCK_STMT = 240,
|
1910
|
+
PG_QUERY__NODE__NODE_CONSTRAINTS_SET_STMT = 241,
|
1911
|
+
PG_QUERY__NODE__NODE_REINDEX_STMT = 242,
|
1912
|
+
PG_QUERY__NODE__NODE_CREATE_CONVERSION_STMT = 243,
|
1913
|
+
PG_QUERY__NODE__NODE_CREATE_CAST_STMT = 244,
|
1914
|
+
PG_QUERY__NODE__NODE_CREATE_TRANSFORM_STMT = 245,
|
1915
|
+
PG_QUERY__NODE__NODE_PREPARE_STMT = 246,
|
1916
|
+
PG_QUERY__NODE__NODE_EXECUTE_STMT = 247,
|
1917
|
+
PG_QUERY__NODE__NODE_DEALLOCATE_STMT = 248,
|
1918
|
+
PG_QUERY__NODE__NODE_DROP_OWNED_STMT = 249,
|
1919
|
+
PG_QUERY__NODE__NODE_REASSIGN_OWNED_STMT = 250,
|
1920
|
+
PG_QUERY__NODE__NODE_ALTER_TSDICTIONARY_STMT = 251,
|
1921
|
+
PG_QUERY__NODE__NODE_ALTER_TSCONFIGURATION_STMT = 252,
|
1922
|
+
PG_QUERY__NODE__NODE_PUBLICATION_TABLE = 253,
|
1923
|
+
PG_QUERY__NODE__NODE_PUBLICATION_OBJ_SPEC = 254,
|
1924
|
+
PG_QUERY__NODE__NODE_CREATE_PUBLICATION_STMT = 255,
|
1925
|
+
PG_QUERY__NODE__NODE_ALTER_PUBLICATION_STMT = 256,
|
1926
|
+
PG_QUERY__NODE__NODE_CREATE_SUBSCRIPTION_STMT = 257,
|
1927
|
+
PG_QUERY__NODE__NODE_ALTER_SUBSCRIPTION_STMT = 258,
|
1928
|
+
PG_QUERY__NODE__NODE_DROP_SUBSCRIPTION_STMT = 259,
|
1929
|
+
PG_QUERY__NODE__NODE_INTEGER = 260,
|
1930
|
+
PG_QUERY__NODE__NODE_FLOAT = 261,
|
1931
|
+
PG_QUERY__NODE__NODE_BOOLEAN = 262,
|
1932
|
+
PG_QUERY__NODE__NODE_STRING = 263,
|
1933
|
+
PG_QUERY__NODE__NODE_BIT_STRING = 264,
|
1934
|
+
PG_QUERY__NODE__NODE_LIST = 265,
|
1935
|
+
PG_QUERY__NODE__NODE_INT_LIST = 266,
|
1936
|
+
PG_QUERY__NODE__NODE_OID_LIST = 267,
|
1937
|
+
PG_QUERY__NODE__NODE_A_CONST = 268
|
1824
1938
|
PROTOBUF_C__FORCE_ENUM_TO_BE_INT_SIZE(PG_QUERY__NODE__NODE__CASE)
|
1825
1939
|
} PgQuery__Node__NodeCase;
|
1826
1940
|
|
@@ -1838,6 +1952,8 @@ struct PgQuery__Node
|
|
1838
1952
|
PgQuery__Aggref *aggref;
|
1839
1953
|
PgQuery__GroupingFunc *grouping_func;
|
1840
1954
|
PgQuery__WindowFunc *window_func;
|
1955
|
+
PgQuery__WindowFuncRunCondition *window_func_run_condition;
|
1956
|
+
PgQuery__MergeSupportFunc *merge_support_func;
|
1841
1957
|
PgQuery__SubscriptingRef *subscripting_ref;
|
1842
1958
|
PgQuery__FuncExpr *func_expr;
|
1843
1959
|
PgQuery__NamedArgExpr *named_arg_expr;
|
@@ -1871,8 +1987,14 @@ struct PgQuery__Node
|
|
1871
1987
|
PgQuery__JsonValueExpr *json_value_expr;
|
1872
1988
|
PgQuery__JsonConstructorExpr *json_constructor_expr;
|
1873
1989
|
PgQuery__JsonIsPredicate *json_is_predicate;
|
1990
|
+
PgQuery__JsonBehavior *json_behavior;
|
1991
|
+
PgQuery__JsonExpr *json_expr;
|
1992
|
+
PgQuery__JsonTablePath *json_table_path;
|
1993
|
+
PgQuery__JsonTablePathScan *json_table_path_scan;
|
1994
|
+
PgQuery__JsonTableSiblingJoin *json_table_sibling_join;
|
1874
1995
|
PgQuery__NullTest *null_test;
|
1875
1996
|
PgQuery__BooleanTest *boolean_test;
|
1997
|
+
PgQuery__MergeAction *merge_action;
|
1876
1998
|
PgQuery__CoerceToDomain *coerce_to_domain;
|
1877
1999
|
PgQuery__CoerceToDomainValue *coerce_to_domain_value;
|
1878
2000
|
PgQuery__SetToDefault *set_to_default;
|
@@ -1916,6 +2038,7 @@ struct PgQuery__Node
|
|
1916
2038
|
PgQuery__PartitionSpec *partition_spec;
|
1917
2039
|
PgQuery__PartitionBoundSpec *partition_bound_spec;
|
1918
2040
|
PgQuery__PartitionRangeDatum *partition_range_datum;
|
2041
|
+
PgQuery__SinglePartitionSpec *single_partition_spec;
|
1919
2042
|
PgQuery__PartitionCmd *partition_cmd;
|
1920
2043
|
PgQuery__RangeTblEntry *range_tbl_entry;
|
1921
2044
|
PgQuery__RTEPermissionInfo *rtepermission_info;
|
@@ -1933,10 +2056,17 @@ struct PgQuery__Node
|
|
1933
2056
|
PgQuery__CTECycleClause *ctecycle_clause;
|
1934
2057
|
PgQuery__CommonTableExpr *common_table_expr;
|
1935
2058
|
PgQuery__MergeWhenClause *merge_when_clause;
|
1936
|
-
PgQuery__MergeAction *merge_action;
|
1937
2059
|
PgQuery__TriggerTransition *trigger_transition;
|
1938
2060
|
PgQuery__JsonOutput *json_output;
|
2061
|
+
PgQuery__JsonArgument *json_argument;
|
2062
|
+
PgQuery__JsonFuncExpr *json_func_expr;
|
2063
|
+
PgQuery__JsonTablePathSpec *json_table_path_spec;
|
2064
|
+
PgQuery__JsonTable *json_table;
|
2065
|
+
PgQuery__JsonTableColumn *json_table_column;
|
1939
2066
|
PgQuery__JsonKeyValue *json_key_value;
|
2067
|
+
PgQuery__JsonParseExpr *json_parse_expr;
|
2068
|
+
PgQuery__JsonScalarExpr *json_scalar_expr;
|
2069
|
+
PgQuery__JsonSerializeExpr *json_serialize_expr;
|
1940
2070
|
PgQuery__JsonObjectConstructor *json_object_constructor;
|
1941
2071
|
PgQuery__JsonArrayConstructor *json_array_constructor;
|
1942
2072
|
PgQuery__JsonArrayQueryConstructor *json_array_query_constructor;
|
@@ -2243,6 +2373,7 @@ struct PgQuery__RangeVar
|
|
2243
2373
|
struct PgQuery__TableFunc
|
2244
2374
|
{
|
2245
2375
|
ProtobufCMessage base;
|
2376
|
+
PgQuery__TableFuncType functype;
|
2246
2377
|
size_t n_ns_uris;
|
2247
2378
|
PgQuery__Node **ns_uris;
|
2248
2379
|
size_t n_ns_names;
|
@@ -2261,14 +2392,19 @@ struct PgQuery__TableFunc
|
|
2261
2392
|
PgQuery__Node **colexprs;
|
2262
2393
|
size_t n_coldefexprs;
|
2263
2394
|
PgQuery__Node **coldefexprs;
|
2395
|
+
size_t n_colvalexprs;
|
2396
|
+
PgQuery__Node **colvalexprs;
|
2397
|
+
size_t n_passingvalexprs;
|
2398
|
+
PgQuery__Node **passingvalexprs;
|
2264
2399
|
size_t n_notnulls;
|
2265
2400
|
uint64_t *notnulls;
|
2401
|
+
PgQuery__Node *plan;
|
2266
2402
|
int32_t ordinalitycol;
|
2267
2403
|
int32_t location;
|
2268
2404
|
};
|
2269
2405
|
#define PG_QUERY__TABLE_FUNC__INIT \
|
2270
2406
|
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__table_func__descriptor) \
|
2271
|
-
, 0,NULL, 0,NULL, NULL, NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0, 0 }
|
2407
|
+
, PG_QUERY__TABLE_FUNC_TYPE__TABLE_FUNC_TYPE_UNDEFINED, 0,NULL, 0,NULL, NULL, NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, 0,NULL, NULL, 0, 0 }
|
2272
2408
|
|
2273
2409
|
|
2274
2410
|
struct PgQuery__IntoClause
|
@@ -2385,6 +2521,8 @@ struct PgQuery__WindowFunc
|
|
2385
2521
|
size_t n_args;
|
2386
2522
|
PgQuery__Node **args;
|
2387
2523
|
PgQuery__Node *aggfilter;
|
2524
|
+
size_t n_run_condition;
|
2525
|
+
PgQuery__Node **run_condition;
|
2388
2526
|
uint32_t winref;
|
2389
2527
|
protobuf_c_boolean winstar;
|
2390
2528
|
protobuf_c_boolean winagg;
|
@@ -2392,7 +2530,34 @@ struct PgQuery__WindowFunc
|
|
2392
2530
|
};
|
2393
2531
|
#define PG_QUERY__WINDOW_FUNC__INIT \
|
2394
2532
|
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__window_func__descriptor) \
|
2395
|
-
, NULL, 0, 0, 0, 0, 0,NULL, NULL, 0, 0, 0, 0 }
|
2533
|
+
, NULL, 0, 0, 0, 0, 0,NULL, NULL, 0,NULL, 0, 0, 0, 0 }
|
2534
|
+
|
2535
|
+
|
2536
|
+
struct PgQuery__WindowFuncRunCondition
|
2537
|
+
{
|
2538
|
+
ProtobufCMessage base;
|
2539
|
+
PgQuery__Node *xpr;
|
2540
|
+
uint32_t opno;
|
2541
|
+
uint32_t inputcollid;
|
2542
|
+
protobuf_c_boolean wfunc_left;
|
2543
|
+
PgQuery__Node *arg;
|
2544
|
+
};
|
2545
|
+
#define PG_QUERY__WINDOW_FUNC_RUN_CONDITION__INIT \
|
2546
|
+
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__window_func_run_condition__descriptor) \
|
2547
|
+
, NULL, 0, 0, 0, NULL }
|
2548
|
+
|
2549
|
+
|
2550
|
+
struct PgQuery__MergeSupportFunc
|
2551
|
+
{
|
2552
|
+
ProtobufCMessage base;
|
2553
|
+
PgQuery__Node *xpr;
|
2554
|
+
uint32_t msftype;
|
2555
|
+
uint32_t msfcollid;
|
2556
|
+
int32_t location;
|
2557
|
+
};
|
2558
|
+
#define PG_QUERY__MERGE_SUPPORT_FUNC__INIT \
|
2559
|
+
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__merge_support_func__descriptor) \
|
2560
|
+
, NULL, 0, 0, 0 }
|
2396
2561
|
|
2397
2562
|
|
2398
2563
|
struct PgQuery__SubscriptingRef
|
@@ -2935,6 +3100,84 @@ struct PgQuery__JsonIsPredicate
|
|
2935
3100
|
, NULL, NULL, PG_QUERY__JSON_VALUE_TYPE__JSON_VALUE_TYPE_UNDEFINED, 0, 0 }
|
2936
3101
|
|
2937
3102
|
|
3103
|
+
struct PgQuery__JsonBehavior
|
3104
|
+
{
|
3105
|
+
ProtobufCMessage base;
|
3106
|
+
PgQuery__JsonBehaviorType btype;
|
3107
|
+
PgQuery__Node *expr;
|
3108
|
+
protobuf_c_boolean coerce;
|
3109
|
+
int32_t location;
|
3110
|
+
};
|
3111
|
+
#define PG_QUERY__JSON_BEHAVIOR__INIT \
|
3112
|
+
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__json_behavior__descriptor) \
|
3113
|
+
, PG_QUERY__JSON_BEHAVIOR_TYPE__JSON_BEHAVIOR_TYPE_UNDEFINED, NULL, 0, 0 }
|
3114
|
+
|
3115
|
+
|
3116
|
+
struct PgQuery__JsonExpr
|
3117
|
+
{
|
3118
|
+
ProtobufCMessage base;
|
3119
|
+
PgQuery__Node *xpr;
|
3120
|
+
PgQuery__JsonExprOp op;
|
3121
|
+
char *column_name;
|
3122
|
+
PgQuery__Node *formatted_expr;
|
3123
|
+
PgQuery__JsonFormat *format;
|
3124
|
+
PgQuery__Node *path_spec;
|
3125
|
+
PgQuery__JsonReturning *returning;
|
3126
|
+
size_t n_passing_names;
|
3127
|
+
PgQuery__Node **passing_names;
|
3128
|
+
size_t n_passing_values;
|
3129
|
+
PgQuery__Node **passing_values;
|
3130
|
+
PgQuery__JsonBehavior *on_empty;
|
3131
|
+
PgQuery__JsonBehavior *on_error;
|
3132
|
+
protobuf_c_boolean use_io_coercion;
|
3133
|
+
protobuf_c_boolean use_json_coercion;
|
3134
|
+
PgQuery__JsonWrapper wrapper;
|
3135
|
+
protobuf_c_boolean omit_quotes;
|
3136
|
+
uint32_t collation;
|
3137
|
+
int32_t location;
|
3138
|
+
};
|
3139
|
+
#define PG_QUERY__JSON_EXPR__INIT \
|
3140
|
+
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__json_expr__descriptor) \
|
3141
|
+
, NULL, PG_QUERY__JSON_EXPR_OP__JSON_EXPR_OP_UNDEFINED, (char *)protobuf_c_empty_string, NULL, NULL, NULL, NULL, 0,NULL, 0,NULL, NULL, NULL, 0, 0, PG_QUERY__JSON_WRAPPER__JSON_WRAPPER_UNDEFINED, 0, 0, 0 }
|
3142
|
+
|
3143
|
+
|
3144
|
+
struct PgQuery__JsonTablePath
|
3145
|
+
{
|
3146
|
+
ProtobufCMessage base;
|
3147
|
+
char *name;
|
3148
|
+
};
|
3149
|
+
#define PG_QUERY__JSON_TABLE_PATH__INIT \
|
3150
|
+
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__json_table_path__descriptor) \
|
3151
|
+
, (char *)protobuf_c_empty_string }
|
3152
|
+
|
3153
|
+
|
3154
|
+
struct PgQuery__JsonTablePathScan
|
3155
|
+
{
|
3156
|
+
ProtobufCMessage base;
|
3157
|
+
PgQuery__Node *plan;
|
3158
|
+
PgQuery__JsonTablePath *path;
|
3159
|
+
protobuf_c_boolean error_on_error;
|
3160
|
+
PgQuery__Node *child;
|
3161
|
+
int32_t col_min;
|
3162
|
+
int32_t col_max;
|
3163
|
+
};
|
3164
|
+
#define PG_QUERY__JSON_TABLE_PATH_SCAN__INIT \
|
3165
|
+
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__json_table_path_scan__descriptor) \
|
3166
|
+
, NULL, NULL, 0, NULL, 0, 0 }
|
3167
|
+
|
3168
|
+
|
3169
|
+
struct PgQuery__JsonTableSiblingJoin
|
3170
|
+
{
|
3171
|
+
ProtobufCMessage base;
|
3172
|
+
PgQuery__Node *plan;
|
3173
|
+
PgQuery__Node *lplan;
|
3174
|
+
PgQuery__Node *rplan;
|
3175
|
+
};
|
3176
|
+
#define PG_QUERY__JSON_TABLE_SIBLING_JOIN__INIT \
|
3177
|
+
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__json_table_sibling_join__descriptor) \
|
3178
|
+
, NULL, NULL, NULL }
|
3179
|
+
|
3180
|
+
|
2938
3181
|
struct PgQuery__NullTest
|
2939
3182
|
{
|
2940
3183
|
ProtobufCMessage base;
|
@@ -2962,6 +3205,23 @@ struct PgQuery__BooleanTest
|
|
2962
3205
|
, NULL, NULL, PG_QUERY__BOOL_TEST_TYPE__BOOL_TEST_TYPE_UNDEFINED, 0 }
|
2963
3206
|
|
2964
3207
|
|
3208
|
+
struct PgQuery__MergeAction
|
3209
|
+
{
|
3210
|
+
ProtobufCMessage base;
|
3211
|
+
PgQuery__MergeMatchKind match_kind;
|
3212
|
+
PgQuery__CmdType command_type;
|
3213
|
+
PgQuery__OverridingKind override;
|
3214
|
+
PgQuery__Node *qual;
|
3215
|
+
size_t n_target_list;
|
3216
|
+
PgQuery__Node **target_list;
|
3217
|
+
size_t n_update_colnos;
|
3218
|
+
PgQuery__Node **update_colnos;
|
3219
|
+
};
|
3220
|
+
#define PG_QUERY__MERGE_ACTION__INIT \
|
3221
|
+
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__merge_action__descriptor) \
|
3222
|
+
, PG_QUERY__MERGE_MATCH_KIND__MERGE_MATCH_KIND_UNDEFINED, PG_QUERY__CMD_TYPE__CMD_TYPE_UNDEFINED, PG_QUERY__OVERRIDING_KIND__OVERRIDING_KIND_UNDEFINED, NULL, 0,NULL, 0,NULL }
|
3223
|
+
|
3224
|
+
|
2965
3225
|
struct PgQuery__CoerceToDomain
|
2966
3226
|
{
|
2967
3227
|
ProtobufCMessage base;
|
@@ -3149,7 +3409,8 @@ struct PgQuery__Query
|
|
3149
3409
|
PgQuery__FromExpr *jointree;
|
3150
3410
|
size_t n_merge_action_list;
|
3151
3411
|
PgQuery__Node **merge_action_list;
|
3152
|
-
|
3412
|
+
int32_t merge_target_relation;
|
3413
|
+
PgQuery__Node *merge_join_condition;
|
3153
3414
|
size_t n_target_list;
|
3154
3415
|
PgQuery__Node **target_list;
|
3155
3416
|
PgQuery__OverridingKind override;
|
@@ -3183,7 +3444,7 @@ struct PgQuery__Query
|
|
3183
3444
|
};
|
3184
3445
|
#define PG_QUERY__QUERY__INIT \
|
3185
3446
|
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__query__descriptor) \
|
3186
|
-
, PG_QUERY__CMD_TYPE__CMD_TYPE_UNDEFINED, PG_QUERY__QUERY_SOURCE__QUERY_SOURCE_UNDEFINED, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,NULL, 0,NULL, 0,NULL, NULL, 0,NULL, 0, 0,NULL, PG_QUERY__OVERRIDING_KIND__OVERRIDING_KIND_UNDEFINED, NULL, 0,NULL, 0,NULL, 0, 0,NULL, NULL, 0,NULL, 0,NULL, 0,NULL, NULL, NULL, PG_QUERY__LIMIT_OPTION__LIMIT_OPTION_UNDEFINED, 0,NULL, NULL, 0,NULL, 0,NULL, 0, 0 }
|
3447
|
+
, PG_QUERY__CMD_TYPE__CMD_TYPE_UNDEFINED, PG_QUERY__QUERY_SOURCE__QUERY_SOURCE_UNDEFINED, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,NULL, 0,NULL, 0,NULL, NULL, 0,NULL, 0, NULL, 0,NULL, PG_QUERY__OVERRIDING_KIND__OVERRIDING_KIND_UNDEFINED, NULL, 0,NULL, 0,NULL, 0, 0,NULL, NULL, 0,NULL, 0,NULL, 0,NULL, NULL, NULL, PG_QUERY__LIMIT_OPTION__LIMIT_OPTION_UNDEFINED, 0,NULL, NULL, 0,NULL, 0,NULL, 0, 0 }
|
3187
3448
|
|
3188
3449
|
|
3189
3450
|
struct PgQuery__TypeName
|
@@ -3652,6 +3913,15 @@ struct PgQuery__PartitionRangeDatum
|
|
3652
3913
|
, PG_QUERY__PARTITION_RANGE_DATUM_KIND__PARTITION_RANGE_DATUM_KIND_UNDEFINED, NULL, 0 }
|
3653
3914
|
|
3654
3915
|
|
3916
|
+
struct PgQuery__SinglePartitionSpec
|
3917
|
+
{
|
3918
|
+
ProtobufCMessage base;
|
3919
|
+
};
|
3920
|
+
#define PG_QUERY__SINGLE_PARTITION_SPEC__INIT \
|
3921
|
+
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__single_partition_spec__descriptor) \
|
3922
|
+
}
|
3923
|
+
|
3924
|
+
|
3655
3925
|
struct PgQuery__PartitionCmd
|
3656
3926
|
{
|
3657
3927
|
ProtobufCMessage base;
|
@@ -3667,12 +3937,15 @@ struct PgQuery__PartitionCmd
|
|
3667
3937
|
struct PgQuery__RangeTblEntry
|
3668
3938
|
{
|
3669
3939
|
ProtobufCMessage base;
|
3940
|
+
PgQuery__Alias *alias;
|
3941
|
+
PgQuery__Alias *eref;
|
3670
3942
|
PgQuery__RTEKind rtekind;
|
3671
3943
|
uint32_t relid;
|
3944
|
+
protobuf_c_boolean inh;
|
3672
3945
|
char *relkind;
|
3673
3946
|
int32_t rellockmode;
|
3674
|
-
PgQuery__TableSampleClause *tablesample;
|
3675
3947
|
uint32_t perminfoindex;
|
3948
|
+
PgQuery__TableSampleClause *tablesample;
|
3676
3949
|
PgQuery__Query *subquery;
|
3677
3950
|
protobuf_c_boolean security_barrier;
|
3678
3951
|
PgQuery__JoinType jointype;
|
@@ -3701,17 +3974,14 @@ struct PgQuery__RangeTblEntry
|
|
3701
3974
|
PgQuery__Node **colcollations;
|
3702
3975
|
char *enrname;
|
3703
3976
|
double enrtuples;
|
3704
|
-
PgQuery__Alias *alias;
|
3705
|
-
PgQuery__Alias *eref;
|
3706
3977
|
protobuf_c_boolean lateral;
|
3707
|
-
protobuf_c_boolean inh;
|
3708
3978
|
protobuf_c_boolean in_from_cl;
|
3709
3979
|
size_t n_security_quals;
|
3710
3980
|
PgQuery__Node **security_quals;
|
3711
3981
|
};
|
3712
3982
|
#define PG_QUERY__RANGE_TBL_ENTRY__INIT \
|
3713
3983
|
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__range_tbl_entry__descriptor) \
|
3714
|
-
, PG_QUERY__RTEKIND__RTEKIND_UNDEFINED, 0, (char *)protobuf_c_empty_string, 0,
|
3984
|
+
, NULL, NULL, PG_QUERY__RTEKIND__RTEKIND_UNDEFINED, 0, 0, (char *)protobuf_c_empty_string, 0, 0, NULL, NULL, 0, PG_QUERY__JOIN_TYPE__JOIN_TYPE_UNDEFINED, 0, 0,NULL, 0,NULL, 0,NULL, NULL, 0,NULL, 0, NULL, 0,NULL, (char *)protobuf_c_empty_string, 0, 0, 0,NULL, 0,NULL, 0,NULL, (char *)protobuf_c_empty_string, 0, 0, 0, 0,NULL }
|
3715
3985
|
|
3716
3986
|
|
3717
3987
|
struct PgQuery__RTEPermissionInfo
|
@@ -3719,7 +3989,7 @@ struct PgQuery__RTEPermissionInfo
|
|
3719
3989
|
ProtobufCMessage base;
|
3720
3990
|
uint32_t relid;
|
3721
3991
|
protobuf_c_boolean inh;
|
3722
|
-
|
3992
|
+
uint64_t required_perms;
|
3723
3993
|
uint32_t check_as_user;
|
3724
3994
|
size_t n_selected_cols;
|
3725
3995
|
uint64_t *selected_cols;
|
@@ -3820,8 +4090,6 @@ struct PgQuery__WindowClause
|
|
3820
4090
|
int32_t frame_options;
|
3821
4091
|
PgQuery__Node *start_offset;
|
3822
4092
|
PgQuery__Node *end_offset;
|
3823
|
-
size_t n_run_condition;
|
3824
|
-
PgQuery__Node **run_condition;
|
3825
4093
|
uint32_t start_in_range_func;
|
3826
4094
|
uint32_t end_in_range_func;
|
3827
4095
|
uint32_t in_range_coll;
|
@@ -3832,7 +4100,7 @@ struct PgQuery__WindowClause
|
|
3832
4100
|
};
|
3833
4101
|
#define PG_QUERY__WINDOW_CLAUSE__INIT \
|
3834
4102
|
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__window_clause__descriptor) \
|
3835
|
-
, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL, 0, NULL, NULL, 0,
|
4103
|
+
, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL, 0, NULL, NULL, 0, 0, 0, 0, 0, 0, 0 }
|
3836
4104
|
|
3837
4105
|
|
3838
4106
|
struct PgQuery__RowMarkClause
|
@@ -3954,7 +4222,7 @@ struct PgQuery__CommonTableExpr
|
|
3954
4222
|
struct PgQuery__MergeWhenClause
|
3955
4223
|
{
|
3956
4224
|
ProtobufCMessage base;
|
3957
|
-
|
4225
|
+
PgQuery__MergeMatchKind match_kind;
|
3958
4226
|
PgQuery__CmdType command_type;
|
3959
4227
|
PgQuery__OverridingKind override;
|
3960
4228
|
PgQuery__Node *condition;
|
@@ -3965,24 +4233,7 @@ struct PgQuery__MergeWhenClause
|
|
3965
4233
|
};
|
3966
4234
|
#define PG_QUERY__MERGE_WHEN_CLAUSE__INIT \
|
3967
4235
|
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__merge_when_clause__descriptor) \
|
3968
|
-
,
|
3969
|
-
|
3970
|
-
|
3971
|
-
struct PgQuery__MergeAction
|
3972
|
-
{
|
3973
|
-
ProtobufCMessage base;
|
3974
|
-
protobuf_c_boolean matched;
|
3975
|
-
PgQuery__CmdType command_type;
|
3976
|
-
PgQuery__OverridingKind override;
|
3977
|
-
PgQuery__Node *qual;
|
3978
|
-
size_t n_target_list;
|
3979
|
-
PgQuery__Node **target_list;
|
3980
|
-
size_t n_update_colnos;
|
3981
|
-
PgQuery__Node **update_colnos;
|
3982
|
-
};
|
3983
|
-
#define PG_QUERY__MERGE_ACTION__INIT \
|
3984
|
-
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__merge_action__descriptor) \
|
3985
|
-
, 0, PG_QUERY__CMD_TYPE__CMD_TYPE_UNDEFINED, PG_QUERY__OVERRIDING_KIND__OVERRIDING_KIND_UNDEFINED, NULL, 0,NULL, 0,NULL }
|
4236
|
+
, PG_QUERY__MERGE_MATCH_KIND__MERGE_MATCH_KIND_UNDEFINED, PG_QUERY__CMD_TYPE__CMD_TYPE_UNDEFINED, PG_QUERY__OVERRIDING_KIND__OVERRIDING_KIND_UNDEFINED, NULL, 0,NULL, 0,NULL }
|
3986
4237
|
|
3987
4238
|
|
3988
4239
|
struct PgQuery__TriggerTransition
|
@@ -4008,6 +4259,91 @@ struct PgQuery__JsonOutput
|
|
4008
4259
|
, NULL, NULL }
|
4009
4260
|
|
4010
4261
|
|
4262
|
+
struct PgQuery__JsonArgument
|
4263
|
+
{
|
4264
|
+
ProtobufCMessage base;
|
4265
|
+
PgQuery__JsonValueExpr *val;
|
4266
|
+
char *name;
|
4267
|
+
};
|
4268
|
+
#define PG_QUERY__JSON_ARGUMENT__INIT \
|
4269
|
+
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__json_argument__descriptor) \
|
4270
|
+
, NULL, (char *)protobuf_c_empty_string }
|
4271
|
+
|
4272
|
+
|
4273
|
+
struct PgQuery__JsonFuncExpr
|
4274
|
+
{
|
4275
|
+
ProtobufCMessage base;
|
4276
|
+
PgQuery__JsonExprOp op;
|
4277
|
+
char *column_name;
|
4278
|
+
PgQuery__JsonValueExpr *context_item;
|
4279
|
+
PgQuery__Node *pathspec;
|
4280
|
+
size_t n_passing;
|
4281
|
+
PgQuery__Node **passing;
|
4282
|
+
PgQuery__JsonOutput *output;
|
4283
|
+
PgQuery__JsonBehavior *on_empty;
|
4284
|
+
PgQuery__JsonBehavior *on_error;
|
4285
|
+
PgQuery__JsonWrapper wrapper;
|
4286
|
+
PgQuery__JsonQuotes quotes;
|
4287
|
+
int32_t location;
|
4288
|
+
};
|
4289
|
+
#define PG_QUERY__JSON_FUNC_EXPR__INIT \
|
4290
|
+
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__json_func_expr__descriptor) \
|
4291
|
+
, PG_QUERY__JSON_EXPR_OP__JSON_EXPR_OP_UNDEFINED, (char *)protobuf_c_empty_string, NULL, NULL, 0,NULL, NULL, NULL, NULL, PG_QUERY__JSON_WRAPPER__JSON_WRAPPER_UNDEFINED, PG_QUERY__JSON_QUOTES__JSON_QUOTES_UNDEFINED, 0 }
|
4292
|
+
|
4293
|
+
|
4294
|
+
struct PgQuery__JsonTablePathSpec
|
4295
|
+
{
|
4296
|
+
ProtobufCMessage base;
|
4297
|
+
PgQuery__Node *string;
|
4298
|
+
char *name;
|
4299
|
+
int32_t name_location;
|
4300
|
+
int32_t location;
|
4301
|
+
};
|
4302
|
+
#define PG_QUERY__JSON_TABLE_PATH_SPEC__INIT \
|
4303
|
+
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__json_table_path_spec__descriptor) \
|
4304
|
+
, NULL, (char *)protobuf_c_empty_string, 0, 0 }
|
4305
|
+
|
4306
|
+
|
4307
|
+
struct PgQuery__JsonTable
|
4308
|
+
{
|
4309
|
+
ProtobufCMessage base;
|
4310
|
+
PgQuery__JsonValueExpr *context_item;
|
4311
|
+
PgQuery__JsonTablePathSpec *pathspec;
|
4312
|
+
size_t n_passing;
|
4313
|
+
PgQuery__Node **passing;
|
4314
|
+
size_t n_columns;
|
4315
|
+
PgQuery__Node **columns;
|
4316
|
+
PgQuery__JsonBehavior *on_error;
|
4317
|
+
PgQuery__Alias *alias;
|
4318
|
+
protobuf_c_boolean lateral;
|
4319
|
+
int32_t location;
|
4320
|
+
};
|
4321
|
+
#define PG_QUERY__JSON_TABLE__INIT \
|
4322
|
+
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__json_table__descriptor) \
|
4323
|
+
, NULL, NULL, 0,NULL, 0,NULL, NULL, NULL, 0, 0 }
|
4324
|
+
|
4325
|
+
|
4326
|
+
struct PgQuery__JsonTableColumn
|
4327
|
+
{
|
4328
|
+
ProtobufCMessage base;
|
4329
|
+
PgQuery__JsonTableColumnType coltype;
|
4330
|
+
char *name;
|
4331
|
+
PgQuery__TypeName *type_name;
|
4332
|
+
PgQuery__JsonTablePathSpec *pathspec;
|
4333
|
+
PgQuery__JsonFormat *format;
|
4334
|
+
PgQuery__JsonWrapper wrapper;
|
4335
|
+
PgQuery__JsonQuotes quotes;
|
4336
|
+
size_t n_columns;
|
4337
|
+
PgQuery__Node **columns;
|
4338
|
+
PgQuery__JsonBehavior *on_empty;
|
4339
|
+
PgQuery__JsonBehavior *on_error;
|
4340
|
+
int32_t location;
|
4341
|
+
};
|
4342
|
+
#define PG_QUERY__JSON_TABLE_COLUMN__INIT \
|
4343
|
+
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__json_table_column__descriptor) \
|
4344
|
+
, PG_QUERY__JSON_TABLE_COLUMN_TYPE__JSON_TABLE_COLUMN_TYPE_UNDEFINED, (char *)protobuf_c_empty_string, NULL, NULL, NULL, PG_QUERY__JSON_WRAPPER__JSON_WRAPPER_UNDEFINED, PG_QUERY__JSON_QUOTES__JSON_QUOTES_UNDEFINED, 0,NULL, NULL, NULL, 0 }
|
4345
|
+
|
4346
|
+
|
4011
4347
|
struct PgQuery__JsonKeyValue
|
4012
4348
|
{
|
4013
4349
|
ProtobufCMessage base;
|
@@ -4019,6 +4355,43 @@ struct PgQuery__JsonKeyValue
|
|
4019
4355
|
, NULL, NULL }
|
4020
4356
|
|
4021
4357
|
|
4358
|
+
struct PgQuery__JsonParseExpr
|
4359
|
+
{
|
4360
|
+
ProtobufCMessage base;
|
4361
|
+
PgQuery__JsonValueExpr *expr;
|
4362
|
+
PgQuery__JsonOutput *output;
|
4363
|
+
protobuf_c_boolean unique_keys;
|
4364
|
+
int32_t location;
|
4365
|
+
};
|
4366
|
+
#define PG_QUERY__JSON_PARSE_EXPR__INIT \
|
4367
|
+
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__json_parse_expr__descriptor) \
|
4368
|
+
, NULL, NULL, 0, 0 }
|
4369
|
+
|
4370
|
+
|
4371
|
+
struct PgQuery__JsonScalarExpr
|
4372
|
+
{
|
4373
|
+
ProtobufCMessage base;
|
4374
|
+
PgQuery__Node *expr;
|
4375
|
+
PgQuery__JsonOutput *output;
|
4376
|
+
int32_t location;
|
4377
|
+
};
|
4378
|
+
#define PG_QUERY__JSON_SCALAR_EXPR__INIT \
|
4379
|
+
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__json_scalar_expr__descriptor) \
|
4380
|
+
, NULL, NULL, 0 }
|
4381
|
+
|
4382
|
+
|
4383
|
+
struct PgQuery__JsonSerializeExpr
|
4384
|
+
{
|
4385
|
+
ProtobufCMessage base;
|
4386
|
+
PgQuery__JsonValueExpr *expr;
|
4387
|
+
PgQuery__JsonOutput *output;
|
4388
|
+
int32_t location;
|
4389
|
+
};
|
4390
|
+
#define PG_QUERY__JSON_SERIALIZE_EXPR__INIT \
|
4391
|
+
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__json_serialize_expr__descriptor) \
|
4392
|
+
, NULL, NULL, 0 }
|
4393
|
+
|
4394
|
+
|
4022
4395
|
struct PgQuery__JsonObjectConstructor
|
4023
4396
|
{
|
4024
4397
|
ProtobufCMessage base;
|
@@ -4174,11 +4547,13 @@ struct PgQuery__MergeStmt
|
|
4174
4547
|
PgQuery__Node *join_condition;
|
4175
4548
|
size_t n_merge_when_clauses;
|
4176
4549
|
PgQuery__Node **merge_when_clauses;
|
4550
|
+
size_t n_returning_list;
|
4551
|
+
PgQuery__Node **returning_list;
|
4177
4552
|
PgQuery__WithClause *with_clause;
|
4178
4553
|
};
|
4179
4554
|
#define PG_QUERY__MERGE_STMT__INIT \
|
4180
4555
|
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__merge_stmt__descriptor) \
|
4181
|
-
, NULL, NULL, NULL, 0,NULL, NULL }
|
4556
|
+
, NULL, NULL, NULL, 0,NULL, 0,NULL, NULL }
|
4182
4557
|
|
4183
4558
|
|
4184
4559
|
struct PgQuery__SelectStmt
|
@@ -4501,11 +4876,13 @@ struct PgQuery__Constraint
|
|
4501
4876
|
char *conname;
|
4502
4877
|
protobuf_c_boolean deferrable;
|
4503
4878
|
protobuf_c_boolean initdeferred;
|
4504
|
-
|
4879
|
+
protobuf_c_boolean skip_validation;
|
4880
|
+
protobuf_c_boolean initially_valid;
|
4505
4881
|
protobuf_c_boolean is_no_inherit;
|
4506
4882
|
PgQuery__Node *raw_expr;
|
4507
4883
|
char *cooked_expr;
|
4508
4884
|
char *generated_when;
|
4885
|
+
int32_t inhcount;
|
4509
4886
|
protobuf_c_boolean nulls_not_distinct;
|
4510
4887
|
size_t n_keys;
|
4511
4888
|
PgQuery__Node **keys;
|
@@ -4533,12 +4910,11 @@ struct PgQuery__Constraint
|
|
4533
4910
|
size_t n_old_conpfeqop;
|
4534
4911
|
PgQuery__Node **old_conpfeqop;
|
4535
4912
|
uint32_t old_pktable_oid;
|
4536
|
-
|
4537
|
-
protobuf_c_boolean initially_valid;
|
4913
|
+
int32_t location;
|
4538
4914
|
};
|
4539
4915
|
#define PG_QUERY__CONSTRAINT__INIT \
|
4540
4916
|
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__constraint__descriptor) \
|
4541
|
-
, PG_QUERY__CONSTR_TYPE__CONSTR_TYPE_UNDEFINED, (char *)protobuf_c_empty_string, 0, 0, 0, 0, NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0, 0,NULL, 0,NULL, 0,NULL, 0,NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0, (char *)protobuf_c_empty_string, NULL, NULL, 0,NULL, 0,NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL, 0, 0
|
4917
|
+
, PG_QUERY__CONSTR_TYPE__CONSTR_TYPE_UNDEFINED, (char *)protobuf_c_empty_string, 0, 0, 0, 0, 0, NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0, 0, 0,NULL, 0,NULL, 0,NULL, 0,NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0, (char *)protobuf_c_empty_string, NULL, NULL, 0,NULL, 0,NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0,NULL, 0,NULL, 0, 0 }
|
4542
4918
|
|
4543
4919
|
|
4544
4920
|
struct PgQuery__CreateTableSpaceStmt
|
@@ -5212,12 +5588,12 @@ struct PgQuery__AlterStatsStmt
|
|
5212
5588
|
ProtobufCMessage base;
|
5213
5589
|
size_t n_defnames;
|
5214
5590
|
PgQuery__Node **defnames;
|
5215
|
-
|
5591
|
+
PgQuery__Node *stxstattarget;
|
5216
5592
|
protobuf_c_boolean missing_ok;
|
5217
5593
|
};
|
5218
5594
|
#define PG_QUERY__ALTER_STATS_STMT__INIT \
|
5219
5595
|
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__alter_stats_stmt__descriptor) \
|
5220
|
-
, 0,NULL,
|
5596
|
+
, 0,NULL, NULL, 0 }
|
5221
5597
|
|
5222
5598
|
|
5223
5599
|
struct PgQuery__CreateFunctionStmt
|
@@ -5452,10 +5828,11 @@ struct PgQuery__TransactionStmt
|
|
5452
5828
|
char *savepoint_name;
|
5453
5829
|
char *gid;
|
5454
5830
|
protobuf_c_boolean chain;
|
5831
|
+
int32_t location;
|
5455
5832
|
};
|
5456
5833
|
#define PG_QUERY__TRANSACTION_STMT__INIT \
|
5457
5834
|
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__transaction_stmt__descriptor) \
|
5458
|
-
, PG_QUERY__TRANSACTION_STMT_KIND__TRANSACTION_STMT_KIND_UNDEFINED, 0,NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0 }
|
5835
|
+
, PG_QUERY__TRANSACTION_STMT_KIND__TRANSACTION_STMT_KIND_UNDEFINED, 0,NULL, (char *)protobuf_c_empty_string, (char *)protobuf_c_empty_string, 0, 0 }
|
5459
5836
|
|
5460
5837
|
|
5461
5838
|
struct PgQuery__CompositeTypeStmt
|
@@ -5816,10 +6193,12 @@ struct PgQuery__DeallocateStmt
|
|
5816
6193
|
{
|
5817
6194
|
ProtobufCMessage base;
|
5818
6195
|
char *name;
|
6196
|
+
protobuf_c_boolean isall;
|
6197
|
+
int32_t location;
|
5819
6198
|
};
|
5820
6199
|
#define PG_QUERY__DEALLOCATE_STMT__INIT \
|
5821
6200
|
{ PROTOBUF_C_MESSAGE_INIT (&pg_query__deallocate_stmt__descriptor) \
|
5822
|
-
, (char *)protobuf_c_empty_string }
|
6201
|
+
, (char *)protobuf_c_empty_string, 0, 0 }
|
5823
6202
|
|
5824
6203
|
|
5825
6204
|
struct PgQuery__DropOwnedStmt
|
@@ -6390,6 +6769,44 @@ PgQuery__WindowFunc *
|
|
6390
6769
|
void pg_query__window_func__free_unpacked
|
6391
6770
|
(PgQuery__WindowFunc *message,
|
6392
6771
|
ProtobufCAllocator *allocator);
|
6772
|
+
/* PgQuery__WindowFuncRunCondition methods */
|
6773
|
+
void pg_query__window_func_run_condition__init
|
6774
|
+
(PgQuery__WindowFuncRunCondition *message);
|
6775
|
+
size_t pg_query__window_func_run_condition__get_packed_size
|
6776
|
+
(const PgQuery__WindowFuncRunCondition *message);
|
6777
|
+
size_t pg_query__window_func_run_condition__pack
|
6778
|
+
(const PgQuery__WindowFuncRunCondition *message,
|
6779
|
+
uint8_t *out);
|
6780
|
+
size_t pg_query__window_func_run_condition__pack_to_buffer
|
6781
|
+
(const PgQuery__WindowFuncRunCondition *message,
|
6782
|
+
ProtobufCBuffer *buffer);
|
6783
|
+
PgQuery__WindowFuncRunCondition *
|
6784
|
+
pg_query__window_func_run_condition__unpack
|
6785
|
+
(ProtobufCAllocator *allocator,
|
6786
|
+
size_t len,
|
6787
|
+
const uint8_t *data);
|
6788
|
+
void pg_query__window_func_run_condition__free_unpacked
|
6789
|
+
(PgQuery__WindowFuncRunCondition *message,
|
6790
|
+
ProtobufCAllocator *allocator);
|
6791
|
+
/* PgQuery__MergeSupportFunc methods */
|
6792
|
+
void pg_query__merge_support_func__init
|
6793
|
+
(PgQuery__MergeSupportFunc *message);
|
6794
|
+
size_t pg_query__merge_support_func__get_packed_size
|
6795
|
+
(const PgQuery__MergeSupportFunc *message);
|
6796
|
+
size_t pg_query__merge_support_func__pack
|
6797
|
+
(const PgQuery__MergeSupportFunc *message,
|
6798
|
+
uint8_t *out);
|
6799
|
+
size_t pg_query__merge_support_func__pack_to_buffer
|
6800
|
+
(const PgQuery__MergeSupportFunc *message,
|
6801
|
+
ProtobufCBuffer *buffer);
|
6802
|
+
PgQuery__MergeSupportFunc *
|
6803
|
+
pg_query__merge_support_func__unpack
|
6804
|
+
(ProtobufCAllocator *allocator,
|
6805
|
+
size_t len,
|
6806
|
+
const uint8_t *data);
|
6807
|
+
void pg_query__merge_support_func__free_unpacked
|
6808
|
+
(PgQuery__MergeSupportFunc *message,
|
6809
|
+
ProtobufCAllocator *allocator);
|
6393
6810
|
/* PgQuery__SubscriptingRef methods */
|
6394
6811
|
void pg_query__subscripting_ref__init
|
6395
6812
|
(PgQuery__SubscriptingRef *message);
|
@@ -7017,6 +7434,101 @@ PgQuery__JsonIsPredicate *
|
|
7017
7434
|
void pg_query__json_is_predicate__free_unpacked
|
7018
7435
|
(PgQuery__JsonIsPredicate *message,
|
7019
7436
|
ProtobufCAllocator *allocator);
|
7437
|
+
/* PgQuery__JsonBehavior methods */
|
7438
|
+
void pg_query__json_behavior__init
|
7439
|
+
(PgQuery__JsonBehavior *message);
|
7440
|
+
size_t pg_query__json_behavior__get_packed_size
|
7441
|
+
(const PgQuery__JsonBehavior *message);
|
7442
|
+
size_t pg_query__json_behavior__pack
|
7443
|
+
(const PgQuery__JsonBehavior *message,
|
7444
|
+
uint8_t *out);
|
7445
|
+
size_t pg_query__json_behavior__pack_to_buffer
|
7446
|
+
(const PgQuery__JsonBehavior *message,
|
7447
|
+
ProtobufCBuffer *buffer);
|
7448
|
+
PgQuery__JsonBehavior *
|
7449
|
+
pg_query__json_behavior__unpack
|
7450
|
+
(ProtobufCAllocator *allocator,
|
7451
|
+
size_t len,
|
7452
|
+
const uint8_t *data);
|
7453
|
+
void pg_query__json_behavior__free_unpacked
|
7454
|
+
(PgQuery__JsonBehavior *message,
|
7455
|
+
ProtobufCAllocator *allocator);
|
7456
|
+
/* PgQuery__JsonExpr methods */
|
7457
|
+
void pg_query__json_expr__init
|
7458
|
+
(PgQuery__JsonExpr *message);
|
7459
|
+
size_t pg_query__json_expr__get_packed_size
|
7460
|
+
(const PgQuery__JsonExpr *message);
|
7461
|
+
size_t pg_query__json_expr__pack
|
7462
|
+
(const PgQuery__JsonExpr *message,
|
7463
|
+
uint8_t *out);
|
7464
|
+
size_t pg_query__json_expr__pack_to_buffer
|
7465
|
+
(const PgQuery__JsonExpr *message,
|
7466
|
+
ProtobufCBuffer *buffer);
|
7467
|
+
PgQuery__JsonExpr *
|
7468
|
+
pg_query__json_expr__unpack
|
7469
|
+
(ProtobufCAllocator *allocator,
|
7470
|
+
size_t len,
|
7471
|
+
const uint8_t *data);
|
7472
|
+
void pg_query__json_expr__free_unpacked
|
7473
|
+
(PgQuery__JsonExpr *message,
|
7474
|
+
ProtobufCAllocator *allocator);
|
7475
|
+
/* PgQuery__JsonTablePath methods */
|
7476
|
+
void pg_query__json_table_path__init
|
7477
|
+
(PgQuery__JsonTablePath *message);
|
7478
|
+
size_t pg_query__json_table_path__get_packed_size
|
7479
|
+
(const PgQuery__JsonTablePath *message);
|
7480
|
+
size_t pg_query__json_table_path__pack
|
7481
|
+
(const PgQuery__JsonTablePath *message,
|
7482
|
+
uint8_t *out);
|
7483
|
+
size_t pg_query__json_table_path__pack_to_buffer
|
7484
|
+
(const PgQuery__JsonTablePath *message,
|
7485
|
+
ProtobufCBuffer *buffer);
|
7486
|
+
PgQuery__JsonTablePath *
|
7487
|
+
pg_query__json_table_path__unpack
|
7488
|
+
(ProtobufCAllocator *allocator,
|
7489
|
+
size_t len,
|
7490
|
+
const uint8_t *data);
|
7491
|
+
void pg_query__json_table_path__free_unpacked
|
7492
|
+
(PgQuery__JsonTablePath *message,
|
7493
|
+
ProtobufCAllocator *allocator);
|
7494
|
+
/* PgQuery__JsonTablePathScan methods */
|
7495
|
+
void pg_query__json_table_path_scan__init
|
7496
|
+
(PgQuery__JsonTablePathScan *message);
|
7497
|
+
size_t pg_query__json_table_path_scan__get_packed_size
|
7498
|
+
(const PgQuery__JsonTablePathScan *message);
|
7499
|
+
size_t pg_query__json_table_path_scan__pack
|
7500
|
+
(const PgQuery__JsonTablePathScan *message,
|
7501
|
+
uint8_t *out);
|
7502
|
+
size_t pg_query__json_table_path_scan__pack_to_buffer
|
7503
|
+
(const PgQuery__JsonTablePathScan *message,
|
7504
|
+
ProtobufCBuffer *buffer);
|
7505
|
+
PgQuery__JsonTablePathScan *
|
7506
|
+
pg_query__json_table_path_scan__unpack
|
7507
|
+
(ProtobufCAllocator *allocator,
|
7508
|
+
size_t len,
|
7509
|
+
const uint8_t *data);
|
7510
|
+
void pg_query__json_table_path_scan__free_unpacked
|
7511
|
+
(PgQuery__JsonTablePathScan *message,
|
7512
|
+
ProtobufCAllocator *allocator);
|
7513
|
+
/* PgQuery__JsonTableSiblingJoin methods */
|
7514
|
+
void pg_query__json_table_sibling_join__init
|
7515
|
+
(PgQuery__JsonTableSiblingJoin *message);
|
7516
|
+
size_t pg_query__json_table_sibling_join__get_packed_size
|
7517
|
+
(const PgQuery__JsonTableSiblingJoin *message);
|
7518
|
+
size_t pg_query__json_table_sibling_join__pack
|
7519
|
+
(const PgQuery__JsonTableSiblingJoin *message,
|
7520
|
+
uint8_t *out);
|
7521
|
+
size_t pg_query__json_table_sibling_join__pack_to_buffer
|
7522
|
+
(const PgQuery__JsonTableSiblingJoin *message,
|
7523
|
+
ProtobufCBuffer *buffer);
|
7524
|
+
PgQuery__JsonTableSiblingJoin *
|
7525
|
+
pg_query__json_table_sibling_join__unpack
|
7526
|
+
(ProtobufCAllocator *allocator,
|
7527
|
+
size_t len,
|
7528
|
+
const uint8_t *data);
|
7529
|
+
void pg_query__json_table_sibling_join__free_unpacked
|
7530
|
+
(PgQuery__JsonTableSiblingJoin *message,
|
7531
|
+
ProtobufCAllocator *allocator);
|
7020
7532
|
/* PgQuery__NullTest methods */
|
7021
7533
|
void pg_query__null_test__init
|
7022
7534
|
(PgQuery__NullTest *message);
|
@@ -7055,6 +7567,25 @@ PgQuery__BooleanTest *
|
|
7055
7567
|
void pg_query__boolean_test__free_unpacked
|
7056
7568
|
(PgQuery__BooleanTest *message,
|
7057
7569
|
ProtobufCAllocator *allocator);
|
7570
|
+
/* PgQuery__MergeAction methods */
|
7571
|
+
void pg_query__merge_action__init
|
7572
|
+
(PgQuery__MergeAction *message);
|
7573
|
+
size_t pg_query__merge_action__get_packed_size
|
7574
|
+
(const PgQuery__MergeAction *message);
|
7575
|
+
size_t pg_query__merge_action__pack
|
7576
|
+
(const PgQuery__MergeAction *message,
|
7577
|
+
uint8_t *out);
|
7578
|
+
size_t pg_query__merge_action__pack_to_buffer
|
7579
|
+
(const PgQuery__MergeAction *message,
|
7580
|
+
ProtobufCBuffer *buffer);
|
7581
|
+
PgQuery__MergeAction *
|
7582
|
+
pg_query__merge_action__unpack
|
7583
|
+
(ProtobufCAllocator *allocator,
|
7584
|
+
size_t len,
|
7585
|
+
const uint8_t *data);
|
7586
|
+
void pg_query__merge_action__free_unpacked
|
7587
|
+
(PgQuery__MergeAction *message,
|
7588
|
+
ProtobufCAllocator *allocator);
|
7058
7589
|
/* PgQuery__CoerceToDomain methods */
|
7059
7590
|
void pg_query__coerce_to_domain__init
|
7060
7591
|
(PgQuery__CoerceToDomain *message);
|
@@ -7872,6 +8403,25 @@ PgQuery__PartitionRangeDatum *
|
|
7872
8403
|
void pg_query__partition_range_datum__free_unpacked
|
7873
8404
|
(PgQuery__PartitionRangeDatum *message,
|
7874
8405
|
ProtobufCAllocator *allocator);
|
8406
|
+
/* PgQuery__SinglePartitionSpec methods */
|
8407
|
+
void pg_query__single_partition_spec__init
|
8408
|
+
(PgQuery__SinglePartitionSpec *message);
|
8409
|
+
size_t pg_query__single_partition_spec__get_packed_size
|
8410
|
+
(const PgQuery__SinglePartitionSpec *message);
|
8411
|
+
size_t pg_query__single_partition_spec__pack
|
8412
|
+
(const PgQuery__SinglePartitionSpec *message,
|
8413
|
+
uint8_t *out);
|
8414
|
+
size_t pg_query__single_partition_spec__pack_to_buffer
|
8415
|
+
(const PgQuery__SinglePartitionSpec *message,
|
8416
|
+
ProtobufCBuffer *buffer);
|
8417
|
+
PgQuery__SinglePartitionSpec *
|
8418
|
+
pg_query__single_partition_spec__unpack
|
8419
|
+
(ProtobufCAllocator *allocator,
|
8420
|
+
size_t len,
|
8421
|
+
const uint8_t *data);
|
8422
|
+
void pg_query__single_partition_spec__free_unpacked
|
8423
|
+
(PgQuery__SinglePartitionSpec *message,
|
8424
|
+
ProtobufCAllocator *allocator);
|
7875
8425
|
/* PgQuery__PartitionCmd methods */
|
7876
8426
|
void pg_query__partition_cmd__init
|
7877
8427
|
(PgQuery__PartitionCmd *message);
|
@@ -8195,25 +8745,6 @@ PgQuery__MergeWhenClause *
|
|
8195
8745
|
void pg_query__merge_when_clause__free_unpacked
|
8196
8746
|
(PgQuery__MergeWhenClause *message,
|
8197
8747
|
ProtobufCAllocator *allocator);
|
8198
|
-
/* PgQuery__MergeAction methods */
|
8199
|
-
void pg_query__merge_action__init
|
8200
|
-
(PgQuery__MergeAction *message);
|
8201
|
-
size_t pg_query__merge_action__get_packed_size
|
8202
|
-
(const PgQuery__MergeAction *message);
|
8203
|
-
size_t pg_query__merge_action__pack
|
8204
|
-
(const PgQuery__MergeAction *message,
|
8205
|
-
uint8_t *out);
|
8206
|
-
size_t pg_query__merge_action__pack_to_buffer
|
8207
|
-
(const PgQuery__MergeAction *message,
|
8208
|
-
ProtobufCBuffer *buffer);
|
8209
|
-
PgQuery__MergeAction *
|
8210
|
-
pg_query__merge_action__unpack
|
8211
|
-
(ProtobufCAllocator *allocator,
|
8212
|
-
size_t len,
|
8213
|
-
const uint8_t *data);
|
8214
|
-
void pg_query__merge_action__free_unpacked
|
8215
|
-
(PgQuery__MergeAction *message,
|
8216
|
-
ProtobufCAllocator *allocator);
|
8217
8748
|
/* PgQuery__TriggerTransition methods */
|
8218
8749
|
void pg_query__trigger_transition__init
|
8219
8750
|
(PgQuery__TriggerTransition *message);
|
@@ -8252,6 +8783,101 @@ PgQuery__JsonOutput *
|
|
8252
8783
|
void pg_query__json_output__free_unpacked
|
8253
8784
|
(PgQuery__JsonOutput *message,
|
8254
8785
|
ProtobufCAllocator *allocator);
|
8786
|
+
/* PgQuery__JsonArgument methods */
|
8787
|
+
void pg_query__json_argument__init
|
8788
|
+
(PgQuery__JsonArgument *message);
|
8789
|
+
size_t pg_query__json_argument__get_packed_size
|
8790
|
+
(const PgQuery__JsonArgument *message);
|
8791
|
+
size_t pg_query__json_argument__pack
|
8792
|
+
(const PgQuery__JsonArgument *message,
|
8793
|
+
uint8_t *out);
|
8794
|
+
size_t pg_query__json_argument__pack_to_buffer
|
8795
|
+
(const PgQuery__JsonArgument *message,
|
8796
|
+
ProtobufCBuffer *buffer);
|
8797
|
+
PgQuery__JsonArgument *
|
8798
|
+
pg_query__json_argument__unpack
|
8799
|
+
(ProtobufCAllocator *allocator,
|
8800
|
+
size_t len,
|
8801
|
+
const uint8_t *data);
|
8802
|
+
void pg_query__json_argument__free_unpacked
|
8803
|
+
(PgQuery__JsonArgument *message,
|
8804
|
+
ProtobufCAllocator *allocator);
|
8805
|
+
/* PgQuery__JsonFuncExpr methods */
|
8806
|
+
void pg_query__json_func_expr__init
|
8807
|
+
(PgQuery__JsonFuncExpr *message);
|
8808
|
+
size_t pg_query__json_func_expr__get_packed_size
|
8809
|
+
(const PgQuery__JsonFuncExpr *message);
|
8810
|
+
size_t pg_query__json_func_expr__pack
|
8811
|
+
(const PgQuery__JsonFuncExpr *message,
|
8812
|
+
uint8_t *out);
|
8813
|
+
size_t pg_query__json_func_expr__pack_to_buffer
|
8814
|
+
(const PgQuery__JsonFuncExpr *message,
|
8815
|
+
ProtobufCBuffer *buffer);
|
8816
|
+
PgQuery__JsonFuncExpr *
|
8817
|
+
pg_query__json_func_expr__unpack
|
8818
|
+
(ProtobufCAllocator *allocator,
|
8819
|
+
size_t len,
|
8820
|
+
const uint8_t *data);
|
8821
|
+
void pg_query__json_func_expr__free_unpacked
|
8822
|
+
(PgQuery__JsonFuncExpr *message,
|
8823
|
+
ProtobufCAllocator *allocator);
|
8824
|
+
/* PgQuery__JsonTablePathSpec methods */
|
8825
|
+
void pg_query__json_table_path_spec__init
|
8826
|
+
(PgQuery__JsonTablePathSpec *message);
|
8827
|
+
size_t pg_query__json_table_path_spec__get_packed_size
|
8828
|
+
(const PgQuery__JsonTablePathSpec *message);
|
8829
|
+
size_t pg_query__json_table_path_spec__pack
|
8830
|
+
(const PgQuery__JsonTablePathSpec *message,
|
8831
|
+
uint8_t *out);
|
8832
|
+
size_t pg_query__json_table_path_spec__pack_to_buffer
|
8833
|
+
(const PgQuery__JsonTablePathSpec *message,
|
8834
|
+
ProtobufCBuffer *buffer);
|
8835
|
+
PgQuery__JsonTablePathSpec *
|
8836
|
+
pg_query__json_table_path_spec__unpack
|
8837
|
+
(ProtobufCAllocator *allocator,
|
8838
|
+
size_t len,
|
8839
|
+
const uint8_t *data);
|
8840
|
+
void pg_query__json_table_path_spec__free_unpacked
|
8841
|
+
(PgQuery__JsonTablePathSpec *message,
|
8842
|
+
ProtobufCAllocator *allocator);
|
8843
|
+
/* PgQuery__JsonTable methods */
|
8844
|
+
void pg_query__json_table__init
|
8845
|
+
(PgQuery__JsonTable *message);
|
8846
|
+
size_t pg_query__json_table__get_packed_size
|
8847
|
+
(const PgQuery__JsonTable *message);
|
8848
|
+
size_t pg_query__json_table__pack
|
8849
|
+
(const PgQuery__JsonTable *message,
|
8850
|
+
uint8_t *out);
|
8851
|
+
size_t pg_query__json_table__pack_to_buffer
|
8852
|
+
(const PgQuery__JsonTable *message,
|
8853
|
+
ProtobufCBuffer *buffer);
|
8854
|
+
PgQuery__JsonTable *
|
8855
|
+
pg_query__json_table__unpack
|
8856
|
+
(ProtobufCAllocator *allocator,
|
8857
|
+
size_t len,
|
8858
|
+
const uint8_t *data);
|
8859
|
+
void pg_query__json_table__free_unpacked
|
8860
|
+
(PgQuery__JsonTable *message,
|
8861
|
+
ProtobufCAllocator *allocator);
|
8862
|
+
/* PgQuery__JsonTableColumn methods */
|
8863
|
+
void pg_query__json_table_column__init
|
8864
|
+
(PgQuery__JsonTableColumn *message);
|
8865
|
+
size_t pg_query__json_table_column__get_packed_size
|
8866
|
+
(const PgQuery__JsonTableColumn *message);
|
8867
|
+
size_t pg_query__json_table_column__pack
|
8868
|
+
(const PgQuery__JsonTableColumn *message,
|
8869
|
+
uint8_t *out);
|
8870
|
+
size_t pg_query__json_table_column__pack_to_buffer
|
8871
|
+
(const PgQuery__JsonTableColumn *message,
|
8872
|
+
ProtobufCBuffer *buffer);
|
8873
|
+
PgQuery__JsonTableColumn *
|
8874
|
+
pg_query__json_table_column__unpack
|
8875
|
+
(ProtobufCAllocator *allocator,
|
8876
|
+
size_t len,
|
8877
|
+
const uint8_t *data);
|
8878
|
+
void pg_query__json_table_column__free_unpacked
|
8879
|
+
(PgQuery__JsonTableColumn *message,
|
8880
|
+
ProtobufCAllocator *allocator);
|
8255
8881
|
/* PgQuery__JsonKeyValue methods */
|
8256
8882
|
void pg_query__json_key_value__init
|
8257
8883
|
(PgQuery__JsonKeyValue *message);
|
@@ -8271,6 +8897,63 @@ PgQuery__JsonKeyValue *
|
|
8271
8897
|
void pg_query__json_key_value__free_unpacked
|
8272
8898
|
(PgQuery__JsonKeyValue *message,
|
8273
8899
|
ProtobufCAllocator *allocator);
|
8900
|
+
/* PgQuery__JsonParseExpr methods */
|
8901
|
+
void pg_query__json_parse_expr__init
|
8902
|
+
(PgQuery__JsonParseExpr *message);
|
8903
|
+
size_t pg_query__json_parse_expr__get_packed_size
|
8904
|
+
(const PgQuery__JsonParseExpr *message);
|
8905
|
+
size_t pg_query__json_parse_expr__pack
|
8906
|
+
(const PgQuery__JsonParseExpr *message,
|
8907
|
+
uint8_t *out);
|
8908
|
+
size_t pg_query__json_parse_expr__pack_to_buffer
|
8909
|
+
(const PgQuery__JsonParseExpr *message,
|
8910
|
+
ProtobufCBuffer *buffer);
|
8911
|
+
PgQuery__JsonParseExpr *
|
8912
|
+
pg_query__json_parse_expr__unpack
|
8913
|
+
(ProtobufCAllocator *allocator,
|
8914
|
+
size_t len,
|
8915
|
+
const uint8_t *data);
|
8916
|
+
void pg_query__json_parse_expr__free_unpacked
|
8917
|
+
(PgQuery__JsonParseExpr *message,
|
8918
|
+
ProtobufCAllocator *allocator);
|
8919
|
+
/* PgQuery__JsonScalarExpr methods */
|
8920
|
+
void pg_query__json_scalar_expr__init
|
8921
|
+
(PgQuery__JsonScalarExpr *message);
|
8922
|
+
size_t pg_query__json_scalar_expr__get_packed_size
|
8923
|
+
(const PgQuery__JsonScalarExpr *message);
|
8924
|
+
size_t pg_query__json_scalar_expr__pack
|
8925
|
+
(const PgQuery__JsonScalarExpr *message,
|
8926
|
+
uint8_t *out);
|
8927
|
+
size_t pg_query__json_scalar_expr__pack_to_buffer
|
8928
|
+
(const PgQuery__JsonScalarExpr *message,
|
8929
|
+
ProtobufCBuffer *buffer);
|
8930
|
+
PgQuery__JsonScalarExpr *
|
8931
|
+
pg_query__json_scalar_expr__unpack
|
8932
|
+
(ProtobufCAllocator *allocator,
|
8933
|
+
size_t len,
|
8934
|
+
const uint8_t *data);
|
8935
|
+
void pg_query__json_scalar_expr__free_unpacked
|
8936
|
+
(PgQuery__JsonScalarExpr *message,
|
8937
|
+
ProtobufCAllocator *allocator);
|
8938
|
+
/* PgQuery__JsonSerializeExpr methods */
|
8939
|
+
void pg_query__json_serialize_expr__init
|
8940
|
+
(PgQuery__JsonSerializeExpr *message);
|
8941
|
+
size_t pg_query__json_serialize_expr__get_packed_size
|
8942
|
+
(const PgQuery__JsonSerializeExpr *message);
|
8943
|
+
size_t pg_query__json_serialize_expr__pack
|
8944
|
+
(const PgQuery__JsonSerializeExpr *message,
|
8945
|
+
uint8_t *out);
|
8946
|
+
size_t pg_query__json_serialize_expr__pack_to_buffer
|
8947
|
+
(const PgQuery__JsonSerializeExpr *message,
|
8948
|
+
ProtobufCBuffer *buffer);
|
8949
|
+
PgQuery__JsonSerializeExpr *
|
8950
|
+
pg_query__json_serialize_expr__unpack
|
8951
|
+
(ProtobufCAllocator *allocator,
|
8952
|
+
size_t len,
|
8953
|
+
const uint8_t *data);
|
8954
|
+
void pg_query__json_serialize_expr__free_unpacked
|
8955
|
+
(PgQuery__JsonSerializeExpr *message,
|
8956
|
+
ProtobufCAllocator *allocator);
|
8274
8957
|
/* PgQuery__JsonObjectConstructor methods */
|
8275
8958
|
void pg_query__json_object_constructor__init
|
8276
8959
|
(PgQuery__JsonObjectConstructor *message);
|
@@ -10920,6 +11603,12 @@ typedef void (*PgQuery__GroupingFunc_Closure)
|
|
10920
11603
|
typedef void (*PgQuery__WindowFunc_Closure)
|
10921
11604
|
(const PgQuery__WindowFunc *message,
|
10922
11605
|
void *closure_data);
|
11606
|
+
typedef void (*PgQuery__WindowFuncRunCondition_Closure)
|
11607
|
+
(const PgQuery__WindowFuncRunCondition *message,
|
11608
|
+
void *closure_data);
|
11609
|
+
typedef void (*PgQuery__MergeSupportFunc_Closure)
|
11610
|
+
(const PgQuery__MergeSupportFunc *message,
|
11611
|
+
void *closure_data);
|
10923
11612
|
typedef void (*PgQuery__SubscriptingRef_Closure)
|
10924
11613
|
(const PgQuery__SubscriptingRef *message,
|
10925
11614
|
void *closure_data);
|
@@ -11019,12 +11708,30 @@ typedef void (*PgQuery__JsonConstructorExpr_Closure)
|
|
11019
11708
|
typedef void (*PgQuery__JsonIsPredicate_Closure)
|
11020
11709
|
(const PgQuery__JsonIsPredicate *message,
|
11021
11710
|
void *closure_data);
|
11711
|
+
typedef void (*PgQuery__JsonBehavior_Closure)
|
11712
|
+
(const PgQuery__JsonBehavior *message,
|
11713
|
+
void *closure_data);
|
11714
|
+
typedef void (*PgQuery__JsonExpr_Closure)
|
11715
|
+
(const PgQuery__JsonExpr *message,
|
11716
|
+
void *closure_data);
|
11717
|
+
typedef void (*PgQuery__JsonTablePath_Closure)
|
11718
|
+
(const PgQuery__JsonTablePath *message,
|
11719
|
+
void *closure_data);
|
11720
|
+
typedef void (*PgQuery__JsonTablePathScan_Closure)
|
11721
|
+
(const PgQuery__JsonTablePathScan *message,
|
11722
|
+
void *closure_data);
|
11723
|
+
typedef void (*PgQuery__JsonTableSiblingJoin_Closure)
|
11724
|
+
(const PgQuery__JsonTableSiblingJoin *message,
|
11725
|
+
void *closure_data);
|
11022
11726
|
typedef void (*PgQuery__NullTest_Closure)
|
11023
11727
|
(const PgQuery__NullTest *message,
|
11024
11728
|
void *closure_data);
|
11025
11729
|
typedef void (*PgQuery__BooleanTest_Closure)
|
11026
11730
|
(const PgQuery__BooleanTest *message,
|
11027
11731
|
void *closure_data);
|
11732
|
+
typedef void (*PgQuery__MergeAction_Closure)
|
11733
|
+
(const PgQuery__MergeAction *message,
|
11734
|
+
void *closure_data);
|
11028
11735
|
typedef void (*PgQuery__CoerceToDomain_Closure)
|
11029
11736
|
(const PgQuery__CoerceToDomain *message,
|
11030
11737
|
void *closure_data);
|
@@ -11154,6 +11861,9 @@ typedef void (*PgQuery__PartitionBoundSpec_Closure)
|
|
11154
11861
|
typedef void (*PgQuery__PartitionRangeDatum_Closure)
|
11155
11862
|
(const PgQuery__PartitionRangeDatum *message,
|
11156
11863
|
void *closure_data);
|
11864
|
+
typedef void (*PgQuery__SinglePartitionSpec_Closure)
|
11865
|
+
(const PgQuery__SinglePartitionSpec *message,
|
11866
|
+
void *closure_data);
|
11157
11867
|
typedef void (*PgQuery__PartitionCmd_Closure)
|
11158
11868
|
(const PgQuery__PartitionCmd *message,
|
11159
11869
|
void *closure_data);
|
@@ -11205,18 +11915,39 @@ typedef void (*PgQuery__CommonTableExpr_Closure)
|
|
11205
11915
|
typedef void (*PgQuery__MergeWhenClause_Closure)
|
11206
11916
|
(const PgQuery__MergeWhenClause *message,
|
11207
11917
|
void *closure_data);
|
11208
|
-
typedef void (*PgQuery__MergeAction_Closure)
|
11209
|
-
(const PgQuery__MergeAction *message,
|
11210
|
-
void *closure_data);
|
11211
11918
|
typedef void (*PgQuery__TriggerTransition_Closure)
|
11212
11919
|
(const PgQuery__TriggerTransition *message,
|
11213
11920
|
void *closure_data);
|
11214
11921
|
typedef void (*PgQuery__JsonOutput_Closure)
|
11215
11922
|
(const PgQuery__JsonOutput *message,
|
11216
11923
|
void *closure_data);
|
11924
|
+
typedef void (*PgQuery__JsonArgument_Closure)
|
11925
|
+
(const PgQuery__JsonArgument *message,
|
11926
|
+
void *closure_data);
|
11927
|
+
typedef void (*PgQuery__JsonFuncExpr_Closure)
|
11928
|
+
(const PgQuery__JsonFuncExpr *message,
|
11929
|
+
void *closure_data);
|
11930
|
+
typedef void (*PgQuery__JsonTablePathSpec_Closure)
|
11931
|
+
(const PgQuery__JsonTablePathSpec *message,
|
11932
|
+
void *closure_data);
|
11933
|
+
typedef void (*PgQuery__JsonTable_Closure)
|
11934
|
+
(const PgQuery__JsonTable *message,
|
11935
|
+
void *closure_data);
|
11936
|
+
typedef void (*PgQuery__JsonTableColumn_Closure)
|
11937
|
+
(const PgQuery__JsonTableColumn *message,
|
11938
|
+
void *closure_data);
|
11217
11939
|
typedef void (*PgQuery__JsonKeyValue_Closure)
|
11218
11940
|
(const PgQuery__JsonKeyValue *message,
|
11219
11941
|
void *closure_data);
|
11942
|
+
typedef void (*PgQuery__JsonParseExpr_Closure)
|
11943
|
+
(const PgQuery__JsonParseExpr *message,
|
11944
|
+
void *closure_data);
|
11945
|
+
typedef void (*PgQuery__JsonScalarExpr_Closure)
|
11946
|
+
(const PgQuery__JsonScalarExpr *message,
|
11947
|
+
void *closure_data);
|
11948
|
+
typedef void (*PgQuery__JsonSerializeExpr_Closure)
|
11949
|
+
(const PgQuery__JsonSerializeExpr *message,
|
11950
|
+
void *closure_data);
|
11220
11951
|
typedef void (*PgQuery__JsonObjectConstructor_Closure)
|
11221
11952
|
(const PgQuery__JsonObjectConstructor *message,
|
11222
11953
|
void *closure_data);
|
@@ -11631,7 +12362,6 @@ typedef void (*PgQuery__ScanToken_Closure)
|
|
11631
12362
|
|
11632
12363
|
/* --- descriptors --- */
|
11633
12364
|
|
11634
|
-
extern const ProtobufCEnumDescriptor pg_query__overriding_kind__descriptor;
|
11635
12365
|
extern const ProtobufCEnumDescriptor pg_query__query_source__descriptor;
|
11636
12366
|
extern const ProtobufCEnumDescriptor pg_query__sort_by_dir__descriptor;
|
11637
12367
|
extern const ProtobufCEnumDescriptor pg_query__sort_by_nulls__descriptor;
|
@@ -11646,6 +12376,8 @@ extern const ProtobufCEnumDescriptor pg_query__rtekind__descriptor;
|
|
11646
12376
|
extern const ProtobufCEnumDescriptor pg_query__wcokind__descriptor;
|
11647
12377
|
extern const ProtobufCEnumDescriptor pg_query__grouping_set_kind__descriptor;
|
11648
12378
|
extern const ProtobufCEnumDescriptor pg_query__ctematerialize__descriptor;
|
12379
|
+
extern const ProtobufCEnumDescriptor pg_query__json_quotes__descriptor;
|
12380
|
+
extern const ProtobufCEnumDescriptor pg_query__json_table_column_type__descriptor;
|
11649
12381
|
extern const ProtobufCEnumDescriptor pg_query__set_operation__descriptor;
|
11650
12382
|
extern const ProtobufCEnumDescriptor pg_query__object_type__descriptor;
|
11651
12383
|
extern const ProtobufCEnumDescriptor pg_query__drop_behavior__descriptor;
|
@@ -11665,7 +12397,9 @@ extern const ProtobufCEnumDescriptor pg_query__alter_tsconfig_type__descripto
|
|
11665
12397
|
extern const ProtobufCEnumDescriptor pg_query__publication_obj_spec_type__descriptor;
|
11666
12398
|
extern const ProtobufCEnumDescriptor pg_query__alter_publication_action__descriptor;
|
11667
12399
|
extern const ProtobufCEnumDescriptor pg_query__alter_subscription_type__descriptor;
|
12400
|
+
extern const ProtobufCEnumDescriptor pg_query__overriding_kind__descriptor;
|
11668
12401
|
extern const ProtobufCEnumDescriptor pg_query__on_commit_action__descriptor;
|
12402
|
+
extern const ProtobufCEnumDescriptor pg_query__table_func_type__descriptor;
|
11669
12403
|
extern const ProtobufCEnumDescriptor pg_query__param_kind__descriptor;
|
11670
12404
|
extern const ProtobufCEnumDescriptor pg_query__coercion_context__descriptor;
|
11671
12405
|
extern const ProtobufCEnumDescriptor pg_query__coercion_form__descriptor;
|
@@ -11680,8 +12414,12 @@ extern const ProtobufCEnumDescriptor pg_query__json_encoding__descriptor;
|
|
11680
12414
|
extern const ProtobufCEnumDescriptor pg_query__json_format_type__descriptor;
|
11681
12415
|
extern const ProtobufCEnumDescriptor pg_query__json_constructor_type__descriptor;
|
11682
12416
|
extern const ProtobufCEnumDescriptor pg_query__json_value_type__descriptor;
|
12417
|
+
extern const ProtobufCEnumDescriptor pg_query__json_wrapper__descriptor;
|
12418
|
+
extern const ProtobufCEnumDescriptor pg_query__json_behavior_type__descriptor;
|
12419
|
+
extern const ProtobufCEnumDescriptor pg_query__json_expr_op__descriptor;
|
11683
12420
|
extern const ProtobufCEnumDescriptor pg_query__null_test_type__descriptor;
|
11684
12421
|
extern const ProtobufCEnumDescriptor pg_query__bool_test_type__descriptor;
|
12422
|
+
extern const ProtobufCEnumDescriptor pg_query__merge_match_kind__descriptor;
|
11685
12423
|
extern const ProtobufCEnumDescriptor pg_query__cmd_type__descriptor;
|
11686
12424
|
extern const ProtobufCEnumDescriptor pg_query__join_type__descriptor;
|
11687
12425
|
extern const ProtobufCEnumDescriptor pg_query__agg_strategy__descriptor;
|
@@ -11716,6 +12454,8 @@ extern const ProtobufCMessageDescriptor pg_query__param__descriptor;
|
|
11716
12454
|
extern const ProtobufCMessageDescriptor pg_query__aggref__descriptor;
|
11717
12455
|
extern const ProtobufCMessageDescriptor pg_query__grouping_func__descriptor;
|
11718
12456
|
extern const ProtobufCMessageDescriptor pg_query__window_func__descriptor;
|
12457
|
+
extern const ProtobufCMessageDescriptor pg_query__window_func_run_condition__descriptor;
|
12458
|
+
extern const ProtobufCMessageDescriptor pg_query__merge_support_func__descriptor;
|
11719
12459
|
extern const ProtobufCMessageDescriptor pg_query__subscripting_ref__descriptor;
|
11720
12460
|
extern const ProtobufCMessageDescriptor pg_query__func_expr__descriptor;
|
11721
12461
|
extern const ProtobufCMessageDescriptor pg_query__named_arg_expr__descriptor;
|
@@ -11749,8 +12489,14 @@ extern const ProtobufCMessageDescriptor pg_query__json_returning__descriptor;
|
|
11749
12489
|
extern const ProtobufCMessageDescriptor pg_query__json_value_expr__descriptor;
|
11750
12490
|
extern const ProtobufCMessageDescriptor pg_query__json_constructor_expr__descriptor;
|
11751
12491
|
extern const ProtobufCMessageDescriptor pg_query__json_is_predicate__descriptor;
|
12492
|
+
extern const ProtobufCMessageDescriptor pg_query__json_behavior__descriptor;
|
12493
|
+
extern const ProtobufCMessageDescriptor pg_query__json_expr__descriptor;
|
12494
|
+
extern const ProtobufCMessageDescriptor pg_query__json_table_path__descriptor;
|
12495
|
+
extern const ProtobufCMessageDescriptor pg_query__json_table_path_scan__descriptor;
|
12496
|
+
extern const ProtobufCMessageDescriptor pg_query__json_table_sibling_join__descriptor;
|
11752
12497
|
extern const ProtobufCMessageDescriptor pg_query__null_test__descriptor;
|
11753
12498
|
extern const ProtobufCMessageDescriptor pg_query__boolean_test__descriptor;
|
12499
|
+
extern const ProtobufCMessageDescriptor pg_query__merge_action__descriptor;
|
11754
12500
|
extern const ProtobufCMessageDescriptor pg_query__coerce_to_domain__descriptor;
|
11755
12501
|
extern const ProtobufCMessageDescriptor pg_query__coerce_to_domain_value__descriptor;
|
11756
12502
|
extern const ProtobufCMessageDescriptor pg_query__set_to_default__descriptor;
|
@@ -11794,6 +12540,7 @@ extern const ProtobufCMessageDescriptor pg_query__partition_elem__descriptor;
|
|
11794
12540
|
extern const ProtobufCMessageDescriptor pg_query__partition_spec__descriptor;
|
11795
12541
|
extern const ProtobufCMessageDescriptor pg_query__partition_bound_spec__descriptor;
|
11796
12542
|
extern const ProtobufCMessageDescriptor pg_query__partition_range_datum__descriptor;
|
12543
|
+
extern const ProtobufCMessageDescriptor pg_query__single_partition_spec__descriptor;
|
11797
12544
|
extern const ProtobufCMessageDescriptor pg_query__partition_cmd__descriptor;
|
11798
12545
|
extern const ProtobufCMessageDescriptor pg_query__range_tbl_entry__descriptor;
|
11799
12546
|
extern const ProtobufCMessageDescriptor pg_query__rtepermission_info__descriptor;
|
@@ -11811,10 +12558,17 @@ extern const ProtobufCMessageDescriptor pg_query__ctesearch_clause__descriptor;
|
|
11811
12558
|
extern const ProtobufCMessageDescriptor pg_query__ctecycle_clause__descriptor;
|
11812
12559
|
extern const ProtobufCMessageDescriptor pg_query__common_table_expr__descriptor;
|
11813
12560
|
extern const ProtobufCMessageDescriptor pg_query__merge_when_clause__descriptor;
|
11814
|
-
extern const ProtobufCMessageDescriptor pg_query__merge_action__descriptor;
|
11815
12561
|
extern const ProtobufCMessageDescriptor pg_query__trigger_transition__descriptor;
|
11816
12562
|
extern const ProtobufCMessageDescriptor pg_query__json_output__descriptor;
|
12563
|
+
extern const ProtobufCMessageDescriptor pg_query__json_argument__descriptor;
|
12564
|
+
extern const ProtobufCMessageDescriptor pg_query__json_func_expr__descriptor;
|
12565
|
+
extern const ProtobufCMessageDescriptor pg_query__json_table_path_spec__descriptor;
|
12566
|
+
extern const ProtobufCMessageDescriptor pg_query__json_table__descriptor;
|
12567
|
+
extern const ProtobufCMessageDescriptor pg_query__json_table_column__descriptor;
|
11817
12568
|
extern const ProtobufCMessageDescriptor pg_query__json_key_value__descriptor;
|
12569
|
+
extern const ProtobufCMessageDescriptor pg_query__json_parse_expr__descriptor;
|
12570
|
+
extern const ProtobufCMessageDescriptor pg_query__json_scalar_expr__descriptor;
|
12571
|
+
extern const ProtobufCMessageDescriptor pg_query__json_serialize_expr__descriptor;
|
11818
12572
|
extern const ProtobufCMessageDescriptor pg_query__json_object_constructor__descriptor;
|
11819
12573
|
extern const ProtobufCMessageDescriptor pg_query__json_array_constructor__descriptor;
|
11820
12574
|
extern const ProtobufCMessageDescriptor pg_query__json_array_query_constructor__descriptor;
|