pg_query 4.2.3 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +6 -8
- data/Rakefile +3 -3
- data/ext/pg_query/extconf.rb +1 -3
- data/ext/pg_query/include/access/amapi.h +3 -1
- data/ext/pg_query/include/access/attmap.h +5 -3
- data/ext/pg_query/include/access/attnum.h +1 -1
- data/ext/pg_query/include/access/clog.h +1 -1
- data/ext/pg_query/include/access/commit_ts.h +1 -1
- data/ext/pg_query/include/access/detoast.h +1 -1
- data/ext/pg_query/include/access/genam.h +7 -5
- data/ext/pg_query/include/access/gin.h +16 -3
- data/ext/pg_query/include/access/htup.h +1 -1
- data/ext/pg_query/include/access/htup_details.h +6 -2
- data/ext/pg_query/include/access/itup.h +61 -58
- data/ext/pg_query/include/access/parallel.h +2 -2
- data/ext/pg_query/include/access/printtup.h +1 -1
- data/ext/pg_query/include/access/relation.h +1 -1
- data/ext/pg_query/include/access/relscan.h +1 -1
- data/ext/pg_query/include/access/rmgrlist.h +2 -2
- data/ext/pg_query/include/access/sdir.h +12 -3
- data/ext/pg_query/include/access/skey.h +1 -1
- data/ext/pg_query/include/access/stratnum.h +1 -1
- data/ext/pg_query/include/access/sysattr.h +1 -1
- data/ext/pg_query/include/access/table.h +1 -1
- data/ext/pg_query/include/access/tableam.h +68 -45
- data/ext/pg_query/include/access/toast_compression.h +1 -1
- data/ext/pg_query/include/access/transam.h +1 -1
- data/ext/pg_query/include/access/tsmapi.h +82 -0
- data/ext/pg_query/include/access/tupconvert.h +5 -2
- data/ext/pg_query/include/access/tupdesc.h +2 -2
- data/ext/pg_query/include/access/tupmacs.h +58 -98
- data/ext/pg_query/include/access/twophase.h +2 -2
- data/ext/pg_query/include/access/xact.h +25 -18
- data/ext/pg_query/include/access/xlog.h +15 -16
- data/ext/pg_query/include/access/xlog_internal.h +100 -62
- data/ext/pg_query/include/access/xlogbackup.h +41 -0
- data/ext/pg_query/include/access/xlogdefs.h +6 -25
- data/ext/pg_query/include/access/xlogprefetcher.h +1 -1
- data/ext/pg_query/include/access/xlogreader.h +7 -6
- data/ext/pg_query/include/access/xlogrecord.h +17 -5
- data/ext/pg_query/include/access/xlogrecovery.h +4 -3
- data/ext/pg_query/include/archive/archive_module.h +59 -0
- data/ext/pg_query/include/c.h +144 -156
- data/ext/pg_query/include/catalog/catalog.h +4 -3
- data/ext/pg_query/include/catalog/catversion.h +6 -2
- data/ext/pg_query/include/catalog/dependency.h +5 -4
- data/ext/pg_query/include/catalog/genbki.h +7 -6
- data/ext/pg_query/include/catalog/index.h +4 -4
- data/ext/pg_query/include/catalog/indexing.h +1 -1
- data/ext/pg_query/include/catalog/namespace.h +2 -2
- data/ext/pg_query/include/catalog/objectaccess.h +10 -8
- data/ext/pg_query/include/catalog/objectaddress.h +3 -3
- data/ext/pg_query/include/catalog/pg_aggregate.h +1 -1
- data/ext/pg_query/include/catalog/pg_aggregate_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_am.h +1 -1
- data/ext/pg_query/include/catalog/pg_am_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_attribute.h +19 -17
- data/ext/pg_query/include/catalog/pg_attribute_d.h +19 -19
- data/ext/pg_query/include/catalog/pg_authid.h +1 -1
- data/ext/pg_query/include/catalog/pg_authid_d.h +3 -1
- data/ext/pg_query/include/catalog/pg_class.h +1 -1
- data/ext/pg_query/include/catalog/pg_class_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_collation.h +3 -1
- data/ext/pg_query/include/catalog/pg_collation_d.h +4 -3
- data/ext/pg_query/include/catalog/pg_constraint.h +2 -2
- data/ext/pg_query/include/catalog/pg_constraint_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_control.h +9 -1
- data/ext/pg_query/include/catalog/pg_conversion.h +2 -2
- data/ext/pg_query/include/catalog/pg_conversion_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_database.h +124 -0
- data/ext/pg_query/include/catalog/pg_database_d.h +52 -0
- data/ext/pg_query/include/catalog/pg_depend.h +1 -1
- data/ext/pg_query/include/catalog/pg_depend_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_event_trigger.h +1 -1
- data/ext/pg_query/include/catalog/pg_event_trigger_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_index.h +1 -1
- data/ext/pg_query/include/catalog/pg_index_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_language.h +1 -1
- data/ext/pg_query/include/catalog/pg_language_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_namespace.h +1 -1
- data/ext/pg_query/include/catalog/pg_namespace_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_opclass.h +1 -1
- data/ext/pg_query/include/catalog/pg_opclass_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_operator.h +1 -1
- data/ext/pg_query/include/catalog/pg_operator_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_opfamily.h +3 -2
- data/ext/pg_query/include/catalog/pg_opfamily_d.h +4 -2
- data/ext/pg_query/include/catalog/pg_partitioned_table.h +1 -1
- data/ext/pg_query/include/catalog/pg_partitioned_table_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_proc.h +1 -1
- data/ext/pg_query/include/catalog/pg_proc_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_publication.h +2 -5
- data/ext/pg_query/include/catalog/pg_publication_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_replication_origin.h +1 -1
- data/ext/pg_query/include/catalog/pg_replication_origin_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_statistic.h +1 -1
- data/ext/pg_query/include/catalog/pg_statistic_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_statistic_ext.h +1 -1
- data/ext/pg_query/include/catalog/pg_statistic_ext_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_transform.h +1 -1
- data/ext/pg_query/include/catalog/pg_transform_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_trigger.h +1 -1
- data/ext/pg_query/include/catalog/pg_trigger_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_ts_config.h +1 -1
- data/ext/pg_query/include/catalog/pg_ts_config_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_ts_dict.h +1 -1
- data/ext/pg_query/include/catalog/pg_ts_dict_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_ts_parser.h +1 -1
- data/ext/pg_query/include/catalog/pg_ts_parser_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_ts_template.h +1 -1
- data/ext/pg_query/include/catalog/pg_ts_template_d.h +1 -1
- data/ext/pg_query/include/catalog/pg_type.h +1 -1
- data/ext/pg_query/include/catalog/pg_type_d.h +1 -1
- data/ext/pg_query/include/catalog/storage.h +6 -6
- data/ext/pg_query/include/commands/async.h +1 -1
- data/ext/pg_query/include/commands/dbcommands.h +2 -1
- data/ext/pg_query/include/commands/defrem.h +2 -1
- data/ext/pg_query/include/commands/event_trigger.h +1 -1
- data/ext/pg_query/include/commands/explain.h +3 -1
- data/ext/pg_query/include/commands/prepare.h +1 -1
- data/ext/pg_query/include/commands/tablespace.h +4 -4
- data/ext/pg_query/include/commands/trigger.h +15 -14
- data/ext/pg_query/include/commands/user.h +9 -3
- data/ext/pg_query/include/commands/vacuum.h +60 -14
- data/ext/pg_query/include/common/cryptohash.h +39 -0
- data/ext/pg_query/include/common/file_perm.h +1 -1
- data/ext/pg_query/include/common/hashfn.h +1 -1
- data/ext/pg_query/include/common/int.h +437 -0
- data/ext/pg_query/include/common/ip.h +4 -2
- data/ext/pg_query/include/common/keywords.h +1 -1
- data/ext/pg_query/include/common/kwlookup.h +2 -2
- data/ext/pg_query/include/common/pg_prng.h +3 -2
- data/ext/pg_query/include/common/relpath.h +20 -13
- data/ext/pg_query/include/common/scram-common.h +70 -0
- data/ext/pg_query/include/common/sha2.h +32 -0
- data/ext/pg_query/include/common/string.h +5 -3
- data/ext/pg_query/include/common/unicode_east_asian_fw_table.h +10 -10
- data/ext/pg_query/include/common/{unicode_combining_table.h → unicode_nonspacing_table.h} +31 -13
- data/ext/pg_query/include/copyfuncs.funcs.c +5013 -0
- data/ext/pg_query/include/copyfuncs.switch.c +938 -0
- data/ext/pg_query/include/datatype/timestamp.h +11 -4
- data/ext/pg_query/include/equalfuncs.funcs.c +3097 -0
- data/ext/pg_query/include/equalfuncs.switch.c +785 -0
- data/ext/pg_query/include/executor/execdesc.h +1 -1
- data/ext/pg_query/include/executor/executor.h +34 -17
- data/ext/pg_query/include/executor/functions.h +1 -1
- data/ext/pg_query/include/executor/instrument.h +1 -1
- data/ext/pg_query/include/executor/spi.h +2 -2
- data/ext/pg_query/include/executor/tablefunc.h +1 -1
- data/ext/pg_query/include/executor/tuptable.h +18 -11
- data/ext/pg_query/include/fmgr.h +21 -2
- data/ext/pg_query/include/foreign/fdwapi.h +294 -0
- data/ext/pg_query/include/funcapi.h +12 -12
- data/ext/pg_query/include/gram.h +1127 -0
- data/ext/pg_query/include/{parser/gramparse.h → gramparse.h} +4 -4
- data/ext/pg_query/include/jit/jit.h +2 -2
- data/ext/pg_query/include/kwlist_d.h +534 -510
- data/ext/pg_query/include/lib/dshash.h +4 -1
- data/ext/pg_query/include/lib/ilist.h +435 -22
- data/ext/pg_query/include/lib/pairingheap.h +1 -1
- data/ext/pg_query/include/lib/simplehash.h +9 -9
- data/ext/pg_query/include/lib/sort_template.h +1 -1
- data/ext/pg_query/include/lib/stringinfo.h +3 -3
- data/ext/pg_query/include/libpq/auth.h +8 -2
- data/ext/pg_query/include/libpq/crypt.h +1 -1
- data/ext/pg_query/include/libpq/hba.h +24 -17
- data/ext/pg_query/include/libpq/libpq-be.h +36 -25
- data/ext/pg_query/include/libpq/libpq.h +1 -1
- data/ext/pg_query/include/libpq/pqcomm.h +10 -41
- data/ext/pg_query/include/libpq/pqformat.h +2 -2
- data/ext/pg_query/include/libpq/pqsignal.h +22 -10
- data/ext/pg_query/include/libpq/sasl.h +136 -0
- data/ext/pg_query/include/libpq/scram.h +37 -0
- data/ext/pg_query/include/mb/pg_wchar.h +35 -18
- data/ext/pg_query/include/mb/stringinfo_mb.h +1 -1
- data/ext/pg_query/include/miscadmin.h +26 -14
- data/ext/pg_query/include/nodes/bitmapset.h +11 -7
- data/ext/pg_query/include/nodes/execnodes.h +83 -30
- data/ext/pg_query/include/nodes/extensible.h +5 -3
- data/ext/pg_query/include/nodes/lockoptions.h +1 -1
- data/ext/pg_query/include/nodes/makefuncs.h +14 -2
- data/ext/pg_query/include/nodes/memnodes.h +7 -4
- data/ext/pg_query/include/nodes/miscnodes.h +56 -0
- data/ext/pg_query/include/nodes/nodeFuncs.h +89 -29
- data/ext/pg_query/include/nodes/nodes.h +95 -510
- data/ext/pg_query/include/nodes/nodetags.h +471 -0
- data/ext/pg_query/include/nodes/params.h +3 -3
- data/ext/pg_query/include/nodes/parsenodes.h +377 -139
- data/ext/pg_query/include/nodes/pathnodes.h +1090 -440
- data/ext/pg_query/include/nodes/pg_list.h +30 -7
- data/ext/pg_query/include/nodes/plannodes.h +367 -124
- data/ext/pg_query/include/nodes/primnodes.h +670 -222
- data/ext/pg_query/include/nodes/print.h +1 -1
- data/ext/pg_query/include/{utils → nodes}/queryjumble.h +5 -7
- data/ext/pg_query/include/nodes/replnodes.h +111 -0
- data/ext/pg_query/include/nodes/supportnodes.h +346 -0
- data/ext/pg_query/include/nodes/tidbitmap.h +1 -1
- data/ext/pg_query/include/nodes/value.h +12 -2
- data/ext/pg_query/include/optimizer/cost.h +6 -4
- data/ext/pg_query/include/optimizer/geqo.h +1 -1
- data/ext/pg_query/include/optimizer/geqo_gene.h +1 -1
- data/ext/pg_query/include/optimizer/optimizer.h +8 -8
- data/ext/pg_query/include/optimizer/paths.h +16 -7
- data/ext/pg_query/include/optimizer/planmain.h +3 -6
- data/ext/pg_query/include/parser/analyze.h +4 -3
- data/ext/pg_query/include/parser/kwlist.h +12 -1
- data/ext/pg_query/include/parser/parse_agg.h +4 -2
- data/ext/pg_query/include/parser/parse_coerce.h +3 -1
- data/ext/pg_query/include/parser/parse_expr.h +1 -1
- data/ext/pg_query/include/parser/parse_func.h +1 -1
- data/ext/pg_query/include/parser/parse_node.h +22 -4
- data/ext/pg_query/include/parser/parse_oper.h +3 -3
- data/ext/pg_query/include/parser/parse_relation.h +8 -3
- data/ext/pg_query/include/parser/parse_type.h +4 -3
- data/ext/pg_query/include/parser/parser.h +1 -1
- data/ext/pg_query/include/parser/parsetree.h +1 -1
- data/ext/pg_query/include/parser/scanner.h +2 -2
- data/ext/pg_query/include/parser/scansup.h +1 -1
- data/ext/pg_query/include/partitioning/partdefs.h +1 -1
- data/ext/pg_query/include/pg_config.h +21 -216
- data/ext/pg_query/include/pg_config_manual.h +8 -46
- data/ext/pg_query/include/pg_getopt.h +1 -1
- data/ext/pg_query/include/pg_query.h +27 -3
- data/ext/pg_query/include/pg_query_enum_defs.c +311 -149
- data/ext/pg_query/include/pg_query_fingerprint_conds.c +545 -489
- data/ext/pg_query/include/pg_query_fingerprint_defs.c +5092 -4432
- data/ext/pg_query/include/pg_query_outfuncs_conds.c +385 -343
- data/ext/pg_query/include/pg_query_outfuncs_defs.c +1294 -1161
- data/ext/pg_query/include/pg_query_readfuncs_conds.c +137 -123
- data/ext/pg_query/include/pg_query_readfuncs_defs.c +1657 -1496
- data/ext/pg_query/include/pg_trace.h +1 -1
- data/ext/pg_query/include/pgstat.h +172 -93
- data/ext/pg_query/include/pgtime.h +3 -3
- data/ext/pg_query/include/pl_gram.h +64 -62
- data/ext/pg_query/include/pl_reserved_kwlist.h +1 -1
- data/ext/pg_query/include/pl_reserved_kwlist_d.h +1 -1
- data/ext/pg_query/include/pl_unreserved_kwlist.h +2 -1
- data/ext/pg_query/include/pl_unreserved_kwlist_d.h +48 -46
- data/ext/pg_query/include/plpgsql.h +17 -22
- data/ext/pg_query/include/port/atomics/arch-arm.h +3 -3
- data/ext/pg_query/include/port/atomics/arch-ppc.h +21 -21
- data/ext/pg_query/include/port/atomics/arch-x86.h +2 -2
- data/ext/pg_query/include/port/atomics/fallback.h +3 -3
- data/ext/pg_query/include/port/atomics/generic-gcc.h +1 -1
- data/ext/pg_query/include/port/atomics/generic.h +1 -1
- data/ext/pg_query/include/port/atomics.h +2 -7
- data/ext/pg_query/include/port/pg_bitutils.h +62 -25
- data/ext/pg_query/include/port/pg_bswap.h +1 -1
- data/ext/pg_query/include/port/pg_crc32c.h +1 -1
- data/ext/pg_query/include/port/simd.h +375 -0
- data/ext/pg_query/include/port.h +42 -75
- data/ext/pg_query/include/portability/instr_time.h +81 -140
- data/ext/pg_query/include/postgres.h +205 -434
- data/ext/pg_query/include/postgres_ext.h +0 -1
- data/ext/pg_query/include/postmaster/autovacuum.h +1 -4
- data/ext/pg_query/include/postmaster/auxprocess.h +1 -1
- data/ext/pg_query/include/postmaster/bgworker.h +2 -2
- data/ext/pg_query/include/postmaster/bgworker_internals.h +1 -1
- data/ext/pg_query/include/postmaster/bgwriter.h +2 -2
- data/ext/pg_query/include/postmaster/fork_process.h +1 -1
- data/ext/pg_query/include/postmaster/interrupt.h +1 -1
- data/ext/pg_query/include/postmaster/pgarch.h +1 -38
- data/ext/pg_query/include/postmaster/postmaster.h +5 -2
- data/ext/pg_query/include/postmaster/startup.h +3 -1
- data/ext/pg_query/include/postmaster/syslogger.h +2 -2
- data/ext/pg_query/include/postmaster/walwriter.h +3 -1
- data/ext/pg_query/include/protobuf/pg_query.pb-c.h +6186 -5585
- data/ext/pg_query/include/protobuf/pg_query.pb.h +112443 -91222
- data/ext/pg_query/include/regex/regex.h +9 -6
- data/ext/pg_query/include/replication/logicallauncher.h +6 -1
- data/ext/pg_query/include/replication/logicalproto.h +30 -10
- data/ext/pg_query/include/replication/logicalworker.h +14 -1
- data/ext/pg_query/include/replication/origin.h +4 -4
- data/ext/pg_query/include/replication/reorderbuffer.h +113 -45
- data/ext/pg_query/include/replication/slot.h +25 -6
- data/ext/pg_query/include/replication/syncrep.h +2 -8
- data/ext/pg_query/include/replication/walreceiver.h +15 -9
- data/ext/pg_query/include/replication/walsender.h +13 -13
- data/ext/pg_query/include/rewrite/prs2lock.h +1 -1
- data/ext/pg_query/include/rewrite/rewriteHandler.h +1 -4
- data/ext/pg_query/include/rewrite/rewriteManip.h +11 -2
- data/ext/pg_query/include/rewrite/rewriteSupport.h +1 -1
- data/ext/pg_query/include/src_backend_nodes_copyfuncs.funcs.c +5321 -0
- data/ext/pg_query/include/src_backend_nodes_equalfuncs.funcs.c +3354 -0
- data/ext/pg_query/include/storage/backendid.h +1 -1
- data/ext/pg_query/include/storage/block.h +24 -31
- data/ext/pg_query/include/storage/buf.h +1 -1
- data/ext/pg_query/include/storage/bufmgr.h +183 -87
- data/ext/pg_query/include/storage/bufpage.h +146 -93
- data/ext/pg_query/include/storage/condition_variable.h +2 -2
- data/ext/pg_query/include/storage/dsm.h +3 -6
- data/ext/pg_query/include/storage/dsm_impl.h +4 -1
- data/ext/pg_query/include/storage/fd.h +24 -20
- data/ext/pg_query/include/storage/fileset.h +1 -1
- data/ext/pg_query/include/storage/ipc.h +1 -1
- data/ext/pg_query/include/storage/item.h +1 -1
- data/ext/pg_query/include/storage/itemid.h +1 -1
- data/ext/pg_query/include/storage/itemptr.h +94 -57
- data/ext/pg_query/include/storage/large_object.h +1 -1
- data/ext/pg_query/include/storage/latch.h +9 -1
- data/ext/pg_query/include/storage/lmgr.h +6 -1
- data/ext/pg_query/include/storage/lock.h +21 -13
- data/ext/pg_query/include/storage/lockdefs.h +3 -3
- data/ext/pg_query/include/storage/lwlock.h +16 -2
- data/ext/pg_query/include/storage/off.h +1 -1
- data/ext/pg_query/include/storage/pg_sema.h +1 -1
- data/ext/pg_query/include/storage/pg_shmem.h +1 -1
- data/ext/pg_query/include/storage/pmsignal.h +1 -1
- data/ext/pg_query/include/storage/predicate.h +2 -2
- data/ext/pg_query/include/storage/proc.h +22 -17
- data/ext/pg_query/include/storage/procarray.h +3 -2
- data/ext/pg_query/include/storage/proclist_types.h +1 -1
- data/ext/pg_query/include/storage/procsignal.h +3 -1
- data/ext/pg_query/include/storage/relfilelocator.h +99 -0
- data/ext/pg_query/include/storage/s_lock.h +66 -309
- data/ext/pg_query/include/storage/sharedfileset.h +1 -1
- data/ext/pg_query/include/storage/shm_mq.h +1 -1
- data/ext/pg_query/include/storage/shm_toc.h +1 -1
- data/ext/pg_query/include/storage/shmem.h +1 -23
- data/ext/pg_query/include/storage/sinval.h +3 -3
- data/ext/pg_query/include/storage/sinvaladt.h +4 -2
- data/ext/pg_query/include/storage/smgr.h +12 -10
- data/ext/pg_query/include/storage/spin.h +1 -1
- data/ext/pg_query/include/storage/standby.h +9 -8
- data/ext/pg_query/include/storage/standbydefs.h +1 -1
- data/ext/pg_query/include/storage/sync.h +3 -3
- data/ext/pg_query/include/tcop/cmdtag.h +7 -2
- data/ext/pg_query/include/tcop/cmdtaglist.h +1 -1
- data/ext/pg_query/include/tcop/deparse_utility.h +1 -1
- data/ext/pg_query/include/tcop/dest.h +1 -3
- data/ext/pg_query/include/tcop/fastpath.h +1 -1
- data/ext/pg_query/include/tcop/pquery.h +1 -1
- data/ext/pg_query/include/tcop/tcopprot.h +1 -4
- data/ext/pg_query/include/tcop/utility.h +1 -1
- data/ext/pg_query/include/tsearch/ts_cache.h +2 -4
- data/ext/pg_query/include/utils/acl.h +26 -81
- data/ext/pg_query/include/utils/aclchk_internal.h +1 -1
- data/ext/pg_query/include/utils/array.h +19 -1
- data/ext/pg_query/include/utils/backend_progress.h +2 -1
- data/ext/pg_query/include/utils/backend_status.h +24 -3
- data/ext/pg_query/include/utils/builtins.h +14 -5
- data/ext/pg_query/include/utils/bytea.h +1 -1
- data/ext/pg_query/include/utils/catcache.h +1 -1
- data/ext/pg_query/include/utils/date.h +37 -9
- data/ext/pg_query/include/utils/datetime.h +41 -21
- data/ext/pg_query/include/utils/datum.h +1 -1
- data/ext/pg_query/include/utils/dsa.h +5 -1
- data/ext/pg_query/include/utils/elog.h +101 -26
- data/ext/pg_query/include/utils/expandeddatum.h +14 -3
- data/ext/pg_query/include/utils/expandedrecord.h +14 -4
- data/ext/pg_query/include/utils/float.h +7 -6
- data/ext/pg_query/include/utils/fmgroids.h +54 -1
- data/ext/pg_query/include/utils/fmgrprotos.h +45 -3
- data/ext/pg_query/include/utils/fmgrtab.h +1 -1
- data/ext/pg_query/include/utils/guc.h +55 -82
- data/ext/pg_query/include/utils/guc_hooks.h +163 -0
- data/ext/pg_query/include/utils/guc_tables.h +49 -3
- data/ext/pg_query/include/utils/hsearch.h +1 -1
- data/ext/pg_query/include/utils/inval.h +3 -3
- data/ext/pg_query/include/utils/logtape.h +77 -0
- data/ext/pg_query/include/utils/lsyscache.h +5 -1
- data/ext/pg_query/include/utils/memdebug.h +1 -1
- data/ext/pg_query/include/utils/memutils.h +5 -49
- data/ext/pg_query/include/utils/memutils_internal.h +136 -0
- data/ext/pg_query/include/utils/memutils_memorychunk.h +237 -0
- data/ext/pg_query/include/utils/numeric.h +20 -5
- data/ext/pg_query/include/utils/palloc.h +8 -1
- data/ext/pg_query/include/utils/partcache.h +3 -2
- data/ext/pg_query/include/utils/pg_locale.h +22 -14
- data/ext/pg_query/include/utils/pgstat_internal.h +37 -7
- data/ext/pg_query/include/utils/pidfile.h +1 -1
- data/ext/pg_query/include/utils/plancache.h +1 -1
- data/ext/pg_query/include/utils/portal.h +1 -1
- data/ext/pg_query/include/utils/probes.h +6 -6
- data/ext/pg_query/include/utils/ps_status.h +23 -1
- data/ext/pg_query/include/utils/queryenvironment.h +1 -1
- data/ext/pg_query/include/utils/regproc.h +3 -3
- data/ext/pg_query/include/utils/rel.h +60 -43
- data/ext/pg_query/include/utils/relcache.h +13 -8
- data/ext/pg_query/include/utils/reltrigger.h +1 -1
- data/ext/pg_query/include/utils/resowner.h +1 -1
- data/ext/pg_query/include/utils/ruleutils.h +6 -1
- data/ext/pg_query/include/utils/sharedtuplestore.h +1 -1
- data/ext/pg_query/include/utils/snapmgr.h +4 -2
- data/ext/pg_query/include/utils/snapshot.h +1 -1
- data/ext/pg_query/include/utils/sortsupport.h +2 -2
- data/ext/pg_query/include/utils/syscache.h +4 -1
- data/ext/pg_query/include/utils/timeout.h +1 -1
- data/ext/pg_query/include/utils/timestamp.h +41 -11
- data/ext/pg_query/include/utils/tuplesort.h +189 -35
- data/ext/pg_query/include/utils/tuplestore.h +1 -1
- data/ext/pg_query/include/utils/typcache.h +1 -1
- data/ext/pg_query/include/utils/varlena.h +13 -1
- data/ext/pg_query/include/utils/wait_event.h +9 -4
- data/ext/pg_query/include/utils/xml.h +15 -5
- data/ext/pg_query/include/varatt.h +358 -0
- data/ext/pg_query/pg_query.c +1 -1
- data/ext/pg_query/pg_query.pb-c.c +19755 -17757
- data/ext/pg_query/pg_query_fingerprint.c +8 -3
- data/ext/pg_query/pg_query_fingerprint.h +1 -1
- data/ext/pg_query/pg_query_internal.h +1 -1
- data/ext/pg_query/pg_query_json_plpgsql.c +1 -0
- data/ext/pg_query/pg_query_normalize.c +1 -1
- data/ext/pg_query/pg_query_outfuncs_protobuf.c +2 -2
- data/ext/pg_query/pg_query_parse.c +46 -4
- data/ext/pg_query/pg_query_parse_plpgsql.c +1 -1
- data/ext/pg_query/pg_query_scan.c +1 -1
- data/ext/pg_query/pg_query_split.c +2 -2
- data/ext/pg_query/postgres_deparse.c +503 -105
- data/ext/pg_query/src_backend_catalog_namespace.c +7 -2
- data/ext/pg_query/src_backend_catalog_pg_proc.c +1 -1
- data/ext/pg_query/src_backend_commands_define.c +1 -1
- data/ext/pg_query/src_backend_nodes_bitmapset.c +11 -70
- data/ext/pg_query/src_backend_nodes_copyfuncs.c +96 -6202
- data/ext/pg_query/src_backend_nodes_equalfuncs.c +95 -4068
- data/ext/pg_query/src_backend_nodes_extensible.c +6 -29
- data/ext/pg_query/src_backend_nodes_list.c +14 -2
- data/ext/pg_query/src_backend_nodes_makefuncs.c +95 -1
- data/ext/pg_query/src_backend_nodes_nodeFuncs.c +283 -132
- data/ext/pg_query/src_backend_nodes_value.c +1 -1
- data/ext/pg_query/src_backend_parser_gram.c +33208 -31806
- data/ext/pg_query/src_backend_parser_parser.c +28 -2
- data/ext/pg_query/src_backend_parser_scan.c +4318 -3329
- data/ext/pg_query/src_backend_parser_scansup.c +1 -1
- data/ext/pg_query/src_backend_postmaster_postmaster.c +129 -110
- data/ext/pg_query/src_backend_storage_ipc_ipc.c +1 -1
- data/ext/pg_query/src_backend_tcop_postgres.c +66 -87
- data/ext/pg_query/src_backend_utils_activity_pgstat_database.c +1 -1
- data/ext/pg_query/src_backend_utils_adt_datum.c +5 -7
- 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 +489 -0
- data/ext/pg_query/src_backend_utils_adt_ruleutils.c +79 -5
- data/ext/pg_query/src_backend_utils_error_assert.c +4 -7
- data/ext/pg_query/src_backend_utils_error_elog.c +354 -97
- data/ext/pg_query/src_backend_utils_fmgr_fmgr.c +33 -1
- data/ext/pg_query/src_backend_utils_init_globals.c +5 -2
- data/ext/pg_query/src_backend_utils_mb_mbutils.c +13 -4
- data/ext/pg_query/src_backend_utils_misc_guc_tables.c +494 -0
- data/ext/pg_query/src_backend_utils_mmgr_alignedalloc.c +163 -0
- data/ext/pg_query/src_backend_utils_mmgr_aset.c +449 -312
- data/ext/pg_query/src_backend_utils_mmgr_generation.c +1039 -0
- data/ext/pg_query/src_backend_utils_mmgr_mcxt.c +398 -49
- data/ext/pg_query/src_backend_utils_mmgr_slab.c +1021 -0
- data/ext/pg_query/src_common_encnames.c +4 -1
- 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 +534 -510
- data/ext/pg_query/src_common_kwlookup.c +1 -1
- data/ext/pg_query/src_common_psprintf.c +1 -1
- data/ext/pg_query/src_common_stringinfo.c +4 -4
- data/ext/pg_query/src_common_wchar.c +9 -8
- data/ext/pg_query/src_pl_plpgsql_src_pl_comp.c +1 -1
- data/ext/pg_query/src_pl_plpgsql_src_pl_funcs.c +3 -1
- data/ext/pg_query/src_pl_plpgsql_src_pl_gram.c +661 -694
- 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 +1 -1
- data/ext/pg_query/src_pl_plpgsql_src_pl_unreserved_kwlist_d.h +48 -46
- data/ext/pg_query/src_port_pg_bitutils.c +1 -1
- data/ext/pg_query/src_port_pgstrcasecmp.c +29 -1
- data/ext/pg_query/src_port_snprintf.c +3 -7
- data/ext/pg_query/src_port_strerror.c +1 -1
- data/ext/pg_query/src_port_strnlen.c +1 -1
- data/lib/pg_query/pg_query_pb.rb +166 -3191
- data/lib/pg_query/treewalker.rb +7 -2
- data/lib/pg_query/version.rb +1 -1
- metadata +43 -24
- data/ext/pg_query/include/catalog/pg_parameter_acl.h +0 -60
- data/ext/pg_query/include/catalog/pg_parameter_acl_d.h +0 -34
- data/ext/pg_query/include/commands/variable.h +0 -38
- data/ext/pg_query/include/getaddrinfo.h +0 -162
- data/ext/pg_query/include/parser/gram.h +0 -1101
- data/ext/pg_query/include/storage/relfilenode.h +0 -99
- data/ext/pg_query/include/utils/dynahash.h +0 -20
- data/ext/pg_query/include/utils/pg_lsn.h +0 -29
- data/ext/pg_query/include/utils/rls.h +0 -50
- data/ext/pg_query/include/utils/tzparser.h +0 -39
- data/ext/pg_query/src_backend_storage_lmgr_s_lock.c +0 -371
- data/ext/pg_query/src_backend_utils_hash_dynahash.c +0 -1116
- data/ext/pg_query/src_backend_utils_misc_guc.c +0 -1993
- data/ext/pg_query/src_common_pg_prng.c +0 -152
- data/ext/pg_query/src_common_string.c +0 -92
- data/ext/pg_query/src_port_pgsleep.c +0 -69
|
@@ -9,6 +9,10 @@ case T_TableFunc:
|
|
|
9
9
|
_fingerprintString(ctx, "TableFunc");
|
|
10
10
|
_fingerprintTableFunc(ctx, obj, parent, field_name, depth);
|
|
11
11
|
break;
|
|
12
|
+
case T_IntoClause:
|
|
13
|
+
_fingerprintString(ctx, "IntoClause");
|
|
14
|
+
_fingerprintIntoClause(ctx, obj, parent, field_name, depth);
|
|
15
|
+
break;
|
|
12
16
|
case T_Var:
|
|
13
17
|
_fingerprintString(ctx, "Var");
|
|
14
18
|
_fingerprintVar(ctx, obj, parent, field_name, depth);
|
|
@@ -137,6 +141,26 @@ case T_XmlExpr:
|
|
|
137
141
|
_fingerprintString(ctx, "XmlExpr");
|
|
138
142
|
_fingerprintXmlExpr(ctx, obj, parent, field_name, depth);
|
|
139
143
|
break;
|
|
144
|
+
case T_JsonFormat:
|
|
145
|
+
_fingerprintString(ctx, "JsonFormat");
|
|
146
|
+
_fingerprintJsonFormat(ctx, obj, parent, field_name, depth);
|
|
147
|
+
break;
|
|
148
|
+
case T_JsonReturning:
|
|
149
|
+
_fingerprintString(ctx, "JsonReturning");
|
|
150
|
+
_fingerprintJsonReturning(ctx, obj, parent, field_name, depth);
|
|
151
|
+
break;
|
|
152
|
+
case T_JsonValueExpr:
|
|
153
|
+
_fingerprintString(ctx, "JsonValueExpr");
|
|
154
|
+
_fingerprintJsonValueExpr(ctx, obj, parent, field_name, depth);
|
|
155
|
+
break;
|
|
156
|
+
case T_JsonConstructorExpr:
|
|
157
|
+
_fingerprintString(ctx, "JsonConstructorExpr");
|
|
158
|
+
_fingerprintJsonConstructorExpr(ctx, obj, parent, field_name, depth);
|
|
159
|
+
break;
|
|
160
|
+
case T_JsonIsPredicate:
|
|
161
|
+
_fingerprintString(ctx, "JsonIsPredicate");
|
|
162
|
+
_fingerprintJsonIsPredicate(ctx, obj, parent, field_name, depth);
|
|
163
|
+
break;
|
|
140
164
|
case T_NullTest:
|
|
141
165
|
_fingerprintString(ctx, "NullTest");
|
|
142
166
|
_fingerprintNullTest(ctx, obj, parent, field_name, depth);
|
|
@@ -188,22 +212,248 @@ case T_OnConflictExpr:
|
|
|
188
212
|
_fingerprintString(ctx, "OnConflictExpr");
|
|
189
213
|
_fingerprintOnConflictExpr(ctx, obj, parent, field_name, depth);
|
|
190
214
|
break;
|
|
191
|
-
case
|
|
192
|
-
_fingerprintString(ctx, "
|
|
193
|
-
|
|
215
|
+
case T_Query:
|
|
216
|
+
_fingerprintString(ctx, "Query");
|
|
217
|
+
_fingerprintQuery(ctx, obj, parent, field_name, depth);
|
|
218
|
+
break;
|
|
219
|
+
case T_TypeName:
|
|
220
|
+
_fingerprintString(ctx, "TypeName");
|
|
221
|
+
_fingerprintTypeName(ctx, obj, parent, field_name, depth);
|
|
222
|
+
break;
|
|
223
|
+
case T_ColumnRef:
|
|
224
|
+
_fingerprintString(ctx, "ColumnRef");
|
|
225
|
+
_fingerprintColumnRef(ctx, obj, parent, field_name, depth);
|
|
226
|
+
break;
|
|
227
|
+
case T_ParamRef:
|
|
228
|
+
// Intentionally ignoring for fingerprinting
|
|
229
|
+
break;
|
|
230
|
+
case T_A_Expr:
|
|
231
|
+
_fingerprintString(ctx, "A_Expr");
|
|
232
|
+
_fingerprintA_Expr(ctx, obj, parent, field_name, depth);
|
|
233
|
+
break;
|
|
234
|
+
case T_TypeCast:
|
|
235
|
+
if (!IsA(castNode(TypeCast, (void*) obj)->arg, A_Const) && !IsA(castNode(TypeCast, (void*) obj)->arg, ParamRef))
|
|
236
|
+
{
|
|
237
|
+
_fingerprintString(ctx, "TypeCast");
|
|
238
|
+
_fingerprintTypeCast(ctx, obj, parent, field_name, depth);
|
|
239
|
+
}
|
|
240
|
+
break;
|
|
241
|
+
case T_CollateClause:
|
|
242
|
+
_fingerprintString(ctx, "CollateClause");
|
|
243
|
+
_fingerprintCollateClause(ctx, obj, parent, field_name, depth);
|
|
244
|
+
break;
|
|
245
|
+
case T_RoleSpec:
|
|
246
|
+
_fingerprintString(ctx, "RoleSpec");
|
|
247
|
+
_fingerprintRoleSpec(ctx, obj, parent, field_name, depth);
|
|
248
|
+
break;
|
|
249
|
+
case T_FuncCall:
|
|
250
|
+
_fingerprintString(ctx, "FuncCall");
|
|
251
|
+
_fingerprintFuncCall(ctx, obj, parent, field_name, depth);
|
|
252
|
+
break;
|
|
253
|
+
case T_A_Star:
|
|
254
|
+
_fingerprintString(ctx, "A_Star");
|
|
255
|
+
_fingerprintA_Star(ctx, obj, parent, field_name, depth);
|
|
256
|
+
break;
|
|
257
|
+
case T_A_Indices:
|
|
258
|
+
_fingerprintString(ctx, "A_Indices");
|
|
259
|
+
_fingerprintA_Indices(ctx, obj, parent, field_name, depth);
|
|
260
|
+
break;
|
|
261
|
+
case T_A_Indirection:
|
|
262
|
+
_fingerprintString(ctx, "A_Indirection");
|
|
263
|
+
_fingerprintA_Indirection(ctx, obj, parent, field_name, depth);
|
|
264
|
+
break;
|
|
265
|
+
case T_A_ArrayExpr:
|
|
266
|
+
_fingerprintString(ctx, "A_ArrayExpr");
|
|
267
|
+
_fingerprintA_ArrayExpr(ctx, obj, parent, field_name, depth);
|
|
268
|
+
break;
|
|
269
|
+
case T_ResTarget:
|
|
270
|
+
_fingerprintString(ctx, "ResTarget");
|
|
271
|
+
_fingerprintResTarget(ctx, obj, parent, field_name, depth);
|
|
272
|
+
break;
|
|
273
|
+
case T_MultiAssignRef:
|
|
274
|
+
_fingerprintString(ctx, "MultiAssignRef");
|
|
275
|
+
_fingerprintMultiAssignRef(ctx, obj, parent, field_name, depth);
|
|
276
|
+
break;
|
|
277
|
+
case T_SortBy:
|
|
278
|
+
_fingerprintString(ctx, "SortBy");
|
|
279
|
+
_fingerprintSortBy(ctx, obj, parent, field_name, depth);
|
|
280
|
+
break;
|
|
281
|
+
case T_WindowDef:
|
|
282
|
+
_fingerprintString(ctx, "WindowDef");
|
|
283
|
+
_fingerprintWindowDef(ctx, obj, parent, field_name, depth);
|
|
284
|
+
break;
|
|
285
|
+
case T_RangeSubselect:
|
|
286
|
+
_fingerprintString(ctx, "RangeSubselect");
|
|
287
|
+
_fingerprintRangeSubselect(ctx, obj, parent, field_name, depth);
|
|
288
|
+
break;
|
|
289
|
+
case T_RangeFunction:
|
|
290
|
+
_fingerprintString(ctx, "RangeFunction");
|
|
291
|
+
_fingerprintRangeFunction(ctx, obj, parent, field_name, depth);
|
|
292
|
+
break;
|
|
293
|
+
case T_RangeTableFunc:
|
|
294
|
+
_fingerprintString(ctx, "RangeTableFunc");
|
|
295
|
+
_fingerprintRangeTableFunc(ctx, obj, parent, field_name, depth);
|
|
296
|
+
break;
|
|
297
|
+
case T_RangeTableFuncCol:
|
|
298
|
+
_fingerprintString(ctx, "RangeTableFuncCol");
|
|
299
|
+
_fingerprintRangeTableFuncCol(ctx, obj, parent, field_name, depth);
|
|
300
|
+
break;
|
|
301
|
+
case T_RangeTableSample:
|
|
302
|
+
_fingerprintString(ctx, "RangeTableSample");
|
|
303
|
+
_fingerprintRangeTableSample(ctx, obj, parent, field_name, depth);
|
|
304
|
+
break;
|
|
305
|
+
case T_ColumnDef:
|
|
306
|
+
_fingerprintString(ctx, "ColumnDef");
|
|
307
|
+
_fingerprintColumnDef(ctx, obj, parent, field_name, depth);
|
|
308
|
+
break;
|
|
309
|
+
case T_TableLikeClause:
|
|
310
|
+
_fingerprintString(ctx, "TableLikeClause");
|
|
311
|
+
_fingerprintTableLikeClause(ctx, obj, parent, field_name, depth);
|
|
312
|
+
break;
|
|
313
|
+
case T_IndexElem:
|
|
314
|
+
_fingerprintString(ctx, "IndexElem");
|
|
315
|
+
_fingerprintIndexElem(ctx, obj, parent, field_name, depth);
|
|
316
|
+
break;
|
|
317
|
+
case T_DefElem:
|
|
318
|
+
_fingerprintString(ctx, "DefElem");
|
|
319
|
+
_fingerprintDefElem(ctx, obj, parent, field_name, depth);
|
|
320
|
+
break;
|
|
321
|
+
case T_LockingClause:
|
|
322
|
+
_fingerprintString(ctx, "LockingClause");
|
|
323
|
+
_fingerprintLockingClause(ctx, obj, parent, field_name, depth);
|
|
324
|
+
break;
|
|
325
|
+
case T_XmlSerialize:
|
|
326
|
+
_fingerprintString(ctx, "XmlSerialize");
|
|
327
|
+
_fingerprintXmlSerialize(ctx, obj, parent, field_name, depth);
|
|
328
|
+
break;
|
|
329
|
+
case T_PartitionElem:
|
|
330
|
+
_fingerprintString(ctx, "PartitionElem");
|
|
331
|
+
_fingerprintPartitionElem(ctx, obj, parent, field_name, depth);
|
|
332
|
+
break;
|
|
333
|
+
case T_PartitionSpec:
|
|
334
|
+
_fingerprintString(ctx, "PartitionSpec");
|
|
335
|
+
_fingerprintPartitionSpec(ctx, obj, parent, field_name, depth);
|
|
336
|
+
break;
|
|
337
|
+
case T_PartitionBoundSpec:
|
|
338
|
+
_fingerprintString(ctx, "PartitionBoundSpec");
|
|
339
|
+
_fingerprintPartitionBoundSpec(ctx, obj, parent, field_name, depth);
|
|
340
|
+
break;
|
|
341
|
+
case T_PartitionRangeDatum:
|
|
342
|
+
_fingerprintString(ctx, "PartitionRangeDatum");
|
|
343
|
+
_fingerprintPartitionRangeDatum(ctx, obj, parent, field_name, depth);
|
|
344
|
+
break;
|
|
345
|
+
case T_PartitionCmd:
|
|
346
|
+
_fingerprintString(ctx, "PartitionCmd");
|
|
347
|
+
_fingerprintPartitionCmd(ctx, obj, parent, field_name, depth);
|
|
348
|
+
break;
|
|
349
|
+
case T_RangeTblEntry:
|
|
350
|
+
_fingerprintString(ctx, "RangeTblEntry");
|
|
351
|
+
_fingerprintRangeTblEntry(ctx, obj, parent, field_name, depth);
|
|
352
|
+
break;
|
|
353
|
+
case T_RTEPermissionInfo:
|
|
354
|
+
_fingerprintString(ctx, "RTEPermissionInfo");
|
|
355
|
+
_fingerprintRTEPermissionInfo(ctx, obj, parent, field_name, depth);
|
|
356
|
+
break;
|
|
357
|
+
case T_RangeTblFunction:
|
|
358
|
+
_fingerprintString(ctx, "RangeTblFunction");
|
|
359
|
+
_fingerprintRangeTblFunction(ctx, obj, parent, field_name, depth);
|
|
360
|
+
break;
|
|
361
|
+
case T_TableSampleClause:
|
|
362
|
+
_fingerprintString(ctx, "TableSampleClause");
|
|
363
|
+
_fingerprintTableSampleClause(ctx, obj, parent, field_name, depth);
|
|
364
|
+
break;
|
|
365
|
+
case T_WithCheckOption:
|
|
366
|
+
_fingerprintString(ctx, "WithCheckOption");
|
|
367
|
+
_fingerprintWithCheckOption(ctx, obj, parent, field_name, depth);
|
|
368
|
+
break;
|
|
369
|
+
case T_SortGroupClause:
|
|
370
|
+
_fingerprintString(ctx, "SortGroupClause");
|
|
371
|
+
_fingerprintSortGroupClause(ctx, obj, parent, field_name, depth);
|
|
372
|
+
break;
|
|
373
|
+
case T_GroupingSet:
|
|
374
|
+
_fingerprintString(ctx, "GroupingSet");
|
|
375
|
+
_fingerprintGroupingSet(ctx, obj, parent, field_name, depth);
|
|
376
|
+
break;
|
|
377
|
+
case T_WindowClause:
|
|
378
|
+
_fingerprintString(ctx, "WindowClause");
|
|
379
|
+
_fingerprintWindowClause(ctx, obj, parent, field_name, depth);
|
|
380
|
+
break;
|
|
381
|
+
case T_RowMarkClause:
|
|
382
|
+
_fingerprintString(ctx, "RowMarkClause");
|
|
383
|
+
_fingerprintRowMarkClause(ctx, obj, parent, field_name, depth);
|
|
384
|
+
break;
|
|
385
|
+
case T_WithClause:
|
|
386
|
+
_fingerprintString(ctx, "WithClause");
|
|
387
|
+
_fingerprintWithClause(ctx, obj, parent, field_name, depth);
|
|
388
|
+
break;
|
|
389
|
+
case T_InferClause:
|
|
390
|
+
_fingerprintString(ctx, "InferClause");
|
|
391
|
+
_fingerprintInferClause(ctx, obj, parent, field_name, depth);
|
|
392
|
+
break;
|
|
393
|
+
case T_OnConflictClause:
|
|
394
|
+
_fingerprintString(ctx, "OnConflictClause");
|
|
395
|
+
_fingerprintOnConflictClause(ctx, obj, parent, field_name, depth);
|
|
396
|
+
break;
|
|
397
|
+
case T_CTESearchClause:
|
|
398
|
+
_fingerprintString(ctx, "CTESearchClause");
|
|
399
|
+
_fingerprintCTESearchClause(ctx, obj, parent, field_name, depth);
|
|
400
|
+
break;
|
|
401
|
+
case T_CTECycleClause:
|
|
402
|
+
_fingerprintString(ctx, "CTECycleClause");
|
|
403
|
+
_fingerprintCTECycleClause(ctx, obj, parent, field_name, depth);
|
|
404
|
+
break;
|
|
405
|
+
case T_CommonTableExpr:
|
|
406
|
+
_fingerprintString(ctx, "CommonTableExpr");
|
|
407
|
+
_fingerprintCommonTableExpr(ctx, obj, parent, field_name, depth);
|
|
408
|
+
break;
|
|
409
|
+
case T_MergeWhenClause:
|
|
410
|
+
_fingerprintString(ctx, "MergeWhenClause");
|
|
411
|
+
_fingerprintMergeWhenClause(ctx, obj, parent, field_name, depth);
|
|
194
412
|
break;
|
|
195
413
|
case T_MergeAction:
|
|
196
414
|
_fingerprintString(ctx, "MergeAction");
|
|
197
415
|
_fingerprintMergeAction(ctx, obj, parent, field_name, depth);
|
|
198
416
|
break;
|
|
417
|
+
case T_TriggerTransition:
|
|
418
|
+
_fingerprintString(ctx, "TriggerTransition");
|
|
419
|
+
_fingerprintTriggerTransition(ctx, obj, parent, field_name, depth);
|
|
420
|
+
break;
|
|
421
|
+
case T_JsonOutput:
|
|
422
|
+
_fingerprintString(ctx, "JsonOutput");
|
|
423
|
+
_fingerprintJsonOutput(ctx, obj, parent, field_name, depth);
|
|
424
|
+
break;
|
|
425
|
+
case T_JsonKeyValue:
|
|
426
|
+
_fingerprintString(ctx, "JsonKeyValue");
|
|
427
|
+
_fingerprintJsonKeyValue(ctx, obj, parent, field_name, depth);
|
|
428
|
+
break;
|
|
429
|
+
case T_JsonObjectConstructor:
|
|
430
|
+
_fingerprintString(ctx, "JsonObjectConstructor");
|
|
431
|
+
_fingerprintJsonObjectConstructor(ctx, obj, parent, field_name, depth);
|
|
432
|
+
break;
|
|
433
|
+
case T_JsonArrayConstructor:
|
|
434
|
+
_fingerprintString(ctx, "JsonArrayConstructor");
|
|
435
|
+
_fingerprintJsonArrayConstructor(ctx, obj, parent, field_name, depth);
|
|
436
|
+
break;
|
|
437
|
+
case T_JsonArrayQueryConstructor:
|
|
438
|
+
_fingerprintString(ctx, "JsonArrayQueryConstructor");
|
|
439
|
+
_fingerprintJsonArrayQueryConstructor(ctx, obj, parent, field_name, depth);
|
|
440
|
+
break;
|
|
441
|
+
case T_JsonAggConstructor:
|
|
442
|
+
_fingerprintString(ctx, "JsonAggConstructor");
|
|
443
|
+
_fingerprintJsonAggConstructor(ctx, obj, parent, field_name, depth);
|
|
444
|
+
break;
|
|
445
|
+
case T_JsonObjectAgg:
|
|
446
|
+
_fingerprintString(ctx, "JsonObjectAgg");
|
|
447
|
+
_fingerprintJsonObjectAgg(ctx, obj, parent, field_name, depth);
|
|
448
|
+
break;
|
|
449
|
+
case T_JsonArrayAgg:
|
|
450
|
+
_fingerprintString(ctx, "JsonArrayAgg");
|
|
451
|
+
_fingerprintJsonArrayAgg(ctx, obj, parent, field_name, depth);
|
|
452
|
+
break;
|
|
199
453
|
case T_RawStmt:
|
|
200
454
|
_fingerprintString(ctx, "RawStmt");
|
|
201
455
|
_fingerprintRawStmt(ctx, obj, parent, field_name, depth);
|
|
202
456
|
break;
|
|
203
|
-
case T_Query:
|
|
204
|
-
_fingerprintString(ctx, "Query");
|
|
205
|
-
_fingerprintQuery(ctx, obj, parent, field_name, depth);
|
|
206
|
-
break;
|
|
207
457
|
case T_InsertStmt:
|
|
208
458
|
_fingerprintString(ctx, "InsertStmt");
|
|
209
459
|
_fingerprintInsertStmt(ctx, obj, parent, field_name, depth);
|
|
@@ -224,6 +474,10 @@ case T_SelectStmt:
|
|
|
224
474
|
_fingerprintString(ctx, "SelectStmt");
|
|
225
475
|
_fingerprintSelectStmt(ctx, obj, parent, field_name, depth);
|
|
226
476
|
break;
|
|
477
|
+
case T_SetOperationStmt:
|
|
478
|
+
_fingerprintString(ctx, "SetOperationStmt");
|
|
479
|
+
_fingerprintSetOperationStmt(ctx, obj, parent, field_name, depth);
|
|
480
|
+
break;
|
|
227
481
|
case T_ReturnStmt:
|
|
228
482
|
_fingerprintString(ctx, "ReturnStmt");
|
|
229
483
|
_fingerprintReturnStmt(ctx, obj, parent, field_name, depth);
|
|
@@ -232,26 +486,42 @@ case T_PLAssignStmt:
|
|
|
232
486
|
_fingerprintString(ctx, "PLAssignStmt");
|
|
233
487
|
_fingerprintPLAssignStmt(ctx, obj, parent, field_name, depth);
|
|
234
488
|
break;
|
|
489
|
+
case T_CreateSchemaStmt:
|
|
490
|
+
_fingerprintString(ctx, "CreateSchemaStmt");
|
|
491
|
+
_fingerprintCreateSchemaStmt(ctx, obj, parent, field_name, depth);
|
|
492
|
+
break;
|
|
235
493
|
case T_AlterTableStmt:
|
|
236
494
|
_fingerprintString(ctx, "AlterTableStmt");
|
|
237
495
|
_fingerprintAlterTableStmt(ctx, obj, parent, field_name, depth);
|
|
238
496
|
break;
|
|
497
|
+
case T_ReplicaIdentityStmt:
|
|
498
|
+
_fingerprintString(ctx, "ReplicaIdentityStmt");
|
|
499
|
+
_fingerprintReplicaIdentityStmt(ctx, obj, parent, field_name, depth);
|
|
500
|
+
break;
|
|
239
501
|
case T_AlterTableCmd:
|
|
240
502
|
_fingerprintString(ctx, "AlterTableCmd");
|
|
241
503
|
_fingerprintAlterTableCmd(ctx, obj, parent, field_name, depth);
|
|
242
504
|
break;
|
|
505
|
+
case T_AlterCollationStmt:
|
|
506
|
+
_fingerprintString(ctx, "AlterCollationStmt");
|
|
507
|
+
_fingerprintAlterCollationStmt(ctx, obj, parent, field_name, depth);
|
|
508
|
+
break;
|
|
243
509
|
case T_AlterDomainStmt:
|
|
244
510
|
_fingerprintString(ctx, "AlterDomainStmt");
|
|
245
511
|
_fingerprintAlterDomainStmt(ctx, obj, parent, field_name, depth);
|
|
246
512
|
break;
|
|
247
|
-
case T_SetOperationStmt:
|
|
248
|
-
_fingerprintString(ctx, "SetOperationStmt");
|
|
249
|
-
_fingerprintSetOperationStmt(ctx, obj, parent, field_name, depth);
|
|
250
|
-
break;
|
|
251
513
|
case T_GrantStmt:
|
|
252
514
|
_fingerprintString(ctx, "GrantStmt");
|
|
253
515
|
_fingerprintGrantStmt(ctx, obj, parent, field_name, depth);
|
|
254
516
|
break;
|
|
517
|
+
case T_ObjectWithArgs:
|
|
518
|
+
_fingerprintString(ctx, "ObjectWithArgs");
|
|
519
|
+
_fingerprintObjectWithArgs(ctx, obj, parent, field_name, depth);
|
|
520
|
+
break;
|
|
521
|
+
case T_AccessPriv:
|
|
522
|
+
_fingerprintString(ctx, "AccessPriv");
|
|
523
|
+
_fingerprintAccessPriv(ctx, obj, parent, field_name, depth);
|
|
524
|
+
break;
|
|
255
525
|
case T_GrantRoleStmt:
|
|
256
526
|
_fingerprintString(ctx, "GrantRoleStmt");
|
|
257
527
|
_fingerprintGrantRoleStmt(ctx, obj, parent, field_name, depth);
|
|
@@ -260,26 +530,166 @@ case T_AlterDefaultPrivilegesStmt:
|
|
|
260
530
|
_fingerprintString(ctx, "AlterDefaultPrivilegesStmt");
|
|
261
531
|
_fingerprintAlterDefaultPrivilegesStmt(ctx, obj, parent, field_name, depth);
|
|
262
532
|
break;
|
|
263
|
-
case
|
|
264
|
-
_fingerprintString(ctx, "
|
|
265
|
-
|
|
533
|
+
case T_CopyStmt:
|
|
534
|
+
_fingerprintString(ctx, "CopyStmt");
|
|
535
|
+
_fingerprintCopyStmt(ctx, obj, parent, field_name, depth);
|
|
266
536
|
break;
|
|
267
|
-
case
|
|
268
|
-
_fingerprintString(ctx, "
|
|
269
|
-
|
|
537
|
+
case T_VariableSetStmt:
|
|
538
|
+
_fingerprintString(ctx, "VariableSetStmt");
|
|
539
|
+
_fingerprintVariableSetStmt(ctx, obj, parent, field_name, depth);
|
|
270
540
|
break;
|
|
271
|
-
case
|
|
272
|
-
_fingerprintString(ctx, "
|
|
273
|
-
|
|
541
|
+
case T_VariableShowStmt:
|
|
542
|
+
_fingerprintString(ctx, "VariableShowStmt");
|
|
543
|
+
_fingerprintVariableShowStmt(ctx, obj, parent, field_name, depth);
|
|
274
544
|
break;
|
|
275
545
|
case T_CreateStmt:
|
|
276
546
|
_fingerprintString(ctx, "CreateStmt");
|
|
277
547
|
_fingerprintCreateStmt(ctx, obj, parent, field_name, depth);
|
|
278
548
|
break;
|
|
549
|
+
case T_Constraint:
|
|
550
|
+
_fingerprintString(ctx, "Constraint");
|
|
551
|
+
_fingerprintConstraint(ctx, obj, parent, field_name, depth);
|
|
552
|
+
break;
|
|
553
|
+
case T_CreateTableSpaceStmt:
|
|
554
|
+
_fingerprintString(ctx, "CreateTableSpaceStmt");
|
|
555
|
+
_fingerprintCreateTableSpaceStmt(ctx, obj, parent, field_name, depth);
|
|
556
|
+
break;
|
|
557
|
+
case T_DropTableSpaceStmt:
|
|
558
|
+
_fingerprintString(ctx, "DropTableSpaceStmt");
|
|
559
|
+
_fingerprintDropTableSpaceStmt(ctx, obj, parent, field_name, depth);
|
|
560
|
+
break;
|
|
561
|
+
case T_AlterTableSpaceOptionsStmt:
|
|
562
|
+
_fingerprintString(ctx, "AlterTableSpaceOptionsStmt");
|
|
563
|
+
_fingerprintAlterTableSpaceOptionsStmt(ctx, obj, parent, field_name, depth);
|
|
564
|
+
break;
|
|
565
|
+
case T_AlterTableMoveAllStmt:
|
|
566
|
+
_fingerprintString(ctx, "AlterTableMoveAllStmt");
|
|
567
|
+
_fingerprintAlterTableMoveAllStmt(ctx, obj, parent, field_name, depth);
|
|
568
|
+
break;
|
|
569
|
+
case T_CreateExtensionStmt:
|
|
570
|
+
_fingerprintString(ctx, "CreateExtensionStmt");
|
|
571
|
+
_fingerprintCreateExtensionStmt(ctx, obj, parent, field_name, depth);
|
|
572
|
+
break;
|
|
573
|
+
case T_AlterExtensionStmt:
|
|
574
|
+
_fingerprintString(ctx, "AlterExtensionStmt");
|
|
575
|
+
_fingerprintAlterExtensionStmt(ctx, obj, parent, field_name, depth);
|
|
576
|
+
break;
|
|
577
|
+
case T_AlterExtensionContentsStmt:
|
|
578
|
+
_fingerprintString(ctx, "AlterExtensionContentsStmt");
|
|
579
|
+
_fingerprintAlterExtensionContentsStmt(ctx, obj, parent, field_name, depth);
|
|
580
|
+
break;
|
|
581
|
+
case T_CreateFdwStmt:
|
|
582
|
+
_fingerprintString(ctx, "CreateFdwStmt");
|
|
583
|
+
_fingerprintCreateFdwStmt(ctx, obj, parent, field_name, depth);
|
|
584
|
+
break;
|
|
585
|
+
case T_AlterFdwStmt:
|
|
586
|
+
_fingerprintString(ctx, "AlterFdwStmt");
|
|
587
|
+
_fingerprintAlterFdwStmt(ctx, obj, parent, field_name, depth);
|
|
588
|
+
break;
|
|
589
|
+
case T_CreateForeignServerStmt:
|
|
590
|
+
_fingerprintString(ctx, "CreateForeignServerStmt");
|
|
591
|
+
_fingerprintCreateForeignServerStmt(ctx, obj, parent, field_name, depth);
|
|
592
|
+
break;
|
|
593
|
+
case T_AlterForeignServerStmt:
|
|
594
|
+
_fingerprintString(ctx, "AlterForeignServerStmt");
|
|
595
|
+
_fingerprintAlterForeignServerStmt(ctx, obj, parent, field_name, depth);
|
|
596
|
+
break;
|
|
597
|
+
case T_CreateForeignTableStmt:
|
|
598
|
+
_fingerprintString(ctx, "CreateForeignTableStmt");
|
|
599
|
+
_fingerprintCreateForeignTableStmt(ctx, obj, parent, field_name, depth);
|
|
600
|
+
break;
|
|
601
|
+
case T_CreateUserMappingStmt:
|
|
602
|
+
_fingerprintString(ctx, "CreateUserMappingStmt");
|
|
603
|
+
_fingerprintCreateUserMappingStmt(ctx, obj, parent, field_name, depth);
|
|
604
|
+
break;
|
|
605
|
+
case T_AlterUserMappingStmt:
|
|
606
|
+
_fingerprintString(ctx, "AlterUserMappingStmt");
|
|
607
|
+
_fingerprintAlterUserMappingStmt(ctx, obj, parent, field_name, depth);
|
|
608
|
+
break;
|
|
609
|
+
case T_DropUserMappingStmt:
|
|
610
|
+
_fingerprintString(ctx, "DropUserMappingStmt");
|
|
611
|
+
_fingerprintDropUserMappingStmt(ctx, obj, parent, field_name, depth);
|
|
612
|
+
break;
|
|
613
|
+
case T_ImportForeignSchemaStmt:
|
|
614
|
+
_fingerprintString(ctx, "ImportForeignSchemaStmt");
|
|
615
|
+
_fingerprintImportForeignSchemaStmt(ctx, obj, parent, field_name, depth);
|
|
616
|
+
break;
|
|
617
|
+
case T_CreatePolicyStmt:
|
|
618
|
+
_fingerprintString(ctx, "CreatePolicyStmt");
|
|
619
|
+
_fingerprintCreatePolicyStmt(ctx, obj, parent, field_name, depth);
|
|
620
|
+
break;
|
|
621
|
+
case T_AlterPolicyStmt:
|
|
622
|
+
_fingerprintString(ctx, "AlterPolicyStmt");
|
|
623
|
+
_fingerprintAlterPolicyStmt(ctx, obj, parent, field_name, depth);
|
|
624
|
+
break;
|
|
625
|
+
case T_CreateAmStmt:
|
|
626
|
+
_fingerprintString(ctx, "CreateAmStmt");
|
|
627
|
+
_fingerprintCreateAmStmt(ctx, obj, parent, field_name, depth);
|
|
628
|
+
break;
|
|
629
|
+
case T_CreateTrigStmt:
|
|
630
|
+
_fingerprintString(ctx, "CreateTrigStmt");
|
|
631
|
+
_fingerprintCreateTrigStmt(ctx, obj, parent, field_name, depth);
|
|
632
|
+
break;
|
|
633
|
+
case T_CreateEventTrigStmt:
|
|
634
|
+
_fingerprintString(ctx, "CreateEventTrigStmt");
|
|
635
|
+
_fingerprintCreateEventTrigStmt(ctx, obj, parent, field_name, depth);
|
|
636
|
+
break;
|
|
637
|
+
case T_AlterEventTrigStmt:
|
|
638
|
+
_fingerprintString(ctx, "AlterEventTrigStmt");
|
|
639
|
+
_fingerprintAlterEventTrigStmt(ctx, obj, parent, field_name, depth);
|
|
640
|
+
break;
|
|
641
|
+
case T_CreatePLangStmt:
|
|
642
|
+
_fingerprintString(ctx, "CreatePLangStmt");
|
|
643
|
+
_fingerprintCreatePLangStmt(ctx, obj, parent, field_name, depth);
|
|
644
|
+
break;
|
|
645
|
+
case T_CreateRoleStmt:
|
|
646
|
+
_fingerprintString(ctx, "CreateRoleStmt");
|
|
647
|
+
_fingerprintCreateRoleStmt(ctx, obj, parent, field_name, depth);
|
|
648
|
+
break;
|
|
649
|
+
case T_AlterRoleStmt:
|
|
650
|
+
_fingerprintString(ctx, "AlterRoleStmt");
|
|
651
|
+
_fingerprintAlterRoleStmt(ctx, obj, parent, field_name, depth);
|
|
652
|
+
break;
|
|
653
|
+
case T_AlterRoleSetStmt:
|
|
654
|
+
_fingerprintString(ctx, "AlterRoleSetStmt");
|
|
655
|
+
_fingerprintAlterRoleSetStmt(ctx, obj, parent, field_name, depth);
|
|
656
|
+
break;
|
|
657
|
+
case T_DropRoleStmt:
|
|
658
|
+
_fingerprintString(ctx, "DropRoleStmt");
|
|
659
|
+
_fingerprintDropRoleStmt(ctx, obj, parent, field_name, depth);
|
|
660
|
+
break;
|
|
661
|
+
case T_CreateSeqStmt:
|
|
662
|
+
_fingerprintString(ctx, "CreateSeqStmt");
|
|
663
|
+
_fingerprintCreateSeqStmt(ctx, obj, parent, field_name, depth);
|
|
664
|
+
break;
|
|
665
|
+
case T_AlterSeqStmt:
|
|
666
|
+
_fingerprintString(ctx, "AlterSeqStmt");
|
|
667
|
+
_fingerprintAlterSeqStmt(ctx, obj, parent, field_name, depth);
|
|
668
|
+
break;
|
|
279
669
|
case T_DefineStmt:
|
|
280
670
|
_fingerprintString(ctx, "DefineStmt");
|
|
281
671
|
_fingerprintDefineStmt(ctx, obj, parent, field_name, depth);
|
|
282
672
|
break;
|
|
673
|
+
case T_CreateDomainStmt:
|
|
674
|
+
_fingerprintString(ctx, "CreateDomainStmt");
|
|
675
|
+
_fingerprintCreateDomainStmt(ctx, obj, parent, field_name, depth);
|
|
676
|
+
break;
|
|
677
|
+
case T_CreateOpClassStmt:
|
|
678
|
+
_fingerprintString(ctx, "CreateOpClassStmt");
|
|
679
|
+
_fingerprintCreateOpClassStmt(ctx, obj, parent, field_name, depth);
|
|
680
|
+
break;
|
|
681
|
+
case T_CreateOpClassItem:
|
|
682
|
+
_fingerprintString(ctx, "CreateOpClassItem");
|
|
683
|
+
_fingerprintCreateOpClassItem(ctx, obj, parent, field_name, depth);
|
|
684
|
+
break;
|
|
685
|
+
case T_CreateOpFamilyStmt:
|
|
686
|
+
_fingerprintString(ctx, "CreateOpFamilyStmt");
|
|
687
|
+
_fingerprintCreateOpFamilyStmt(ctx, obj, parent, field_name, depth);
|
|
688
|
+
break;
|
|
689
|
+
case T_AlterOpFamilyStmt:
|
|
690
|
+
_fingerprintString(ctx, "AlterOpFamilyStmt");
|
|
691
|
+
_fingerprintAlterOpFamilyStmt(ctx, obj, parent, field_name, depth);
|
|
692
|
+
break;
|
|
283
693
|
case T_DropStmt:
|
|
284
694
|
_fingerprintString(ctx, "DropStmt");
|
|
285
695
|
_fingerprintDropStmt(ctx, obj, parent, field_name, depth);
|
|
@@ -292,6 +702,18 @@ case T_CommentStmt:
|
|
|
292
702
|
_fingerprintString(ctx, "CommentStmt");
|
|
293
703
|
_fingerprintCommentStmt(ctx, obj, parent, field_name, depth);
|
|
294
704
|
break;
|
|
705
|
+
case T_SecLabelStmt:
|
|
706
|
+
_fingerprintString(ctx, "SecLabelStmt");
|
|
707
|
+
_fingerprintSecLabelStmt(ctx, obj, parent, field_name, depth);
|
|
708
|
+
break;
|
|
709
|
+
case T_DeclareCursorStmt:
|
|
710
|
+
_fingerprintString(ctx, "DeclareCursorStmt");
|
|
711
|
+
_fingerprintDeclareCursorStmt(ctx, obj, parent, field_name, depth);
|
|
712
|
+
break;
|
|
713
|
+
case T_ClosePortalStmt:
|
|
714
|
+
_fingerprintString(ctx, "ClosePortalStmt");
|
|
715
|
+
_fingerprintClosePortalStmt(ctx, obj, parent, field_name, depth);
|
|
716
|
+
break;
|
|
295
717
|
case T_FetchStmt:
|
|
296
718
|
_fingerprintString(ctx, "FetchStmt");
|
|
297
719
|
_fingerprintFetchStmt(ctx, obj, parent, field_name, depth);
|
|
@@ -300,10 +722,26 @@ case T_IndexStmt:
|
|
|
300
722
|
_fingerprintString(ctx, "IndexStmt");
|
|
301
723
|
_fingerprintIndexStmt(ctx, obj, parent, field_name, depth);
|
|
302
724
|
break;
|
|
725
|
+
case T_CreateStatsStmt:
|
|
726
|
+
_fingerprintString(ctx, "CreateStatsStmt");
|
|
727
|
+
_fingerprintCreateStatsStmt(ctx, obj, parent, field_name, depth);
|
|
728
|
+
break;
|
|
729
|
+
case T_StatsElem:
|
|
730
|
+
_fingerprintString(ctx, "StatsElem");
|
|
731
|
+
_fingerprintStatsElem(ctx, obj, parent, field_name, depth);
|
|
732
|
+
break;
|
|
733
|
+
case T_AlterStatsStmt:
|
|
734
|
+
_fingerprintString(ctx, "AlterStatsStmt");
|
|
735
|
+
_fingerprintAlterStatsStmt(ctx, obj, parent, field_name, depth);
|
|
736
|
+
break;
|
|
303
737
|
case T_CreateFunctionStmt:
|
|
304
738
|
_fingerprintString(ctx, "CreateFunctionStmt");
|
|
305
739
|
_fingerprintCreateFunctionStmt(ctx, obj, parent, field_name, depth);
|
|
306
740
|
break;
|
|
741
|
+
case T_FunctionParameter:
|
|
742
|
+
_fingerprintString(ctx, "FunctionParameter");
|
|
743
|
+
_fingerprintFunctionParameter(ctx, obj, parent, field_name, depth);
|
|
744
|
+
break;
|
|
307
745
|
case T_AlterFunctionStmt:
|
|
308
746
|
_fingerprintString(ctx, "AlterFunctionStmt");
|
|
309
747
|
_fingerprintAlterFunctionStmt(ctx, obj, parent, field_name, depth);
|
|
@@ -312,10 +750,42 @@ case T_DoStmt:
|
|
|
312
750
|
_fingerprintString(ctx, "DoStmt");
|
|
313
751
|
_fingerprintDoStmt(ctx, obj, parent, field_name, depth);
|
|
314
752
|
break;
|
|
753
|
+
case T_InlineCodeBlock:
|
|
754
|
+
_fingerprintString(ctx, "InlineCodeBlock");
|
|
755
|
+
_fingerprintInlineCodeBlock(ctx, obj, parent, field_name, depth);
|
|
756
|
+
break;
|
|
757
|
+
case T_CallStmt:
|
|
758
|
+
_fingerprintString(ctx, "CallStmt");
|
|
759
|
+
_fingerprintCallStmt(ctx, obj, parent, field_name, depth);
|
|
760
|
+
break;
|
|
761
|
+
case T_CallContext:
|
|
762
|
+
_fingerprintString(ctx, "CallContext");
|
|
763
|
+
_fingerprintCallContext(ctx, obj, parent, field_name, depth);
|
|
764
|
+
break;
|
|
315
765
|
case T_RenameStmt:
|
|
316
766
|
_fingerprintString(ctx, "RenameStmt");
|
|
317
767
|
_fingerprintRenameStmt(ctx, obj, parent, field_name, depth);
|
|
318
768
|
break;
|
|
769
|
+
case T_AlterObjectDependsStmt:
|
|
770
|
+
_fingerprintString(ctx, "AlterObjectDependsStmt");
|
|
771
|
+
_fingerprintAlterObjectDependsStmt(ctx, obj, parent, field_name, depth);
|
|
772
|
+
break;
|
|
773
|
+
case T_AlterObjectSchemaStmt:
|
|
774
|
+
_fingerprintString(ctx, "AlterObjectSchemaStmt");
|
|
775
|
+
_fingerprintAlterObjectSchemaStmt(ctx, obj, parent, field_name, depth);
|
|
776
|
+
break;
|
|
777
|
+
case T_AlterOwnerStmt:
|
|
778
|
+
_fingerprintString(ctx, "AlterOwnerStmt");
|
|
779
|
+
_fingerprintAlterOwnerStmt(ctx, obj, parent, field_name, depth);
|
|
780
|
+
break;
|
|
781
|
+
case T_AlterOperatorStmt:
|
|
782
|
+
_fingerprintString(ctx, "AlterOperatorStmt");
|
|
783
|
+
_fingerprintAlterOperatorStmt(ctx, obj, parent, field_name, depth);
|
|
784
|
+
break;
|
|
785
|
+
case T_AlterTypeStmt:
|
|
786
|
+
_fingerprintString(ctx, "AlterTypeStmt");
|
|
787
|
+
_fingerprintAlterTypeStmt(ctx, obj, parent, field_name, depth);
|
|
788
|
+
break;
|
|
319
789
|
case T_RuleStmt:
|
|
320
790
|
_fingerprintString(ctx, "RuleStmt");
|
|
321
791
|
_fingerprintRuleStmt(ctx, obj, parent, field_name, depth);
|
|
@@ -336,6 +806,22 @@ case T_TransactionStmt:
|
|
|
336
806
|
_fingerprintString(ctx, "TransactionStmt");
|
|
337
807
|
_fingerprintTransactionStmt(ctx, obj, parent, field_name, depth);
|
|
338
808
|
break;
|
|
809
|
+
case T_CompositeTypeStmt:
|
|
810
|
+
_fingerprintString(ctx, "CompositeTypeStmt");
|
|
811
|
+
_fingerprintCompositeTypeStmt(ctx, obj, parent, field_name, depth);
|
|
812
|
+
break;
|
|
813
|
+
case T_CreateEnumStmt:
|
|
814
|
+
_fingerprintString(ctx, "CreateEnumStmt");
|
|
815
|
+
_fingerprintCreateEnumStmt(ctx, obj, parent, field_name, depth);
|
|
816
|
+
break;
|
|
817
|
+
case T_CreateRangeStmt:
|
|
818
|
+
_fingerprintString(ctx, "CreateRangeStmt");
|
|
819
|
+
_fingerprintCreateRangeStmt(ctx, obj, parent, field_name, depth);
|
|
820
|
+
break;
|
|
821
|
+
case T_AlterEnumStmt:
|
|
822
|
+
_fingerprintString(ctx, "AlterEnumStmt");
|
|
823
|
+
_fingerprintAlterEnumStmt(ctx, obj, parent, field_name, depth);
|
|
824
|
+
break;
|
|
339
825
|
case T_ViewStmt:
|
|
340
826
|
_fingerprintString(ctx, "ViewStmt");
|
|
341
827
|
_fingerprintViewStmt(ctx, obj, parent, field_name, depth);
|
|
@@ -344,22 +830,42 @@ case T_LoadStmt:
|
|
|
344
830
|
_fingerprintString(ctx, "LoadStmt");
|
|
345
831
|
_fingerprintLoadStmt(ctx, obj, parent, field_name, depth);
|
|
346
832
|
break;
|
|
347
|
-
case T_CreateDomainStmt:
|
|
348
|
-
_fingerprintString(ctx, "CreateDomainStmt");
|
|
349
|
-
_fingerprintCreateDomainStmt(ctx, obj, parent, field_name, depth);
|
|
350
|
-
break;
|
|
351
833
|
case T_CreatedbStmt:
|
|
352
834
|
_fingerprintString(ctx, "CreatedbStmt");
|
|
353
835
|
_fingerprintCreatedbStmt(ctx, obj, parent, field_name, depth);
|
|
354
836
|
break;
|
|
837
|
+
case T_AlterDatabaseStmt:
|
|
838
|
+
_fingerprintString(ctx, "AlterDatabaseStmt");
|
|
839
|
+
_fingerprintAlterDatabaseStmt(ctx, obj, parent, field_name, depth);
|
|
840
|
+
break;
|
|
841
|
+
case T_AlterDatabaseRefreshCollStmt:
|
|
842
|
+
_fingerprintString(ctx, "AlterDatabaseRefreshCollStmt");
|
|
843
|
+
_fingerprintAlterDatabaseRefreshCollStmt(ctx, obj, parent, field_name, depth);
|
|
844
|
+
break;
|
|
845
|
+
case T_AlterDatabaseSetStmt:
|
|
846
|
+
_fingerprintString(ctx, "AlterDatabaseSetStmt");
|
|
847
|
+
_fingerprintAlterDatabaseSetStmt(ctx, obj, parent, field_name, depth);
|
|
848
|
+
break;
|
|
355
849
|
case T_DropdbStmt:
|
|
356
850
|
_fingerprintString(ctx, "DropdbStmt");
|
|
357
851
|
_fingerprintDropdbStmt(ctx, obj, parent, field_name, depth);
|
|
358
852
|
break;
|
|
853
|
+
case T_AlterSystemStmt:
|
|
854
|
+
_fingerprintString(ctx, "AlterSystemStmt");
|
|
855
|
+
_fingerprintAlterSystemStmt(ctx, obj, parent, field_name, depth);
|
|
856
|
+
break;
|
|
857
|
+
case T_ClusterStmt:
|
|
858
|
+
_fingerprintString(ctx, "ClusterStmt");
|
|
859
|
+
_fingerprintClusterStmt(ctx, obj, parent, field_name, depth);
|
|
860
|
+
break;
|
|
359
861
|
case T_VacuumStmt:
|
|
360
862
|
_fingerprintString(ctx, "VacuumStmt");
|
|
361
863
|
_fingerprintVacuumStmt(ctx, obj, parent, field_name, depth);
|
|
362
864
|
break;
|
|
865
|
+
case T_VacuumRelation:
|
|
866
|
+
_fingerprintString(ctx, "VacuumRelation");
|
|
867
|
+
_fingerprintVacuumRelation(ctx, obj, parent, field_name, depth);
|
|
868
|
+
break;
|
|
363
869
|
case T_ExplainStmt:
|
|
364
870
|
_fingerprintString(ctx, "ExplainStmt");
|
|
365
871
|
_fingerprintExplainStmt(ctx, obj, parent, field_name, depth);
|
|
@@ -368,46 +874,18 @@ case T_CreateTableAsStmt:
|
|
|
368
874
|
_fingerprintString(ctx, "CreateTableAsStmt");
|
|
369
875
|
_fingerprintCreateTableAsStmt(ctx, obj, parent, field_name, depth);
|
|
370
876
|
break;
|
|
371
|
-
case
|
|
372
|
-
_fingerprintString(ctx, "
|
|
373
|
-
|
|
374
|
-
break;
|
|
375
|
-
case T_AlterSeqStmt:
|
|
376
|
-
_fingerprintString(ctx, "AlterSeqStmt");
|
|
377
|
-
_fingerprintAlterSeqStmt(ctx, obj, parent, field_name, depth);
|
|
378
|
-
break;
|
|
379
|
-
case T_VariableSetStmt:
|
|
380
|
-
_fingerprintString(ctx, "VariableSetStmt");
|
|
381
|
-
_fingerprintVariableSetStmt(ctx, obj, parent, field_name, depth);
|
|
877
|
+
case T_RefreshMatViewStmt:
|
|
878
|
+
_fingerprintString(ctx, "RefreshMatViewStmt");
|
|
879
|
+
_fingerprintRefreshMatViewStmt(ctx, obj, parent, field_name, depth);
|
|
382
880
|
break;
|
|
383
|
-
case
|
|
384
|
-
_fingerprintString(ctx, "
|
|
385
|
-
|
|
881
|
+
case T_CheckPointStmt:
|
|
882
|
+
_fingerprintString(ctx, "CheckPointStmt");
|
|
883
|
+
_fingerprintCheckPointStmt(ctx, obj, parent, field_name, depth);
|
|
386
884
|
break;
|
|
387
885
|
case T_DiscardStmt:
|
|
388
886
|
_fingerprintString(ctx, "DiscardStmt");
|
|
389
887
|
_fingerprintDiscardStmt(ctx, obj, parent, field_name, depth);
|
|
390
888
|
break;
|
|
391
|
-
case T_CreateTrigStmt:
|
|
392
|
-
_fingerprintString(ctx, "CreateTrigStmt");
|
|
393
|
-
_fingerprintCreateTrigStmt(ctx, obj, parent, field_name, depth);
|
|
394
|
-
break;
|
|
395
|
-
case T_CreatePLangStmt:
|
|
396
|
-
_fingerprintString(ctx, "CreatePLangStmt");
|
|
397
|
-
_fingerprintCreatePLangStmt(ctx, obj, parent, field_name, depth);
|
|
398
|
-
break;
|
|
399
|
-
case T_CreateRoleStmt:
|
|
400
|
-
_fingerprintString(ctx, "CreateRoleStmt");
|
|
401
|
-
_fingerprintCreateRoleStmt(ctx, obj, parent, field_name, depth);
|
|
402
|
-
break;
|
|
403
|
-
case T_AlterRoleStmt:
|
|
404
|
-
_fingerprintString(ctx, "AlterRoleStmt");
|
|
405
|
-
_fingerprintAlterRoleStmt(ctx, obj, parent, field_name, depth);
|
|
406
|
-
break;
|
|
407
|
-
case T_DropRoleStmt:
|
|
408
|
-
_fingerprintString(ctx, "DropRoleStmt");
|
|
409
|
-
_fingerprintDropRoleStmt(ctx, obj, parent, field_name, depth);
|
|
410
|
-
break;
|
|
411
889
|
case T_LockStmt:
|
|
412
890
|
_fingerprintString(ctx, "LockStmt");
|
|
413
891
|
_fingerprintLockStmt(ctx, obj, parent, field_name, depth);
|
|
@@ -420,30 +898,6 @@ case T_ReindexStmt:
|
|
|
420
898
|
_fingerprintString(ctx, "ReindexStmt");
|
|
421
899
|
_fingerprintReindexStmt(ctx, obj, parent, field_name, depth);
|
|
422
900
|
break;
|
|
423
|
-
case T_CheckPointStmt:
|
|
424
|
-
_fingerprintString(ctx, "CheckPointStmt");
|
|
425
|
-
_fingerprintCheckPointStmt(ctx, obj, parent, field_name, depth);
|
|
426
|
-
break;
|
|
427
|
-
case T_CreateSchemaStmt:
|
|
428
|
-
_fingerprintString(ctx, "CreateSchemaStmt");
|
|
429
|
-
_fingerprintCreateSchemaStmt(ctx, obj, parent, field_name, depth);
|
|
430
|
-
break;
|
|
431
|
-
case T_AlterDatabaseStmt:
|
|
432
|
-
_fingerprintString(ctx, "AlterDatabaseStmt");
|
|
433
|
-
_fingerprintAlterDatabaseStmt(ctx, obj, parent, field_name, depth);
|
|
434
|
-
break;
|
|
435
|
-
case T_AlterDatabaseRefreshCollStmt:
|
|
436
|
-
_fingerprintString(ctx, "AlterDatabaseRefreshCollStmt");
|
|
437
|
-
_fingerprintAlterDatabaseRefreshCollStmt(ctx, obj, parent, field_name, depth);
|
|
438
|
-
break;
|
|
439
|
-
case T_AlterDatabaseSetStmt:
|
|
440
|
-
_fingerprintString(ctx, "AlterDatabaseSetStmt");
|
|
441
|
-
_fingerprintAlterDatabaseSetStmt(ctx, obj, parent, field_name, depth);
|
|
442
|
-
break;
|
|
443
|
-
case T_AlterRoleSetStmt:
|
|
444
|
-
_fingerprintString(ctx, "AlterRoleSetStmt");
|
|
445
|
-
_fingerprintAlterRoleSetStmt(ctx, obj, parent, field_name, depth);
|
|
446
|
-
break;
|
|
447
901
|
case T_CreateConversionStmt:
|
|
448
902
|
_fingerprintString(ctx, "CreateConversionStmt");
|
|
449
903
|
_fingerprintCreateConversionStmt(ctx, obj, parent, field_name, depth);
|
|
@@ -452,17 +906,9 @@ case T_CreateCastStmt:
|
|
|
452
906
|
_fingerprintString(ctx, "CreateCastStmt");
|
|
453
907
|
_fingerprintCreateCastStmt(ctx, obj, parent, field_name, depth);
|
|
454
908
|
break;
|
|
455
|
-
case
|
|
456
|
-
_fingerprintString(ctx, "
|
|
457
|
-
|
|
458
|
-
break;
|
|
459
|
-
case T_CreateOpFamilyStmt:
|
|
460
|
-
_fingerprintString(ctx, "CreateOpFamilyStmt");
|
|
461
|
-
_fingerprintCreateOpFamilyStmt(ctx, obj, parent, field_name, depth);
|
|
462
|
-
break;
|
|
463
|
-
case T_AlterOpFamilyStmt:
|
|
464
|
-
_fingerprintString(ctx, "AlterOpFamilyStmt");
|
|
465
|
-
_fingerprintAlterOpFamilyStmt(ctx, obj, parent, field_name, depth);
|
|
909
|
+
case T_CreateTransformStmt:
|
|
910
|
+
_fingerprintString(ctx, "CreateTransformStmt");
|
|
911
|
+
_fingerprintCreateTransformStmt(ctx, obj, parent, field_name, depth);
|
|
466
912
|
break;
|
|
467
913
|
case T_PrepareStmt:
|
|
468
914
|
_fingerprintString(ctx, "PrepareStmt");
|
|
@@ -476,38 +922,6 @@ case T_DeallocateStmt:
|
|
|
476
922
|
_fingerprintString(ctx, "DeallocateStmt");
|
|
477
923
|
_fingerprintDeallocateStmt(ctx, obj, parent, field_name, depth);
|
|
478
924
|
break;
|
|
479
|
-
case T_DeclareCursorStmt:
|
|
480
|
-
_fingerprintString(ctx, "DeclareCursorStmt");
|
|
481
|
-
_fingerprintDeclareCursorStmt(ctx, obj, parent, field_name, depth);
|
|
482
|
-
break;
|
|
483
|
-
case T_CreateTableSpaceStmt:
|
|
484
|
-
_fingerprintString(ctx, "CreateTableSpaceStmt");
|
|
485
|
-
_fingerprintCreateTableSpaceStmt(ctx, obj, parent, field_name, depth);
|
|
486
|
-
break;
|
|
487
|
-
case T_DropTableSpaceStmt:
|
|
488
|
-
_fingerprintString(ctx, "DropTableSpaceStmt");
|
|
489
|
-
_fingerprintDropTableSpaceStmt(ctx, obj, parent, field_name, depth);
|
|
490
|
-
break;
|
|
491
|
-
case T_AlterObjectDependsStmt:
|
|
492
|
-
_fingerprintString(ctx, "AlterObjectDependsStmt");
|
|
493
|
-
_fingerprintAlterObjectDependsStmt(ctx, obj, parent, field_name, depth);
|
|
494
|
-
break;
|
|
495
|
-
case T_AlterObjectSchemaStmt:
|
|
496
|
-
_fingerprintString(ctx, "AlterObjectSchemaStmt");
|
|
497
|
-
_fingerprintAlterObjectSchemaStmt(ctx, obj, parent, field_name, depth);
|
|
498
|
-
break;
|
|
499
|
-
case T_AlterOwnerStmt:
|
|
500
|
-
_fingerprintString(ctx, "AlterOwnerStmt");
|
|
501
|
-
_fingerprintAlterOwnerStmt(ctx, obj, parent, field_name, depth);
|
|
502
|
-
break;
|
|
503
|
-
case T_AlterOperatorStmt:
|
|
504
|
-
_fingerprintString(ctx, "AlterOperatorStmt");
|
|
505
|
-
_fingerprintAlterOperatorStmt(ctx, obj, parent, field_name, depth);
|
|
506
|
-
break;
|
|
507
|
-
case T_AlterTypeStmt:
|
|
508
|
-
_fingerprintString(ctx, "AlterTypeStmt");
|
|
509
|
-
_fingerprintAlterTypeStmt(ctx, obj, parent, field_name, depth);
|
|
510
|
-
break;
|
|
511
925
|
case T_DropOwnedStmt:
|
|
512
926
|
_fingerprintString(ctx, "DropOwnedStmt");
|
|
513
927
|
_fingerprintDropOwnedStmt(ctx, obj, parent, field_name, depth);
|
|
@@ -516,22 +930,6 @@ case T_ReassignOwnedStmt:
|
|
|
516
930
|
_fingerprintString(ctx, "ReassignOwnedStmt");
|
|
517
931
|
_fingerprintReassignOwnedStmt(ctx, obj, parent, field_name, depth);
|
|
518
932
|
break;
|
|
519
|
-
case T_CompositeTypeStmt:
|
|
520
|
-
_fingerprintString(ctx, "CompositeTypeStmt");
|
|
521
|
-
_fingerprintCompositeTypeStmt(ctx, obj, parent, field_name, depth);
|
|
522
|
-
break;
|
|
523
|
-
case T_CreateEnumStmt:
|
|
524
|
-
_fingerprintString(ctx, "CreateEnumStmt");
|
|
525
|
-
_fingerprintCreateEnumStmt(ctx, obj, parent, field_name, depth);
|
|
526
|
-
break;
|
|
527
|
-
case T_CreateRangeStmt:
|
|
528
|
-
_fingerprintString(ctx, "CreateRangeStmt");
|
|
529
|
-
_fingerprintCreateRangeStmt(ctx, obj, parent, field_name, depth);
|
|
530
|
-
break;
|
|
531
|
-
case T_AlterEnumStmt:
|
|
532
|
-
_fingerprintString(ctx, "AlterEnumStmt");
|
|
533
|
-
_fingerprintAlterEnumStmt(ctx, obj, parent, field_name, depth);
|
|
534
|
-
break;
|
|
535
933
|
case T_AlterTSDictionaryStmt:
|
|
536
934
|
_fingerprintString(ctx, "AlterTSDictionaryStmt");
|
|
537
935
|
_fingerprintAlterTSDictionaryStmt(ctx, obj, parent, field_name, depth);
|
|
@@ -540,101 +938,13 @@ case T_AlterTSConfigurationStmt:
|
|
|
540
938
|
_fingerprintString(ctx, "AlterTSConfigurationStmt");
|
|
541
939
|
_fingerprintAlterTSConfigurationStmt(ctx, obj, parent, field_name, depth);
|
|
542
940
|
break;
|
|
543
|
-
case
|
|
544
|
-
_fingerprintString(ctx, "
|
|
545
|
-
|
|
546
|
-
break;
|
|
547
|
-
case T_AlterFdwStmt:
|
|
548
|
-
_fingerprintString(ctx, "AlterFdwStmt");
|
|
549
|
-
_fingerprintAlterFdwStmt(ctx, obj, parent, field_name, depth);
|
|
550
|
-
break;
|
|
551
|
-
case T_CreateForeignServerStmt:
|
|
552
|
-
_fingerprintString(ctx, "CreateForeignServerStmt");
|
|
553
|
-
_fingerprintCreateForeignServerStmt(ctx, obj, parent, field_name, depth);
|
|
554
|
-
break;
|
|
555
|
-
case T_AlterForeignServerStmt:
|
|
556
|
-
_fingerprintString(ctx, "AlterForeignServerStmt");
|
|
557
|
-
_fingerprintAlterForeignServerStmt(ctx, obj, parent, field_name, depth);
|
|
558
|
-
break;
|
|
559
|
-
case T_CreateUserMappingStmt:
|
|
560
|
-
_fingerprintString(ctx, "CreateUserMappingStmt");
|
|
561
|
-
_fingerprintCreateUserMappingStmt(ctx, obj, parent, field_name, depth);
|
|
562
|
-
break;
|
|
563
|
-
case T_AlterUserMappingStmt:
|
|
564
|
-
_fingerprintString(ctx, "AlterUserMappingStmt");
|
|
565
|
-
_fingerprintAlterUserMappingStmt(ctx, obj, parent, field_name, depth);
|
|
566
|
-
break;
|
|
567
|
-
case T_DropUserMappingStmt:
|
|
568
|
-
_fingerprintString(ctx, "DropUserMappingStmt");
|
|
569
|
-
_fingerprintDropUserMappingStmt(ctx, obj, parent, field_name, depth);
|
|
570
|
-
break;
|
|
571
|
-
case T_AlterTableSpaceOptionsStmt:
|
|
572
|
-
_fingerprintString(ctx, "AlterTableSpaceOptionsStmt");
|
|
573
|
-
_fingerprintAlterTableSpaceOptionsStmt(ctx, obj, parent, field_name, depth);
|
|
574
|
-
break;
|
|
575
|
-
case T_AlterTableMoveAllStmt:
|
|
576
|
-
_fingerprintString(ctx, "AlterTableMoveAllStmt");
|
|
577
|
-
_fingerprintAlterTableMoveAllStmt(ctx, obj, parent, field_name, depth);
|
|
578
|
-
break;
|
|
579
|
-
case T_SecLabelStmt:
|
|
580
|
-
_fingerprintString(ctx, "SecLabelStmt");
|
|
581
|
-
_fingerprintSecLabelStmt(ctx, obj, parent, field_name, depth);
|
|
582
|
-
break;
|
|
583
|
-
case T_CreateForeignTableStmt:
|
|
584
|
-
_fingerprintString(ctx, "CreateForeignTableStmt");
|
|
585
|
-
_fingerprintCreateForeignTableStmt(ctx, obj, parent, field_name, depth);
|
|
586
|
-
break;
|
|
587
|
-
case T_ImportForeignSchemaStmt:
|
|
588
|
-
_fingerprintString(ctx, "ImportForeignSchemaStmt");
|
|
589
|
-
_fingerprintImportForeignSchemaStmt(ctx, obj, parent, field_name, depth);
|
|
590
|
-
break;
|
|
591
|
-
case T_CreateExtensionStmt:
|
|
592
|
-
_fingerprintString(ctx, "CreateExtensionStmt");
|
|
593
|
-
_fingerprintCreateExtensionStmt(ctx, obj, parent, field_name, depth);
|
|
594
|
-
break;
|
|
595
|
-
case T_AlterExtensionStmt:
|
|
596
|
-
_fingerprintString(ctx, "AlterExtensionStmt");
|
|
597
|
-
_fingerprintAlterExtensionStmt(ctx, obj, parent, field_name, depth);
|
|
598
|
-
break;
|
|
599
|
-
case T_AlterExtensionContentsStmt:
|
|
600
|
-
_fingerprintString(ctx, "AlterExtensionContentsStmt");
|
|
601
|
-
_fingerprintAlterExtensionContentsStmt(ctx, obj, parent, field_name, depth);
|
|
602
|
-
break;
|
|
603
|
-
case T_CreateEventTrigStmt:
|
|
604
|
-
_fingerprintString(ctx, "CreateEventTrigStmt");
|
|
605
|
-
_fingerprintCreateEventTrigStmt(ctx, obj, parent, field_name, depth);
|
|
606
|
-
break;
|
|
607
|
-
case T_AlterEventTrigStmt:
|
|
608
|
-
_fingerprintString(ctx, "AlterEventTrigStmt");
|
|
609
|
-
_fingerprintAlterEventTrigStmt(ctx, obj, parent, field_name, depth);
|
|
610
|
-
break;
|
|
611
|
-
case T_RefreshMatViewStmt:
|
|
612
|
-
_fingerprintString(ctx, "RefreshMatViewStmt");
|
|
613
|
-
_fingerprintRefreshMatViewStmt(ctx, obj, parent, field_name, depth);
|
|
614
|
-
break;
|
|
615
|
-
case T_ReplicaIdentityStmt:
|
|
616
|
-
_fingerprintString(ctx, "ReplicaIdentityStmt");
|
|
617
|
-
_fingerprintReplicaIdentityStmt(ctx, obj, parent, field_name, depth);
|
|
618
|
-
break;
|
|
619
|
-
case T_AlterSystemStmt:
|
|
620
|
-
_fingerprintString(ctx, "AlterSystemStmt");
|
|
621
|
-
_fingerprintAlterSystemStmt(ctx, obj, parent, field_name, depth);
|
|
622
|
-
break;
|
|
623
|
-
case T_CreatePolicyStmt:
|
|
624
|
-
_fingerprintString(ctx, "CreatePolicyStmt");
|
|
625
|
-
_fingerprintCreatePolicyStmt(ctx, obj, parent, field_name, depth);
|
|
626
|
-
break;
|
|
627
|
-
case T_AlterPolicyStmt:
|
|
628
|
-
_fingerprintString(ctx, "AlterPolicyStmt");
|
|
629
|
-
_fingerprintAlterPolicyStmt(ctx, obj, parent, field_name, depth);
|
|
630
|
-
break;
|
|
631
|
-
case T_CreateTransformStmt:
|
|
632
|
-
_fingerprintString(ctx, "CreateTransformStmt");
|
|
633
|
-
_fingerprintCreateTransformStmt(ctx, obj, parent, field_name, depth);
|
|
941
|
+
case T_PublicationTable:
|
|
942
|
+
_fingerprintString(ctx, "PublicationTable");
|
|
943
|
+
_fingerprintPublicationTable(ctx, obj, parent, field_name, depth);
|
|
634
944
|
break;
|
|
635
|
-
case
|
|
636
|
-
_fingerprintString(ctx, "
|
|
637
|
-
|
|
945
|
+
case T_PublicationObjSpec:
|
|
946
|
+
_fingerprintString(ctx, "PublicationObjSpec");
|
|
947
|
+
_fingerprintPublicationObjSpec(ctx, obj, parent, field_name, depth);
|
|
638
948
|
break;
|
|
639
949
|
case T_CreatePublicationStmt:
|
|
640
950
|
_fingerprintString(ctx, "CreatePublicationStmt");
|
|
@@ -656,257 +966,3 @@ case T_DropSubscriptionStmt:
|
|
|
656
966
|
_fingerprintString(ctx, "DropSubscriptionStmt");
|
|
657
967
|
_fingerprintDropSubscriptionStmt(ctx, obj, parent, field_name, depth);
|
|
658
968
|
break;
|
|
659
|
-
case T_CreateStatsStmt:
|
|
660
|
-
_fingerprintString(ctx, "CreateStatsStmt");
|
|
661
|
-
_fingerprintCreateStatsStmt(ctx, obj, parent, field_name, depth);
|
|
662
|
-
break;
|
|
663
|
-
case T_AlterCollationStmt:
|
|
664
|
-
_fingerprintString(ctx, "AlterCollationStmt");
|
|
665
|
-
_fingerprintAlterCollationStmt(ctx, obj, parent, field_name, depth);
|
|
666
|
-
break;
|
|
667
|
-
case T_CallStmt:
|
|
668
|
-
_fingerprintString(ctx, "CallStmt");
|
|
669
|
-
_fingerprintCallStmt(ctx, obj, parent, field_name, depth);
|
|
670
|
-
break;
|
|
671
|
-
case T_AlterStatsStmt:
|
|
672
|
-
_fingerprintString(ctx, "AlterStatsStmt");
|
|
673
|
-
_fingerprintAlterStatsStmt(ctx, obj, parent, field_name, depth);
|
|
674
|
-
break;
|
|
675
|
-
case T_A_Expr:
|
|
676
|
-
_fingerprintString(ctx, "A_Expr");
|
|
677
|
-
_fingerprintA_Expr(ctx, obj, parent, field_name, depth);
|
|
678
|
-
break;
|
|
679
|
-
case T_ColumnRef:
|
|
680
|
-
_fingerprintString(ctx, "ColumnRef");
|
|
681
|
-
_fingerprintColumnRef(ctx, obj, parent, field_name, depth);
|
|
682
|
-
break;
|
|
683
|
-
case T_ParamRef:
|
|
684
|
-
// Intentionally ignoring for fingerprinting
|
|
685
|
-
break;
|
|
686
|
-
case T_FuncCall:
|
|
687
|
-
_fingerprintString(ctx, "FuncCall");
|
|
688
|
-
_fingerprintFuncCall(ctx, obj, parent, field_name, depth);
|
|
689
|
-
break;
|
|
690
|
-
case T_A_Star:
|
|
691
|
-
_fingerprintString(ctx, "A_Star");
|
|
692
|
-
_fingerprintA_Star(ctx, obj, parent, field_name, depth);
|
|
693
|
-
break;
|
|
694
|
-
case T_A_Indices:
|
|
695
|
-
_fingerprintString(ctx, "A_Indices");
|
|
696
|
-
_fingerprintA_Indices(ctx, obj, parent, field_name, depth);
|
|
697
|
-
break;
|
|
698
|
-
case T_A_Indirection:
|
|
699
|
-
_fingerprintString(ctx, "A_Indirection");
|
|
700
|
-
_fingerprintA_Indirection(ctx, obj, parent, field_name, depth);
|
|
701
|
-
break;
|
|
702
|
-
case T_A_ArrayExpr:
|
|
703
|
-
_fingerprintString(ctx, "A_ArrayExpr");
|
|
704
|
-
_fingerprintA_ArrayExpr(ctx, obj, parent, field_name, depth);
|
|
705
|
-
break;
|
|
706
|
-
case T_ResTarget:
|
|
707
|
-
_fingerprintString(ctx, "ResTarget");
|
|
708
|
-
_fingerprintResTarget(ctx, obj, parent, field_name, depth);
|
|
709
|
-
break;
|
|
710
|
-
case T_MultiAssignRef:
|
|
711
|
-
_fingerprintString(ctx, "MultiAssignRef");
|
|
712
|
-
_fingerprintMultiAssignRef(ctx, obj, parent, field_name, depth);
|
|
713
|
-
break;
|
|
714
|
-
case T_TypeCast:
|
|
715
|
-
if (!IsA(castNode(TypeCast, (void*) obj)->arg, A_Const) && !IsA(castNode(TypeCast, (void*) obj)->arg, ParamRef))
|
|
716
|
-
{
|
|
717
|
-
_fingerprintString(ctx, "TypeCast");
|
|
718
|
-
_fingerprintTypeCast(ctx, obj, parent, field_name, depth);
|
|
719
|
-
}
|
|
720
|
-
break;
|
|
721
|
-
case T_CollateClause:
|
|
722
|
-
_fingerprintString(ctx, "CollateClause");
|
|
723
|
-
_fingerprintCollateClause(ctx, obj, parent, field_name, depth);
|
|
724
|
-
break;
|
|
725
|
-
case T_SortBy:
|
|
726
|
-
_fingerprintString(ctx, "SortBy");
|
|
727
|
-
_fingerprintSortBy(ctx, obj, parent, field_name, depth);
|
|
728
|
-
break;
|
|
729
|
-
case T_WindowDef:
|
|
730
|
-
_fingerprintString(ctx, "WindowDef");
|
|
731
|
-
_fingerprintWindowDef(ctx, obj, parent, field_name, depth);
|
|
732
|
-
break;
|
|
733
|
-
case T_RangeSubselect:
|
|
734
|
-
_fingerprintString(ctx, "RangeSubselect");
|
|
735
|
-
_fingerprintRangeSubselect(ctx, obj, parent, field_name, depth);
|
|
736
|
-
break;
|
|
737
|
-
case T_RangeFunction:
|
|
738
|
-
_fingerprintString(ctx, "RangeFunction");
|
|
739
|
-
_fingerprintRangeFunction(ctx, obj, parent, field_name, depth);
|
|
740
|
-
break;
|
|
741
|
-
case T_RangeTableSample:
|
|
742
|
-
_fingerprintString(ctx, "RangeTableSample");
|
|
743
|
-
_fingerprintRangeTableSample(ctx, obj, parent, field_name, depth);
|
|
744
|
-
break;
|
|
745
|
-
case T_RangeTableFunc:
|
|
746
|
-
_fingerprintString(ctx, "RangeTableFunc");
|
|
747
|
-
_fingerprintRangeTableFunc(ctx, obj, parent, field_name, depth);
|
|
748
|
-
break;
|
|
749
|
-
case T_RangeTableFuncCol:
|
|
750
|
-
_fingerprintString(ctx, "RangeTableFuncCol");
|
|
751
|
-
_fingerprintRangeTableFuncCol(ctx, obj, parent, field_name, depth);
|
|
752
|
-
break;
|
|
753
|
-
case T_TypeName:
|
|
754
|
-
_fingerprintString(ctx, "TypeName");
|
|
755
|
-
_fingerprintTypeName(ctx, obj, parent, field_name, depth);
|
|
756
|
-
break;
|
|
757
|
-
case T_ColumnDef:
|
|
758
|
-
_fingerprintString(ctx, "ColumnDef");
|
|
759
|
-
_fingerprintColumnDef(ctx, obj, parent, field_name, depth);
|
|
760
|
-
break;
|
|
761
|
-
case T_IndexElem:
|
|
762
|
-
_fingerprintString(ctx, "IndexElem");
|
|
763
|
-
_fingerprintIndexElem(ctx, obj, parent, field_name, depth);
|
|
764
|
-
break;
|
|
765
|
-
case T_StatsElem:
|
|
766
|
-
_fingerprintString(ctx, "StatsElem");
|
|
767
|
-
_fingerprintStatsElem(ctx, obj, parent, field_name, depth);
|
|
768
|
-
break;
|
|
769
|
-
case T_Constraint:
|
|
770
|
-
_fingerprintString(ctx, "Constraint");
|
|
771
|
-
_fingerprintConstraint(ctx, obj, parent, field_name, depth);
|
|
772
|
-
break;
|
|
773
|
-
case T_DefElem:
|
|
774
|
-
_fingerprintString(ctx, "DefElem");
|
|
775
|
-
_fingerprintDefElem(ctx, obj, parent, field_name, depth);
|
|
776
|
-
break;
|
|
777
|
-
case T_RangeTblEntry:
|
|
778
|
-
_fingerprintString(ctx, "RangeTblEntry");
|
|
779
|
-
_fingerprintRangeTblEntry(ctx, obj, parent, field_name, depth);
|
|
780
|
-
break;
|
|
781
|
-
case T_RangeTblFunction:
|
|
782
|
-
_fingerprintString(ctx, "RangeTblFunction");
|
|
783
|
-
_fingerprintRangeTblFunction(ctx, obj, parent, field_name, depth);
|
|
784
|
-
break;
|
|
785
|
-
case T_TableSampleClause:
|
|
786
|
-
_fingerprintString(ctx, "TableSampleClause");
|
|
787
|
-
_fingerprintTableSampleClause(ctx, obj, parent, field_name, depth);
|
|
788
|
-
break;
|
|
789
|
-
case T_WithCheckOption:
|
|
790
|
-
_fingerprintString(ctx, "WithCheckOption");
|
|
791
|
-
_fingerprintWithCheckOption(ctx, obj, parent, field_name, depth);
|
|
792
|
-
break;
|
|
793
|
-
case T_SortGroupClause:
|
|
794
|
-
_fingerprintString(ctx, "SortGroupClause");
|
|
795
|
-
_fingerprintSortGroupClause(ctx, obj, parent, field_name, depth);
|
|
796
|
-
break;
|
|
797
|
-
case T_GroupingSet:
|
|
798
|
-
_fingerprintString(ctx, "GroupingSet");
|
|
799
|
-
_fingerprintGroupingSet(ctx, obj, parent, field_name, depth);
|
|
800
|
-
break;
|
|
801
|
-
case T_WindowClause:
|
|
802
|
-
_fingerprintString(ctx, "WindowClause");
|
|
803
|
-
_fingerprintWindowClause(ctx, obj, parent, field_name, depth);
|
|
804
|
-
break;
|
|
805
|
-
case T_ObjectWithArgs:
|
|
806
|
-
_fingerprintString(ctx, "ObjectWithArgs");
|
|
807
|
-
_fingerprintObjectWithArgs(ctx, obj, parent, field_name, depth);
|
|
808
|
-
break;
|
|
809
|
-
case T_AccessPriv:
|
|
810
|
-
_fingerprintString(ctx, "AccessPriv");
|
|
811
|
-
_fingerprintAccessPriv(ctx, obj, parent, field_name, depth);
|
|
812
|
-
break;
|
|
813
|
-
case T_CreateOpClassItem:
|
|
814
|
-
_fingerprintString(ctx, "CreateOpClassItem");
|
|
815
|
-
_fingerprintCreateOpClassItem(ctx, obj, parent, field_name, depth);
|
|
816
|
-
break;
|
|
817
|
-
case T_TableLikeClause:
|
|
818
|
-
_fingerprintString(ctx, "TableLikeClause");
|
|
819
|
-
_fingerprintTableLikeClause(ctx, obj, parent, field_name, depth);
|
|
820
|
-
break;
|
|
821
|
-
case T_FunctionParameter:
|
|
822
|
-
_fingerprintString(ctx, "FunctionParameter");
|
|
823
|
-
_fingerprintFunctionParameter(ctx, obj, parent, field_name, depth);
|
|
824
|
-
break;
|
|
825
|
-
case T_LockingClause:
|
|
826
|
-
_fingerprintString(ctx, "LockingClause");
|
|
827
|
-
_fingerprintLockingClause(ctx, obj, parent, field_name, depth);
|
|
828
|
-
break;
|
|
829
|
-
case T_RowMarkClause:
|
|
830
|
-
_fingerprintString(ctx, "RowMarkClause");
|
|
831
|
-
_fingerprintRowMarkClause(ctx, obj, parent, field_name, depth);
|
|
832
|
-
break;
|
|
833
|
-
case T_XmlSerialize:
|
|
834
|
-
_fingerprintString(ctx, "XmlSerialize");
|
|
835
|
-
_fingerprintXmlSerialize(ctx, obj, parent, field_name, depth);
|
|
836
|
-
break;
|
|
837
|
-
case T_WithClause:
|
|
838
|
-
_fingerprintString(ctx, "WithClause");
|
|
839
|
-
_fingerprintWithClause(ctx, obj, parent, field_name, depth);
|
|
840
|
-
break;
|
|
841
|
-
case T_InferClause:
|
|
842
|
-
_fingerprintString(ctx, "InferClause");
|
|
843
|
-
_fingerprintInferClause(ctx, obj, parent, field_name, depth);
|
|
844
|
-
break;
|
|
845
|
-
case T_OnConflictClause:
|
|
846
|
-
_fingerprintString(ctx, "OnConflictClause");
|
|
847
|
-
_fingerprintOnConflictClause(ctx, obj, parent, field_name, depth);
|
|
848
|
-
break;
|
|
849
|
-
case T_CTESearchClause:
|
|
850
|
-
_fingerprintString(ctx, "CTESearchClause");
|
|
851
|
-
_fingerprintCTESearchClause(ctx, obj, parent, field_name, depth);
|
|
852
|
-
break;
|
|
853
|
-
case T_CTECycleClause:
|
|
854
|
-
_fingerprintString(ctx, "CTECycleClause");
|
|
855
|
-
_fingerprintCTECycleClause(ctx, obj, parent, field_name, depth);
|
|
856
|
-
break;
|
|
857
|
-
case T_CommonTableExpr:
|
|
858
|
-
_fingerprintString(ctx, "CommonTableExpr");
|
|
859
|
-
_fingerprintCommonTableExpr(ctx, obj, parent, field_name, depth);
|
|
860
|
-
break;
|
|
861
|
-
case T_MergeWhenClause:
|
|
862
|
-
_fingerprintString(ctx, "MergeWhenClause");
|
|
863
|
-
_fingerprintMergeWhenClause(ctx, obj, parent, field_name, depth);
|
|
864
|
-
break;
|
|
865
|
-
case T_RoleSpec:
|
|
866
|
-
_fingerprintString(ctx, "RoleSpec");
|
|
867
|
-
_fingerprintRoleSpec(ctx, obj, parent, field_name, depth);
|
|
868
|
-
break;
|
|
869
|
-
case T_TriggerTransition:
|
|
870
|
-
_fingerprintString(ctx, "TriggerTransition");
|
|
871
|
-
_fingerprintTriggerTransition(ctx, obj, parent, field_name, depth);
|
|
872
|
-
break;
|
|
873
|
-
case T_PartitionElem:
|
|
874
|
-
_fingerprintString(ctx, "PartitionElem");
|
|
875
|
-
_fingerprintPartitionElem(ctx, obj, parent, field_name, depth);
|
|
876
|
-
break;
|
|
877
|
-
case T_PartitionSpec:
|
|
878
|
-
_fingerprintString(ctx, "PartitionSpec");
|
|
879
|
-
_fingerprintPartitionSpec(ctx, obj, parent, field_name, depth);
|
|
880
|
-
break;
|
|
881
|
-
case T_PartitionBoundSpec:
|
|
882
|
-
_fingerprintString(ctx, "PartitionBoundSpec");
|
|
883
|
-
_fingerprintPartitionBoundSpec(ctx, obj, parent, field_name, depth);
|
|
884
|
-
break;
|
|
885
|
-
case T_PartitionRangeDatum:
|
|
886
|
-
_fingerprintString(ctx, "PartitionRangeDatum");
|
|
887
|
-
_fingerprintPartitionRangeDatum(ctx, obj, parent, field_name, depth);
|
|
888
|
-
break;
|
|
889
|
-
case T_PartitionCmd:
|
|
890
|
-
_fingerprintString(ctx, "PartitionCmd");
|
|
891
|
-
_fingerprintPartitionCmd(ctx, obj, parent, field_name, depth);
|
|
892
|
-
break;
|
|
893
|
-
case T_VacuumRelation:
|
|
894
|
-
_fingerprintString(ctx, "VacuumRelation");
|
|
895
|
-
_fingerprintVacuumRelation(ctx, obj, parent, field_name, depth);
|
|
896
|
-
break;
|
|
897
|
-
case T_PublicationObjSpec:
|
|
898
|
-
_fingerprintString(ctx, "PublicationObjSpec");
|
|
899
|
-
_fingerprintPublicationObjSpec(ctx, obj, parent, field_name, depth);
|
|
900
|
-
break;
|
|
901
|
-
case T_PublicationTable:
|
|
902
|
-
_fingerprintString(ctx, "PublicationTable");
|
|
903
|
-
_fingerprintPublicationTable(ctx, obj, parent, field_name, depth);
|
|
904
|
-
break;
|
|
905
|
-
case T_InlineCodeBlock:
|
|
906
|
-
_fingerprintString(ctx, "InlineCodeBlock");
|
|
907
|
-
_fingerprintInlineCodeBlock(ctx, obj, parent, field_name, depth);
|
|
908
|
-
break;
|
|
909
|
-
case T_CallContext:
|
|
910
|
-
_fingerprintString(ctx, "CallContext");
|
|
911
|
-
_fingerprintCallContext(ctx, obj, parent, field_name, depth);
|
|
912
|
-
break;
|