pg_query 1.1.0 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +163 -52
- data/README.md +80 -69
- data/Rakefile +82 -1
- data/ext/pg_query/extconf.rb +3 -31
- data/ext/pg_query/guc-file.c +0 -0
- data/ext/pg_query/include/access/amapi.h +246 -0
- data/ext/pg_query/include/access/attmap.h +52 -0
- data/ext/pg_query/include/access/attnum.h +64 -0
- data/ext/pg_query/include/access/clog.h +61 -0
- data/ext/pg_query/include/access/commit_ts.h +77 -0
- data/ext/pg_query/include/access/detoast.h +92 -0
- data/ext/pg_query/include/access/genam.h +228 -0
- data/ext/pg_query/include/access/gin.h +78 -0
- data/ext/pg_query/include/access/htup.h +89 -0
- data/ext/pg_query/include/access/htup_details.h +819 -0
- data/ext/pg_query/include/access/itup.h +161 -0
- data/ext/pg_query/include/access/parallel.h +82 -0
- data/ext/pg_query/include/access/printtup.h +35 -0
- data/ext/pg_query/include/access/relation.h +28 -0
- data/ext/pg_query/include/access/relscan.h +176 -0
- data/ext/pg_query/include/access/rmgr.h +35 -0
- data/ext/pg_query/include/access/rmgrlist.h +49 -0
- data/ext/pg_query/include/access/sdir.h +58 -0
- data/ext/pg_query/include/access/skey.h +151 -0
- data/ext/pg_query/include/access/stratnum.h +83 -0
- data/ext/pg_query/include/access/sysattr.h +29 -0
- data/ext/pg_query/include/access/table.h +27 -0
- data/ext/pg_query/include/access/tableam.h +1825 -0
- data/ext/pg_query/include/access/transam.h +265 -0
- data/ext/pg_query/include/access/tupconvert.h +51 -0
- data/ext/pg_query/include/access/tupdesc.h +154 -0
- data/ext/pg_query/include/access/tupmacs.h +247 -0
- data/ext/pg_query/include/access/twophase.h +61 -0
- data/ext/pg_query/include/access/xact.h +463 -0
- data/ext/pg_query/include/access/xlog.h +398 -0
- data/ext/pg_query/include/access/xlog_internal.h +330 -0
- data/ext/pg_query/include/access/xlogdefs.h +109 -0
- data/ext/pg_query/include/access/xloginsert.h +64 -0
- data/ext/pg_query/include/access/xlogreader.h +327 -0
- data/ext/pg_query/include/access/xlogrecord.h +227 -0
- data/ext/pg_query/include/bootstrap/bootstrap.h +62 -0
- data/ext/pg_query/include/c.h +1322 -0
- data/ext/pg_query/include/catalog/catalog.h +42 -0
- data/ext/pg_query/include/catalog/catversion.h +58 -0
- data/ext/pg_query/include/catalog/dependency.h +275 -0
- data/ext/pg_query/include/catalog/genbki.h +64 -0
- data/ext/pg_query/include/catalog/index.h +199 -0
- data/ext/pg_query/include/catalog/indexing.h +366 -0
- data/ext/pg_query/include/catalog/namespace.h +188 -0
- data/ext/pg_query/include/catalog/objectaccess.h +197 -0
- data/ext/pg_query/include/catalog/objectaddress.h +84 -0
- data/ext/pg_query/include/catalog/pg_aggregate.h +176 -0
- data/ext/pg_query/include/catalog/pg_aggregate_d.h +77 -0
- data/ext/pg_query/include/catalog/pg_am.h +60 -0
- data/ext/pg_query/include/catalog/pg_am_d.h +45 -0
- data/ext/pg_query/include/catalog/pg_attribute.h +204 -0
- data/ext/pg_query/include/catalog/pg_attribute_d.h +59 -0
- data/ext/pg_query/include/catalog/pg_authid.h +58 -0
- data/ext/pg_query/include/catalog/pg_authid_d.h +49 -0
- data/ext/pg_query/include/catalog/pg_class.h +200 -0
- data/ext/pg_query/include/catalog/pg_class_d.h +103 -0
- data/ext/pg_query/include/catalog/pg_collation.h +73 -0
- data/ext/pg_query/include/catalog/pg_collation_d.h +45 -0
- data/ext/pg_query/include/catalog/pg_constraint.h +247 -0
- data/ext/pg_query/include/catalog/pg_constraint_d.h +67 -0
- data/ext/pg_query/include/catalog/pg_control.h +250 -0
- data/ext/pg_query/include/catalog/pg_conversion.h +72 -0
- data/ext/pg_query/include/catalog/pg_conversion_d.h +35 -0
- data/ext/pg_query/include/catalog/pg_depend.h +73 -0
- data/ext/pg_query/include/catalog/pg_depend_d.h +34 -0
- data/ext/pg_query/include/catalog/pg_event_trigger.h +51 -0
- data/ext/pg_query/include/catalog/pg_event_trigger_d.h +34 -0
- data/ext/pg_query/include/catalog/pg_index.h +80 -0
- data/ext/pg_query/include/catalog/pg_index_d.h +56 -0
- data/ext/pg_query/include/catalog/pg_language.h +67 -0
- data/ext/pg_query/include/catalog/pg_language_d.h +39 -0
- data/ext/pg_query/include/catalog/pg_namespace.h +59 -0
- data/ext/pg_query/include/catalog/pg_namespace_d.h +34 -0
- data/ext/pg_query/include/catalog/pg_opclass.h +85 -0
- data/ext/pg_query/include/catalog/pg_opclass_d.h +49 -0
- data/ext/pg_query/include/catalog/pg_operator.h +102 -0
- data/ext/pg_query/include/catalog/pg_operator_d.h +106 -0
- data/ext/pg_query/include/catalog/pg_opfamily.h +60 -0
- data/ext/pg_query/include/catalog/pg_opfamily_d.h +47 -0
- data/ext/pg_query/include/catalog/pg_partitioned_table.h +63 -0
- data/ext/pg_query/include/catalog/pg_partitioned_table_d.h +35 -0
- data/ext/pg_query/include/catalog/pg_proc.h +211 -0
- data/ext/pg_query/include/catalog/pg_proc_d.h +99 -0
- data/ext/pg_query/include/catalog/pg_publication.h +115 -0
- data/ext/pg_query/include/catalog/pg_publication_d.h +36 -0
- data/ext/pg_query/include/catalog/pg_replication_origin.h +57 -0
- data/ext/pg_query/include/catalog/pg_replication_origin_d.h +29 -0
- data/ext/pg_query/include/catalog/pg_statistic.h +275 -0
- data/ext/pg_query/include/catalog/pg_statistic_d.h +194 -0
- data/ext/pg_query/include/catalog/pg_statistic_ext.h +74 -0
- data/ext/pg_query/include/catalog/pg_statistic_ext_d.h +40 -0
- data/ext/pg_query/include/catalog/pg_transform.h +45 -0
- data/ext/pg_query/include/catalog/pg_transform_d.h +32 -0
- data/ext/pg_query/include/catalog/pg_trigger.h +137 -0
- data/ext/pg_query/include/catalog/pg_trigger_d.h +106 -0
- data/ext/pg_query/include/catalog/pg_ts_config.h +50 -0
- data/ext/pg_query/include/catalog/pg_ts_config_d.h +32 -0
- data/ext/pg_query/include/catalog/pg_ts_dict.h +54 -0
- data/ext/pg_query/include/catalog/pg_ts_dict_d.h +33 -0
- data/ext/pg_query/include/catalog/pg_ts_parser.h +57 -0
- data/ext/pg_query/include/catalog/pg_ts_parser_d.h +35 -0
- data/ext/pg_query/include/catalog/pg_ts_template.h +48 -0
- data/ext/pg_query/include/catalog/pg_ts_template_d.h +32 -0
- data/ext/pg_query/include/catalog/pg_type.h +372 -0
- data/ext/pg_query/include/catalog/pg_type_d.h +285 -0
- data/ext/pg_query/include/catalog/storage.h +48 -0
- data/ext/pg_query/include/commands/async.h +54 -0
- data/ext/pg_query/include/commands/dbcommands.h +35 -0
- data/ext/pg_query/include/commands/defrem.h +173 -0
- data/ext/pg_query/include/commands/event_trigger.h +88 -0
- data/ext/pg_query/include/commands/explain.h +127 -0
- data/ext/pg_query/include/commands/prepare.h +61 -0
- data/ext/pg_query/include/commands/tablespace.h +67 -0
- data/ext/pg_query/include/commands/trigger.h +277 -0
- data/ext/pg_query/include/commands/user.h +37 -0
- data/ext/pg_query/include/commands/vacuum.h +293 -0
- data/ext/pg_query/include/commands/variable.h +38 -0
- data/ext/pg_query/include/common/file_perm.h +56 -0
- data/ext/pg_query/include/common/hashfn.h +104 -0
- data/ext/pg_query/include/common/ip.h +37 -0
- data/ext/pg_query/include/common/keywords.h +33 -0
- data/ext/pg_query/include/common/kwlookup.h +44 -0
- data/ext/pg_query/include/common/relpath.h +90 -0
- data/ext/pg_query/include/common/string.h +19 -0
- data/ext/pg_query/include/common/unicode_combining_table.h +196 -0
- data/ext/pg_query/include/datatype/timestamp.h +197 -0
- data/ext/pg_query/include/executor/execdesc.h +70 -0
- data/ext/pg_query/include/executor/executor.h +614 -0
- data/ext/pg_query/include/executor/functions.h +41 -0
- data/ext/pg_query/include/executor/instrument.h +101 -0
- data/ext/pg_query/include/executor/spi.h +175 -0
- data/ext/pg_query/include/executor/tablefunc.h +67 -0
- data/ext/pg_query/include/executor/tuptable.h +487 -0
- data/ext/pg_query/include/fmgr.h +775 -0
- data/ext/pg_query/include/funcapi.h +348 -0
- data/ext/pg_query/include/getaddrinfo.h +162 -0
- data/ext/pg_query/include/jit/jit.h +105 -0
- data/ext/pg_query/include/kwlist_d.h +1072 -0
- data/ext/pg_query/include/lib/ilist.h +727 -0
- data/ext/pg_query/include/lib/pairingheap.h +102 -0
- data/ext/pg_query/include/lib/simplehash.h +1059 -0
- data/ext/pg_query/include/lib/stringinfo.h +161 -0
- data/ext/pg_query/include/libpq/auth.h +29 -0
- data/ext/pg_query/include/libpq/crypt.h +46 -0
- data/ext/pg_query/include/libpq/hba.h +140 -0
- data/ext/pg_query/include/libpq/libpq-be.h +326 -0
- data/ext/pg_query/include/libpq/libpq.h +133 -0
- data/ext/pg_query/include/libpq/pqcomm.h +208 -0
- data/ext/pg_query/include/libpq/pqformat.h +210 -0
- data/ext/pg_query/include/libpq/pqsignal.h +42 -0
- data/ext/pg_query/include/mb/pg_wchar.h +672 -0
- data/ext/pg_query/include/mb/stringinfo_mb.h +24 -0
- data/ext/pg_query/include/miscadmin.h +476 -0
- data/ext/pg_query/include/nodes/bitmapset.h +122 -0
- data/ext/pg_query/include/nodes/execnodes.h +2520 -0
- data/ext/pg_query/include/nodes/extensible.h +160 -0
- data/ext/pg_query/include/nodes/lockoptions.h +61 -0
- data/ext/pg_query/include/nodes/makefuncs.h +108 -0
- data/ext/pg_query/include/nodes/memnodes.h +108 -0
- data/ext/pg_query/include/nodes/nodeFuncs.h +162 -0
- data/ext/pg_query/include/nodes/nodes.h +842 -0
- data/ext/pg_query/include/nodes/params.h +170 -0
- data/ext/pg_query/include/nodes/parsenodes.h +3579 -0
- data/ext/pg_query/include/nodes/pathnodes.h +2556 -0
- data/ext/pg_query/include/nodes/pg_list.h +605 -0
- data/ext/pg_query/include/nodes/plannodes.h +1251 -0
- data/ext/pg_query/include/nodes/primnodes.h +1541 -0
- data/ext/pg_query/include/nodes/print.h +34 -0
- data/ext/pg_query/include/nodes/tidbitmap.h +75 -0
- data/ext/pg_query/include/nodes/value.h +61 -0
- data/ext/pg_query/include/optimizer/cost.h +206 -0
- data/ext/pg_query/include/optimizer/geqo.h +88 -0
- data/ext/pg_query/include/optimizer/geqo_gene.h +45 -0
- data/ext/pg_query/include/optimizer/optimizer.h +199 -0
- data/ext/pg_query/include/optimizer/paths.h +249 -0
- data/ext/pg_query/include/optimizer/planmain.h +119 -0
- data/ext/pg_query/include/parser/analyze.h +49 -0
- data/ext/pg_query/include/parser/gram.h +1067 -0
- data/ext/pg_query/include/parser/gramparse.h +75 -0
- data/ext/pg_query/include/parser/kwlist.h +477 -0
- data/ext/pg_query/include/parser/parse_agg.h +68 -0
- data/ext/pg_query/include/parser/parse_clause.h +54 -0
- data/ext/pg_query/include/parser/parse_coerce.h +97 -0
- data/ext/pg_query/include/parser/parse_collate.h +27 -0
- data/ext/pg_query/include/parser/parse_expr.h +26 -0
- data/ext/pg_query/include/parser/parse_func.h +73 -0
- data/ext/pg_query/include/parser/parse_node.h +327 -0
- data/ext/pg_query/include/parser/parse_oper.h +67 -0
- data/ext/pg_query/include/parser/parse_relation.h +123 -0
- data/ext/pg_query/include/parser/parse_target.h +46 -0
- data/ext/pg_query/include/parser/parse_type.h +60 -0
- data/ext/pg_query/include/parser/parser.h +41 -0
- data/ext/pg_query/include/parser/parsetree.h +61 -0
- data/ext/pg_query/include/parser/scanner.h +152 -0
- data/ext/pg_query/include/parser/scansup.h +30 -0
- data/ext/pg_query/include/partitioning/partdefs.h +26 -0
- data/ext/pg_query/include/pg_config.h +988 -0
- data/ext/pg_query/include/pg_config_ext.h +8 -0
- data/ext/pg_query/include/pg_config_manual.h +350 -0
- data/ext/pg_query/include/pg_config_os.h +8 -0
- data/ext/pg_query/include/pg_getopt.h +56 -0
- data/ext/pg_query/include/pg_query.h +121 -0
- data/ext/pg_query/include/pg_query_enum_defs.c +2454 -0
- data/ext/pg_query/include/pg_query_fingerprint_conds.c +875 -0
- data/ext/pg_query/include/pg_query_fingerprint_defs.c +12413 -0
- data/ext/pg_query/include/pg_query_json_helper.c +61 -0
- data/ext/pg_query/include/pg_query_outfuncs_conds.c +686 -0
- data/ext/pg_query/include/pg_query_outfuncs_defs.c +2437 -0
- data/ext/pg_query/include/pg_query_readfuncs_conds.c +222 -0
- data/ext/pg_query/include/pg_query_readfuncs_defs.c +2878 -0
- data/ext/pg_query/include/pg_trace.h +17 -0
- data/ext/pg_query/include/pgstat.h +1487 -0
- data/ext/pg_query/include/pgtime.h +84 -0
- data/ext/pg_query/include/pl_gram.h +385 -0
- data/ext/pg_query/include/pl_reserved_kwlist.h +52 -0
- data/ext/pg_query/include/pl_reserved_kwlist_d.h +114 -0
- data/ext/pg_query/include/pl_unreserved_kwlist.h +112 -0
- data/ext/pg_query/include/pl_unreserved_kwlist_d.h +246 -0
- data/ext/pg_query/include/plerrcodes.h +990 -0
- data/ext/pg_query/include/plpgsql.h +1347 -0
- data/ext/pg_query/include/port.h +524 -0
- data/ext/pg_query/include/port/atomics.h +524 -0
- data/ext/pg_query/include/port/atomics/arch-arm.h +26 -0
- data/ext/pg_query/include/port/atomics/arch-ppc.h +254 -0
- data/ext/pg_query/include/port/atomics/arch-x86.h +252 -0
- data/ext/pg_query/include/port/atomics/fallback.h +170 -0
- data/ext/pg_query/include/port/atomics/generic-gcc.h +286 -0
- data/ext/pg_query/include/port/atomics/generic.h +401 -0
- data/ext/pg_query/include/port/pg_bitutils.h +226 -0
- data/ext/pg_query/include/port/pg_bswap.h +161 -0
- data/ext/pg_query/include/port/pg_crc32c.h +101 -0
- data/ext/pg_query/include/portability/instr_time.h +256 -0
- data/ext/pg_query/include/postgres.h +764 -0
- data/ext/pg_query/include/postgres_ext.h +74 -0
- data/ext/pg_query/include/postmaster/autovacuum.h +83 -0
- data/ext/pg_query/include/postmaster/bgworker.h +161 -0
- data/ext/pg_query/include/postmaster/bgworker_internals.h +64 -0
- data/ext/pg_query/include/postmaster/bgwriter.h +45 -0
- data/ext/pg_query/include/postmaster/fork_process.h +17 -0
- data/ext/pg_query/include/postmaster/interrupt.h +32 -0
- data/ext/pg_query/include/postmaster/pgarch.h +39 -0
- data/ext/pg_query/include/postmaster/postmaster.h +77 -0
- data/ext/pg_query/include/postmaster/syslogger.h +98 -0
- data/ext/pg_query/include/postmaster/walwriter.h +21 -0
- data/ext/pg_query/include/protobuf-c.h +1106 -0
- data/ext/pg_query/include/protobuf-c/protobuf-c.h +1106 -0
- data/ext/pg_query/include/protobuf/pg_query.pb-c.h +10846 -0
- data/ext/pg_query/include/protobuf/pg_query.pb.h +124718 -0
- data/ext/pg_query/include/regex/regex.h +184 -0
- data/ext/pg_query/include/replication/logicallauncher.h +31 -0
- data/ext/pg_query/include/replication/logicalproto.h +110 -0
- data/ext/pg_query/include/replication/logicalworker.h +19 -0
- data/ext/pg_query/include/replication/origin.h +73 -0
- data/ext/pg_query/include/replication/reorderbuffer.h +467 -0
- data/ext/pg_query/include/replication/slot.h +219 -0
- data/ext/pg_query/include/replication/syncrep.h +115 -0
- data/ext/pg_query/include/replication/walreceiver.h +340 -0
- data/ext/pg_query/include/replication/walsender.h +74 -0
- data/ext/pg_query/include/rewrite/prs2lock.h +46 -0
- data/ext/pg_query/include/rewrite/rewriteHandler.h +40 -0
- data/ext/pg_query/include/rewrite/rewriteManip.h +87 -0
- data/ext/pg_query/include/rewrite/rewriteSupport.h +26 -0
- data/ext/pg_query/include/storage/backendid.h +37 -0
- data/ext/pg_query/include/storage/block.h +121 -0
- data/ext/pg_query/include/storage/buf.h +46 -0
- data/ext/pg_query/include/storage/bufmgr.h +292 -0
- data/ext/pg_query/include/storage/bufpage.h +459 -0
- data/ext/pg_query/include/storage/condition_variable.h +62 -0
- data/ext/pg_query/include/storage/dsm.h +61 -0
- data/ext/pg_query/include/storage/dsm_impl.h +75 -0
- data/ext/pg_query/include/storage/fd.h +168 -0
- data/ext/pg_query/include/storage/ipc.h +81 -0
- data/ext/pg_query/include/storage/item.h +19 -0
- data/ext/pg_query/include/storage/itemid.h +184 -0
- data/ext/pg_query/include/storage/itemptr.h +206 -0
- data/ext/pg_query/include/storage/large_object.h +100 -0
- data/ext/pg_query/include/storage/latch.h +190 -0
- data/ext/pg_query/include/storage/lmgr.h +114 -0
- data/ext/pg_query/include/storage/lock.h +612 -0
- data/ext/pg_query/include/storage/lockdefs.h +59 -0
- data/ext/pg_query/include/storage/lwlock.h +232 -0
- data/ext/pg_query/include/storage/lwlocknames.h +51 -0
- data/ext/pg_query/include/storage/off.h +57 -0
- data/ext/pg_query/include/storage/pg_sema.h +61 -0
- data/ext/pg_query/include/storage/pg_shmem.h +90 -0
- data/ext/pg_query/include/storage/pmsignal.h +94 -0
- data/ext/pg_query/include/storage/predicate.h +87 -0
- data/ext/pg_query/include/storage/proc.h +333 -0
- data/ext/pg_query/include/storage/proclist_types.h +51 -0
- data/ext/pg_query/include/storage/procsignal.h +75 -0
- data/ext/pg_query/include/storage/relfilenode.h +99 -0
- data/ext/pg_query/include/storage/s_lock.h +1047 -0
- data/ext/pg_query/include/storage/sharedfileset.h +45 -0
- data/ext/pg_query/include/storage/shm_mq.h +85 -0
- data/ext/pg_query/include/storage/shm_toc.h +58 -0
- data/ext/pg_query/include/storage/shmem.h +81 -0
- data/ext/pg_query/include/storage/sinval.h +153 -0
- data/ext/pg_query/include/storage/sinvaladt.h +43 -0
- data/ext/pg_query/include/storage/smgr.h +109 -0
- data/ext/pg_query/include/storage/spin.h +77 -0
- data/ext/pg_query/include/storage/standby.h +91 -0
- data/ext/pg_query/include/storage/standbydefs.h +74 -0
- data/ext/pg_query/include/storage/sync.h +62 -0
- data/ext/pg_query/include/tcop/cmdtag.h +58 -0
- data/ext/pg_query/include/tcop/cmdtaglist.h +217 -0
- data/ext/pg_query/include/tcop/deparse_utility.h +108 -0
- data/ext/pg_query/include/tcop/dest.h +149 -0
- data/ext/pg_query/include/tcop/fastpath.h +21 -0
- data/ext/pg_query/include/tcop/pquery.h +45 -0
- data/ext/pg_query/include/tcop/tcopprot.h +89 -0
- data/ext/pg_query/include/tcop/utility.h +108 -0
- data/ext/pg_query/include/tsearch/ts_cache.h +98 -0
- data/ext/pg_query/include/utils/acl.h +312 -0
- data/ext/pg_query/include/utils/aclchk_internal.h +45 -0
- data/ext/pg_query/include/utils/array.h +458 -0
- data/ext/pg_query/include/utils/builtins.h +127 -0
- data/ext/pg_query/include/utils/bytea.h +27 -0
- data/ext/pg_query/include/utils/catcache.h +231 -0
- data/ext/pg_query/include/utils/date.h +90 -0
- data/ext/pg_query/include/utils/datetime.h +343 -0
- data/ext/pg_query/include/utils/datum.h +68 -0
- data/ext/pg_query/include/utils/dsa.h +123 -0
- data/ext/pg_query/include/utils/dynahash.h +19 -0
- data/ext/pg_query/include/utils/elog.h +439 -0
- data/ext/pg_query/include/utils/errcodes.h +352 -0
- data/ext/pg_query/include/utils/expandeddatum.h +159 -0
- data/ext/pg_query/include/utils/expandedrecord.h +231 -0
- data/ext/pg_query/include/utils/float.h +356 -0
- data/ext/pg_query/include/utils/fmgroids.h +2657 -0
- data/ext/pg_query/include/utils/fmgrprotos.h +2646 -0
- data/ext/pg_query/include/utils/fmgrtab.h +48 -0
- data/ext/pg_query/include/utils/guc.h +443 -0
- data/ext/pg_query/include/utils/guc_tables.h +272 -0
- data/ext/pg_query/include/utils/hsearch.h +149 -0
- data/ext/pg_query/include/utils/inval.h +64 -0
- data/ext/pg_query/include/utils/lsyscache.h +197 -0
- data/ext/pg_query/include/utils/memdebug.h +82 -0
- data/ext/pg_query/include/utils/memutils.h +225 -0
- data/ext/pg_query/include/utils/numeric.h +76 -0
- data/ext/pg_query/include/utils/palloc.h +136 -0
- data/ext/pg_query/include/utils/partcache.h +102 -0
- data/ext/pg_query/include/utils/pg_locale.h +119 -0
- data/ext/pg_query/include/utils/pg_lsn.h +29 -0
- data/ext/pg_query/include/utils/pidfile.h +56 -0
- data/ext/pg_query/include/utils/plancache.h +235 -0
- data/ext/pg_query/include/utils/portal.h +241 -0
- data/ext/pg_query/include/utils/probes.h +114 -0
- data/ext/pg_query/include/utils/ps_status.h +25 -0
- data/ext/pg_query/include/utils/queryenvironment.h +74 -0
- data/ext/pg_query/include/utils/regproc.h +28 -0
- data/ext/pg_query/include/utils/rel.h +644 -0
- data/ext/pg_query/include/utils/relcache.h +151 -0
- data/ext/pg_query/include/utils/reltrigger.h +81 -0
- data/ext/pg_query/include/utils/resowner.h +86 -0
- data/ext/pg_query/include/utils/rls.h +50 -0
- data/ext/pg_query/include/utils/ruleutils.h +44 -0
- data/ext/pg_query/include/utils/sharedtuplestore.h +61 -0
- data/ext/pg_query/include/utils/snapmgr.h +158 -0
- data/ext/pg_query/include/utils/snapshot.h +206 -0
- data/ext/pg_query/include/utils/sortsupport.h +276 -0
- data/ext/pg_query/include/utils/syscache.h +219 -0
- data/ext/pg_query/include/utils/timeout.h +88 -0
- data/ext/pg_query/include/utils/timestamp.h +116 -0
- data/ext/pg_query/include/utils/tuplesort.h +277 -0
- data/ext/pg_query/include/utils/tuplestore.h +91 -0
- data/ext/pg_query/include/utils/typcache.h +202 -0
- data/ext/pg_query/include/utils/tzparser.h +39 -0
- data/ext/pg_query/include/utils/varlena.h +39 -0
- data/ext/pg_query/include/utils/xml.h +84 -0
- data/ext/pg_query/include/xxhash.h +5445 -0
- data/ext/pg_query/include/xxhash/xxhash.h +5445 -0
- data/ext/pg_query/pg_query.c +104 -0
- data/ext/pg_query/pg_query.pb-c.c +37628 -0
- data/ext/pg_query/pg_query_deparse.c +9953 -0
- data/ext/pg_query/pg_query_fingerprint.c +292 -0
- data/ext/pg_query/pg_query_fingerprint.h +8 -0
- data/ext/pg_query/pg_query_internal.h +24 -0
- data/ext/pg_query/pg_query_json_plpgsql.c +738 -0
- data/ext/pg_query/pg_query_json_plpgsql.h +9 -0
- data/ext/pg_query/pg_query_normalize.c +437 -0
- data/ext/pg_query/pg_query_outfuncs.h +10 -0
- data/ext/pg_query/pg_query_outfuncs_json.c +297 -0
- data/ext/pg_query/pg_query_outfuncs_protobuf.c +237 -0
- data/ext/pg_query/pg_query_parse.c +148 -0
- data/ext/pg_query/pg_query_parse_plpgsql.c +460 -0
- data/ext/pg_query/pg_query_readfuncs.h +11 -0
- data/ext/pg_query/pg_query_readfuncs_protobuf.c +142 -0
- data/ext/pg_query/pg_query_ruby.c +108 -12
- data/ext/pg_query/pg_query_scan.c +173 -0
- data/ext/pg_query/pg_query_split.c +221 -0
- data/ext/pg_query/protobuf-c.c +3660 -0
- data/ext/pg_query/src_backend_catalog_namespace.c +1051 -0
- data/ext/pg_query/src_backend_catalog_pg_proc.c +142 -0
- data/ext/pg_query/src_backend_commands_define.c +117 -0
- data/ext/pg_query/src_backend_libpq_pqcomm.c +651 -0
- data/ext/pg_query/src_backend_nodes_bitmapset.c +513 -0
- data/ext/pg_query/src_backend_nodes_copyfuncs.c +6013 -0
- data/ext/pg_query/src_backend_nodes_equalfuncs.c +4003 -0
- data/ext/pg_query/src_backend_nodes_extensible.c +99 -0
- data/ext/pg_query/src_backend_nodes_list.c +922 -0
- data/ext/pg_query/src_backend_nodes_makefuncs.c +417 -0
- data/ext/pg_query/src_backend_nodes_nodeFuncs.c +1363 -0
- data/ext/pg_query/src_backend_nodes_value.c +84 -0
- data/ext/pg_query/src_backend_parser_gram.c +47456 -0
- data/ext/pg_query/src_backend_parser_parse_expr.c +313 -0
- data/ext/pg_query/src_backend_parser_parser.c +497 -0
- data/ext/pg_query/src_backend_parser_scan.c +7091 -0
- data/ext/pg_query/src_backend_parser_scansup.c +160 -0
- data/ext/pg_query/src_backend_postmaster_postmaster.c +2230 -0
- data/ext/pg_query/src_backend_storage_ipc_ipc.c +192 -0
- data/ext/pg_query/src_backend_storage_lmgr_s_lock.c +370 -0
- data/ext/pg_query/src_backend_tcop_postgres.c +776 -0
- data/ext/pg_query/src_backend_utils_adt_datum.c +326 -0
- data/ext/pg_query/src_backend_utils_adt_expandeddatum.c +98 -0
- data/ext/pg_query/src_backend_utils_adt_format_type.c +136 -0
- data/ext/pg_query/src_backend_utils_adt_ruleutils.c +1683 -0
- data/ext/pg_query/src_backend_utils_error_assert.c +74 -0
- data/ext/pg_query/src_backend_utils_error_elog.c +1748 -0
- data/ext/pg_query/src_backend_utils_fmgr_fmgr.c +570 -0
- data/ext/pg_query/src_backend_utils_hash_dynahash.c +1086 -0
- data/ext/pg_query/src_backend_utils_init_globals.c +168 -0
- data/ext/pg_query/src_backend_utils_mb_mbutils.c +839 -0
- data/ext/pg_query/src_backend_utils_misc_guc.c +1831 -0
- data/ext/pg_query/src_backend_utils_mmgr_aset.c +1560 -0
- data/ext/pg_query/src_backend_utils_mmgr_mcxt.c +1006 -0
- data/ext/pg_query/src_common_encnames.c +158 -0
- data/ext/pg_query/src_common_keywords.c +39 -0
- data/ext/pg_query/src_common_kwlist_d.h +1081 -0
- data/ext/pg_query/src_common_kwlookup.c +91 -0
- data/ext/pg_query/src_common_psprintf.c +158 -0
- data/ext/pg_query/src_common_string.c +86 -0
- data/ext/pg_query/src_common_stringinfo.c +336 -0
- data/ext/pg_query/src_common_wchar.c +1651 -0
- data/ext/pg_query/src_pl_plpgsql_src_pl_comp.c +1133 -0
- data/ext/pg_query/src_pl_plpgsql_src_pl_funcs.c +877 -0
- data/ext/pg_query/src_pl_plpgsql_src_pl_gram.c +6533 -0
- data/ext/pg_query/src_pl_plpgsql_src_pl_handler.c +107 -0
- data/ext/pg_query/src_pl_plpgsql_src_pl_reserved_kwlist_d.h +123 -0
- data/ext/pg_query/src_pl_plpgsql_src_pl_scanner.c +671 -0
- data/ext/pg_query/src_pl_plpgsql_src_pl_unreserved_kwlist_d.h +255 -0
- data/ext/pg_query/src_port_erand48.c +127 -0
- data/ext/pg_query/src_port_pg_bitutils.c +246 -0
- data/ext/pg_query/src_port_pgsleep.c +69 -0
- data/ext/pg_query/src_port_pgstrcasecmp.c +83 -0
- data/ext/pg_query/src_port_qsort.c +240 -0
- data/ext/pg_query/src_port_random.c +31 -0
- data/ext/pg_query/src_port_snprintf.c +1449 -0
- data/ext/pg_query/src_port_strerror.c +324 -0
- data/ext/pg_query/src_port_strnlen.c +39 -0
- data/ext/pg_query/xxhash.c +43 -0
- data/lib/pg_query.rb +7 -4
- data/lib/pg_query/constants.rb +21 -0
- data/lib/pg_query/deparse.rb +16 -1117
- data/lib/pg_query/filter_columns.rb +86 -85
- data/lib/pg_query/fingerprint.rb +122 -87
- data/lib/pg_query/json_field_names.rb +1402 -0
- data/lib/pg_query/node.rb +31 -0
- data/lib/pg_query/param_refs.rb +42 -37
- data/lib/pg_query/parse.rb +220 -200
- data/lib/pg_query/parse_error.rb +1 -1
- data/lib/pg_query/pg_query_pb.rb +3211 -0
- data/lib/pg_query/scan.rb +23 -0
- data/lib/pg_query/treewalker.rb +24 -40
- data/lib/pg_query/truncate.rb +64 -43
- data/lib/pg_query/version.rb +2 -2
- metadata +473 -11
- data/ext/pg_query/pg_query_ruby.h +0 -10
- data/lib/pg_query/deep_dup.rb +0 -16
- data/lib/pg_query/deparse/alter_table.rb +0 -42
- data/lib/pg_query/deparse/interval.rb +0 -105
- data/lib/pg_query/legacy_parsetree.rb +0 -109
- data/lib/pg_query/node_types.rb +0 -284
@@ -0,0 +1,990 @@
|
|
1
|
+
/* autogenerated from src/backend/utils/errcodes.txt, do not edit */
|
2
|
+
/* there is deliberately not an #ifndef PLERRCODES_H here */
|
3
|
+
{
|
4
|
+
"sql_statement_not_yet_complete", ERRCODE_SQL_STATEMENT_NOT_YET_COMPLETE
|
5
|
+
},
|
6
|
+
|
7
|
+
{
|
8
|
+
"connection_exception", ERRCODE_CONNECTION_EXCEPTION
|
9
|
+
},
|
10
|
+
|
11
|
+
{
|
12
|
+
"connection_does_not_exist", ERRCODE_CONNECTION_DOES_NOT_EXIST
|
13
|
+
},
|
14
|
+
|
15
|
+
{
|
16
|
+
"connection_failure", ERRCODE_CONNECTION_FAILURE
|
17
|
+
},
|
18
|
+
|
19
|
+
{
|
20
|
+
"sqlclient_unable_to_establish_sqlconnection", ERRCODE_SQLCLIENT_UNABLE_TO_ESTABLISH_SQLCONNECTION
|
21
|
+
},
|
22
|
+
|
23
|
+
{
|
24
|
+
"sqlserver_rejected_establishment_of_sqlconnection", ERRCODE_SQLSERVER_REJECTED_ESTABLISHMENT_OF_SQLCONNECTION
|
25
|
+
},
|
26
|
+
|
27
|
+
{
|
28
|
+
"transaction_resolution_unknown", ERRCODE_TRANSACTION_RESOLUTION_UNKNOWN
|
29
|
+
},
|
30
|
+
|
31
|
+
{
|
32
|
+
"protocol_violation", ERRCODE_PROTOCOL_VIOLATION
|
33
|
+
},
|
34
|
+
|
35
|
+
{
|
36
|
+
"triggered_action_exception", ERRCODE_TRIGGERED_ACTION_EXCEPTION
|
37
|
+
},
|
38
|
+
|
39
|
+
{
|
40
|
+
"feature_not_supported", ERRCODE_FEATURE_NOT_SUPPORTED
|
41
|
+
},
|
42
|
+
|
43
|
+
{
|
44
|
+
"invalid_transaction_initiation", ERRCODE_INVALID_TRANSACTION_INITIATION
|
45
|
+
},
|
46
|
+
|
47
|
+
{
|
48
|
+
"locator_exception", ERRCODE_LOCATOR_EXCEPTION
|
49
|
+
},
|
50
|
+
|
51
|
+
{
|
52
|
+
"invalid_locator_specification", ERRCODE_L_E_INVALID_SPECIFICATION
|
53
|
+
},
|
54
|
+
|
55
|
+
{
|
56
|
+
"invalid_grantor", ERRCODE_INVALID_GRANTOR
|
57
|
+
},
|
58
|
+
|
59
|
+
{
|
60
|
+
"invalid_grant_operation", ERRCODE_INVALID_GRANT_OPERATION
|
61
|
+
},
|
62
|
+
|
63
|
+
{
|
64
|
+
"invalid_role_specification", ERRCODE_INVALID_ROLE_SPECIFICATION
|
65
|
+
},
|
66
|
+
|
67
|
+
{
|
68
|
+
"diagnostics_exception", ERRCODE_DIAGNOSTICS_EXCEPTION
|
69
|
+
},
|
70
|
+
|
71
|
+
{
|
72
|
+
"stacked_diagnostics_accessed_without_active_handler", ERRCODE_STACKED_DIAGNOSTICS_ACCESSED_WITHOUT_ACTIVE_HANDLER
|
73
|
+
},
|
74
|
+
|
75
|
+
{
|
76
|
+
"case_not_found", ERRCODE_CASE_NOT_FOUND
|
77
|
+
},
|
78
|
+
|
79
|
+
{
|
80
|
+
"cardinality_violation", ERRCODE_CARDINALITY_VIOLATION
|
81
|
+
},
|
82
|
+
|
83
|
+
{
|
84
|
+
"data_exception", ERRCODE_DATA_EXCEPTION
|
85
|
+
},
|
86
|
+
|
87
|
+
{
|
88
|
+
"array_subscript_error", ERRCODE_ARRAY_SUBSCRIPT_ERROR
|
89
|
+
},
|
90
|
+
|
91
|
+
{
|
92
|
+
"character_not_in_repertoire", ERRCODE_CHARACTER_NOT_IN_REPERTOIRE
|
93
|
+
},
|
94
|
+
|
95
|
+
{
|
96
|
+
"datetime_field_overflow", ERRCODE_DATETIME_FIELD_OVERFLOW
|
97
|
+
},
|
98
|
+
|
99
|
+
{
|
100
|
+
"division_by_zero", ERRCODE_DIVISION_BY_ZERO
|
101
|
+
},
|
102
|
+
|
103
|
+
{
|
104
|
+
"error_in_assignment", ERRCODE_ERROR_IN_ASSIGNMENT
|
105
|
+
},
|
106
|
+
|
107
|
+
{
|
108
|
+
"escape_character_conflict", ERRCODE_ESCAPE_CHARACTER_CONFLICT
|
109
|
+
},
|
110
|
+
|
111
|
+
{
|
112
|
+
"indicator_overflow", ERRCODE_INDICATOR_OVERFLOW
|
113
|
+
},
|
114
|
+
|
115
|
+
{
|
116
|
+
"interval_field_overflow", ERRCODE_INTERVAL_FIELD_OVERFLOW
|
117
|
+
},
|
118
|
+
|
119
|
+
{
|
120
|
+
"invalid_argument_for_logarithm", ERRCODE_INVALID_ARGUMENT_FOR_LOG
|
121
|
+
},
|
122
|
+
|
123
|
+
{
|
124
|
+
"invalid_argument_for_ntile_function", ERRCODE_INVALID_ARGUMENT_FOR_NTILE
|
125
|
+
},
|
126
|
+
|
127
|
+
{
|
128
|
+
"invalid_argument_for_nth_value_function", ERRCODE_INVALID_ARGUMENT_FOR_NTH_VALUE
|
129
|
+
},
|
130
|
+
|
131
|
+
{
|
132
|
+
"invalid_argument_for_power_function", ERRCODE_INVALID_ARGUMENT_FOR_POWER_FUNCTION
|
133
|
+
},
|
134
|
+
|
135
|
+
{
|
136
|
+
"invalid_argument_for_width_bucket_function", ERRCODE_INVALID_ARGUMENT_FOR_WIDTH_BUCKET_FUNCTION
|
137
|
+
},
|
138
|
+
|
139
|
+
{
|
140
|
+
"invalid_character_value_for_cast", ERRCODE_INVALID_CHARACTER_VALUE_FOR_CAST
|
141
|
+
},
|
142
|
+
|
143
|
+
{
|
144
|
+
"invalid_datetime_format", ERRCODE_INVALID_DATETIME_FORMAT
|
145
|
+
},
|
146
|
+
|
147
|
+
{
|
148
|
+
"invalid_escape_character", ERRCODE_INVALID_ESCAPE_CHARACTER
|
149
|
+
},
|
150
|
+
|
151
|
+
{
|
152
|
+
"invalid_escape_octet", ERRCODE_INVALID_ESCAPE_OCTET
|
153
|
+
},
|
154
|
+
|
155
|
+
{
|
156
|
+
"invalid_escape_sequence", ERRCODE_INVALID_ESCAPE_SEQUENCE
|
157
|
+
},
|
158
|
+
|
159
|
+
{
|
160
|
+
"nonstandard_use_of_escape_character", ERRCODE_NONSTANDARD_USE_OF_ESCAPE_CHARACTER
|
161
|
+
},
|
162
|
+
|
163
|
+
{
|
164
|
+
"invalid_indicator_parameter_value", ERRCODE_INVALID_INDICATOR_PARAMETER_VALUE
|
165
|
+
},
|
166
|
+
|
167
|
+
{
|
168
|
+
"invalid_parameter_value", ERRCODE_INVALID_PARAMETER_VALUE
|
169
|
+
},
|
170
|
+
|
171
|
+
{
|
172
|
+
"invalid_preceding_or_following_size", ERRCODE_INVALID_PRECEDING_OR_FOLLOWING_SIZE
|
173
|
+
},
|
174
|
+
|
175
|
+
{
|
176
|
+
"invalid_regular_expression", ERRCODE_INVALID_REGULAR_EXPRESSION
|
177
|
+
},
|
178
|
+
|
179
|
+
{
|
180
|
+
"invalid_row_count_in_limit_clause", ERRCODE_INVALID_ROW_COUNT_IN_LIMIT_CLAUSE
|
181
|
+
},
|
182
|
+
|
183
|
+
{
|
184
|
+
"invalid_row_count_in_result_offset_clause", ERRCODE_INVALID_ROW_COUNT_IN_RESULT_OFFSET_CLAUSE
|
185
|
+
},
|
186
|
+
|
187
|
+
{
|
188
|
+
"invalid_tablesample_argument", ERRCODE_INVALID_TABLESAMPLE_ARGUMENT
|
189
|
+
},
|
190
|
+
|
191
|
+
{
|
192
|
+
"invalid_tablesample_repeat", ERRCODE_INVALID_TABLESAMPLE_REPEAT
|
193
|
+
},
|
194
|
+
|
195
|
+
{
|
196
|
+
"invalid_time_zone_displacement_value", ERRCODE_INVALID_TIME_ZONE_DISPLACEMENT_VALUE
|
197
|
+
},
|
198
|
+
|
199
|
+
{
|
200
|
+
"invalid_use_of_escape_character", ERRCODE_INVALID_USE_OF_ESCAPE_CHARACTER
|
201
|
+
},
|
202
|
+
|
203
|
+
{
|
204
|
+
"most_specific_type_mismatch", ERRCODE_MOST_SPECIFIC_TYPE_MISMATCH
|
205
|
+
},
|
206
|
+
|
207
|
+
{
|
208
|
+
"null_value_not_allowed", ERRCODE_NULL_VALUE_NOT_ALLOWED
|
209
|
+
},
|
210
|
+
|
211
|
+
{
|
212
|
+
"null_value_no_indicator_parameter", ERRCODE_NULL_VALUE_NO_INDICATOR_PARAMETER
|
213
|
+
},
|
214
|
+
|
215
|
+
{
|
216
|
+
"numeric_value_out_of_range", ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE
|
217
|
+
},
|
218
|
+
|
219
|
+
{
|
220
|
+
"sequence_generator_limit_exceeded", ERRCODE_SEQUENCE_GENERATOR_LIMIT_EXCEEDED
|
221
|
+
},
|
222
|
+
|
223
|
+
{
|
224
|
+
"string_data_length_mismatch", ERRCODE_STRING_DATA_LENGTH_MISMATCH
|
225
|
+
},
|
226
|
+
|
227
|
+
{
|
228
|
+
"string_data_right_truncation", ERRCODE_STRING_DATA_RIGHT_TRUNCATION
|
229
|
+
},
|
230
|
+
|
231
|
+
{
|
232
|
+
"substring_error", ERRCODE_SUBSTRING_ERROR
|
233
|
+
},
|
234
|
+
|
235
|
+
{
|
236
|
+
"trim_error", ERRCODE_TRIM_ERROR
|
237
|
+
},
|
238
|
+
|
239
|
+
{
|
240
|
+
"unterminated_c_string", ERRCODE_UNTERMINATED_C_STRING
|
241
|
+
},
|
242
|
+
|
243
|
+
{
|
244
|
+
"zero_length_character_string", ERRCODE_ZERO_LENGTH_CHARACTER_STRING
|
245
|
+
},
|
246
|
+
|
247
|
+
{
|
248
|
+
"floating_point_exception", ERRCODE_FLOATING_POINT_EXCEPTION
|
249
|
+
},
|
250
|
+
|
251
|
+
{
|
252
|
+
"invalid_text_representation", ERRCODE_INVALID_TEXT_REPRESENTATION
|
253
|
+
},
|
254
|
+
|
255
|
+
{
|
256
|
+
"invalid_binary_representation", ERRCODE_INVALID_BINARY_REPRESENTATION
|
257
|
+
},
|
258
|
+
|
259
|
+
{
|
260
|
+
"bad_copy_file_format", ERRCODE_BAD_COPY_FILE_FORMAT
|
261
|
+
},
|
262
|
+
|
263
|
+
{
|
264
|
+
"untranslatable_character", ERRCODE_UNTRANSLATABLE_CHARACTER
|
265
|
+
},
|
266
|
+
|
267
|
+
{
|
268
|
+
"not_an_xml_document", ERRCODE_NOT_AN_XML_DOCUMENT
|
269
|
+
},
|
270
|
+
|
271
|
+
{
|
272
|
+
"invalid_xml_document", ERRCODE_INVALID_XML_DOCUMENT
|
273
|
+
},
|
274
|
+
|
275
|
+
{
|
276
|
+
"invalid_xml_content", ERRCODE_INVALID_XML_CONTENT
|
277
|
+
},
|
278
|
+
|
279
|
+
{
|
280
|
+
"invalid_xml_comment", ERRCODE_INVALID_XML_COMMENT
|
281
|
+
},
|
282
|
+
|
283
|
+
{
|
284
|
+
"invalid_xml_processing_instruction", ERRCODE_INVALID_XML_PROCESSING_INSTRUCTION
|
285
|
+
},
|
286
|
+
|
287
|
+
{
|
288
|
+
"duplicate_json_object_key_value", ERRCODE_DUPLICATE_JSON_OBJECT_KEY_VALUE
|
289
|
+
},
|
290
|
+
|
291
|
+
{
|
292
|
+
"invalid_argument_for_sql_json_datetime_function", ERRCODE_INVALID_ARGUMENT_FOR_SQL_JSON_DATETIME_FUNCTION
|
293
|
+
},
|
294
|
+
|
295
|
+
{
|
296
|
+
"invalid_json_text", ERRCODE_INVALID_JSON_TEXT
|
297
|
+
},
|
298
|
+
|
299
|
+
{
|
300
|
+
"invalid_sql_json_subscript", ERRCODE_INVALID_SQL_JSON_SUBSCRIPT
|
301
|
+
},
|
302
|
+
|
303
|
+
{
|
304
|
+
"more_than_one_sql_json_item", ERRCODE_MORE_THAN_ONE_SQL_JSON_ITEM
|
305
|
+
},
|
306
|
+
|
307
|
+
{
|
308
|
+
"no_sql_json_item", ERRCODE_NO_SQL_JSON_ITEM
|
309
|
+
},
|
310
|
+
|
311
|
+
{
|
312
|
+
"non_numeric_sql_json_item", ERRCODE_NON_NUMERIC_SQL_JSON_ITEM
|
313
|
+
},
|
314
|
+
|
315
|
+
{
|
316
|
+
"non_unique_keys_in_a_json_object", ERRCODE_NON_UNIQUE_KEYS_IN_A_JSON_OBJECT
|
317
|
+
},
|
318
|
+
|
319
|
+
{
|
320
|
+
"singleton_sql_json_item_required", ERRCODE_SINGLETON_SQL_JSON_ITEM_REQUIRED
|
321
|
+
},
|
322
|
+
|
323
|
+
{
|
324
|
+
"sql_json_array_not_found", ERRCODE_SQL_JSON_ARRAY_NOT_FOUND
|
325
|
+
},
|
326
|
+
|
327
|
+
{
|
328
|
+
"sql_json_member_not_found", ERRCODE_SQL_JSON_MEMBER_NOT_FOUND
|
329
|
+
},
|
330
|
+
|
331
|
+
{
|
332
|
+
"sql_json_number_not_found", ERRCODE_SQL_JSON_NUMBER_NOT_FOUND
|
333
|
+
},
|
334
|
+
|
335
|
+
{
|
336
|
+
"sql_json_object_not_found", ERRCODE_SQL_JSON_OBJECT_NOT_FOUND
|
337
|
+
},
|
338
|
+
|
339
|
+
{
|
340
|
+
"too_many_json_array_elements", ERRCODE_TOO_MANY_JSON_ARRAY_ELEMENTS
|
341
|
+
},
|
342
|
+
|
343
|
+
{
|
344
|
+
"too_many_json_object_members", ERRCODE_TOO_MANY_JSON_OBJECT_MEMBERS
|
345
|
+
},
|
346
|
+
|
347
|
+
{
|
348
|
+
"sql_json_scalar_required", ERRCODE_SQL_JSON_SCALAR_REQUIRED
|
349
|
+
},
|
350
|
+
|
351
|
+
{
|
352
|
+
"integrity_constraint_violation", ERRCODE_INTEGRITY_CONSTRAINT_VIOLATION
|
353
|
+
},
|
354
|
+
|
355
|
+
{
|
356
|
+
"restrict_violation", ERRCODE_RESTRICT_VIOLATION
|
357
|
+
},
|
358
|
+
|
359
|
+
{
|
360
|
+
"not_null_violation", ERRCODE_NOT_NULL_VIOLATION
|
361
|
+
},
|
362
|
+
|
363
|
+
{
|
364
|
+
"foreign_key_violation", ERRCODE_FOREIGN_KEY_VIOLATION
|
365
|
+
},
|
366
|
+
|
367
|
+
{
|
368
|
+
"unique_violation", ERRCODE_UNIQUE_VIOLATION
|
369
|
+
},
|
370
|
+
|
371
|
+
{
|
372
|
+
"check_violation", ERRCODE_CHECK_VIOLATION
|
373
|
+
},
|
374
|
+
|
375
|
+
{
|
376
|
+
"exclusion_violation", ERRCODE_EXCLUSION_VIOLATION
|
377
|
+
},
|
378
|
+
|
379
|
+
{
|
380
|
+
"invalid_cursor_state", ERRCODE_INVALID_CURSOR_STATE
|
381
|
+
},
|
382
|
+
|
383
|
+
{
|
384
|
+
"invalid_transaction_state", ERRCODE_INVALID_TRANSACTION_STATE
|
385
|
+
},
|
386
|
+
|
387
|
+
{
|
388
|
+
"active_sql_transaction", ERRCODE_ACTIVE_SQL_TRANSACTION
|
389
|
+
},
|
390
|
+
|
391
|
+
{
|
392
|
+
"branch_transaction_already_active", ERRCODE_BRANCH_TRANSACTION_ALREADY_ACTIVE
|
393
|
+
},
|
394
|
+
|
395
|
+
{
|
396
|
+
"held_cursor_requires_same_isolation_level", ERRCODE_HELD_CURSOR_REQUIRES_SAME_ISOLATION_LEVEL
|
397
|
+
},
|
398
|
+
|
399
|
+
{
|
400
|
+
"inappropriate_access_mode_for_branch_transaction", ERRCODE_INAPPROPRIATE_ACCESS_MODE_FOR_BRANCH_TRANSACTION
|
401
|
+
},
|
402
|
+
|
403
|
+
{
|
404
|
+
"inappropriate_isolation_level_for_branch_transaction", ERRCODE_INAPPROPRIATE_ISOLATION_LEVEL_FOR_BRANCH_TRANSACTION
|
405
|
+
},
|
406
|
+
|
407
|
+
{
|
408
|
+
"no_active_sql_transaction_for_branch_transaction", ERRCODE_NO_ACTIVE_SQL_TRANSACTION_FOR_BRANCH_TRANSACTION
|
409
|
+
},
|
410
|
+
|
411
|
+
{
|
412
|
+
"read_only_sql_transaction", ERRCODE_READ_ONLY_SQL_TRANSACTION
|
413
|
+
},
|
414
|
+
|
415
|
+
{
|
416
|
+
"schema_and_data_statement_mixing_not_supported", ERRCODE_SCHEMA_AND_DATA_STATEMENT_MIXING_NOT_SUPPORTED
|
417
|
+
},
|
418
|
+
|
419
|
+
{
|
420
|
+
"no_active_sql_transaction", ERRCODE_NO_ACTIVE_SQL_TRANSACTION
|
421
|
+
},
|
422
|
+
|
423
|
+
{
|
424
|
+
"in_failed_sql_transaction", ERRCODE_IN_FAILED_SQL_TRANSACTION
|
425
|
+
},
|
426
|
+
|
427
|
+
{
|
428
|
+
"idle_in_transaction_session_timeout", ERRCODE_IDLE_IN_TRANSACTION_SESSION_TIMEOUT
|
429
|
+
},
|
430
|
+
|
431
|
+
{
|
432
|
+
"invalid_sql_statement_name", ERRCODE_INVALID_SQL_STATEMENT_NAME
|
433
|
+
},
|
434
|
+
|
435
|
+
{
|
436
|
+
"triggered_data_change_violation", ERRCODE_TRIGGERED_DATA_CHANGE_VIOLATION
|
437
|
+
},
|
438
|
+
|
439
|
+
{
|
440
|
+
"invalid_authorization_specification", ERRCODE_INVALID_AUTHORIZATION_SPECIFICATION
|
441
|
+
},
|
442
|
+
|
443
|
+
{
|
444
|
+
"invalid_password", ERRCODE_INVALID_PASSWORD
|
445
|
+
},
|
446
|
+
|
447
|
+
{
|
448
|
+
"dependent_privilege_descriptors_still_exist", ERRCODE_DEPENDENT_PRIVILEGE_DESCRIPTORS_STILL_EXIST
|
449
|
+
},
|
450
|
+
|
451
|
+
{
|
452
|
+
"dependent_objects_still_exist", ERRCODE_DEPENDENT_OBJECTS_STILL_EXIST
|
453
|
+
},
|
454
|
+
|
455
|
+
{
|
456
|
+
"invalid_transaction_termination", ERRCODE_INVALID_TRANSACTION_TERMINATION
|
457
|
+
},
|
458
|
+
|
459
|
+
{
|
460
|
+
"sql_routine_exception", ERRCODE_SQL_ROUTINE_EXCEPTION
|
461
|
+
},
|
462
|
+
|
463
|
+
{
|
464
|
+
"function_executed_no_return_statement", ERRCODE_S_R_E_FUNCTION_EXECUTED_NO_RETURN_STATEMENT
|
465
|
+
},
|
466
|
+
|
467
|
+
{
|
468
|
+
"modifying_sql_data_not_permitted", ERRCODE_S_R_E_MODIFYING_SQL_DATA_NOT_PERMITTED
|
469
|
+
},
|
470
|
+
|
471
|
+
{
|
472
|
+
"prohibited_sql_statement_attempted", ERRCODE_S_R_E_PROHIBITED_SQL_STATEMENT_ATTEMPTED
|
473
|
+
},
|
474
|
+
|
475
|
+
{
|
476
|
+
"reading_sql_data_not_permitted", ERRCODE_S_R_E_READING_SQL_DATA_NOT_PERMITTED
|
477
|
+
},
|
478
|
+
|
479
|
+
{
|
480
|
+
"invalid_cursor_name", ERRCODE_INVALID_CURSOR_NAME
|
481
|
+
},
|
482
|
+
|
483
|
+
{
|
484
|
+
"external_routine_exception", ERRCODE_EXTERNAL_ROUTINE_EXCEPTION
|
485
|
+
},
|
486
|
+
|
487
|
+
{
|
488
|
+
"containing_sql_not_permitted", ERRCODE_E_R_E_CONTAINING_SQL_NOT_PERMITTED
|
489
|
+
},
|
490
|
+
|
491
|
+
{
|
492
|
+
"modifying_sql_data_not_permitted", ERRCODE_E_R_E_MODIFYING_SQL_DATA_NOT_PERMITTED
|
493
|
+
},
|
494
|
+
|
495
|
+
{
|
496
|
+
"prohibited_sql_statement_attempted", ERRCODE_E_R_E_PROHIBITED_SQL_STATEMENT_ATTEMPTED
|
497
|
+
},
|
498
|
+
|
499
|
+
{
|
500
|
+
"reading_sql_data_not_permitted", ERRCODE_E_R_E_READING_SQL_DATA_NOT_PERMITTED
|
501
|
+
},
|
502
|
+
|
503
|
+
{
|
504
|
+
"external_routine_invocation_exception", ERRCODE_EXTERNAL_ROUTINE_INVOCATION_EXCEPTION
|
505
|
+
},
|
506
|
+
|
507
|
+
{
|
508
|
+
"invalid_sqlstate_returned", ERRCODE_E_R_I_E_INVALID_SQLSTATE_RETURNED
|
509
|
+
},
|
510
|
+
|
511
|
+
{
|
512
|
+
"null_value_not_allowed", ERRCODE_E_R_I_E_NULL_VALUE_NOT_ALLOWED
|
513
|
+
},
|
514
|
+
|
515
|
+
{
|
516
|
+
"trigger_protocol_violated", ERRCODE_E_R_I_E_TRIGGER_PROTOCOL_VIOLATED
|
517
|
+
},
|
518
|
+
|
519
|
+
{
|
520
|
+
"srf_protocol_violated", ERRCODE_E_R_I_E_SRF_PROTOCOL_VIOLATED
|
521
|
+
},
|
522
|
+
|
523
|
+
{
|
524
|
+
"event_trigger_protocol_violated", ERRCODE_E_R_I_E_EVENT_TRIGGER_PROTOCOL_VIOLATED
|
525
|
+
},
|
526
|
+
|
527
|
+
{
|
528
|
+
"savepoint_exception", ERRCODE_SAVEPOINT_EXCEPTION
|
529
|
+
},
|
530
|
+
|
531
|
+
{
|
532
|
+
"invalid_savepoint_specification", ERRCODE_S_E_INVALID_SPECIFICATION
|
533
|
+
},
|
534
|
+
|
535
|
+
{
|
536
|
+
"invalid_catalog_name", ERRCODE_INVALID_CATALOG_NAME
|
537
|
+
},
|
538
|
+
|
539
|
+
{
|
540
|
+
"invalid_schema_name", ERRCODE_INVALID_SCHEMA_NAME
|
541
|
+
},
|
542
|
+
|
543
|
+
{
|
544
|
+
"transaction_rollback", ERRCODE_TRANSACTION_ROLLBACK
|
545
|
+
},
|
546
|
+
|
547
|
+
{
|
548
|
+
"transaction_integrity_constraint_violation", ERRCODE_T_R_INTEGRITY_CONSTRAINT_VIOLATION
|
549
|
+
},
|
550
|
+
|
551
|
+
{
|
552
|
+
"serialization_failure", ERRCODE_T_R_SERIALIZATION_FAILURE
|
553
|
+
},
|
554
|
+
|
555
|
+
{
|
556
|
+
"statement_completion_unknown", ERRCODE_T_R_STATEMENT_COMPLETION_UNKNOWN
|
557
|
+
},
|
558
|
+
|
559
|
+
{
|
560
|
+
"deadlock_detected", ERRCODE_T_R_DEADLOCK_DETECTED
|
561
|
+
},
|
562
|
+
|
563
|
+
{
|
564
|
+
"syntax_error_or_access_rule_violation", ERRCODE_SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION
|
565
|
+
},
|
566
|
+
|
567
|
+
{
|
568
|
+
"syntax_error", ERRCODE_SYNTAX_ERROR
|
569
|
+
},
|
570
|
+
|
571
|
+
{
|
572
|
+
"insufficient_privilege", ERRCODE_INSUFFICIENT_PRIVILEGE
|
573
|
+
},
|
574
|
+
|
575
|
+
{
|
576
|
+
"cannot_coerce", ERRCODE_CANNOT_COERCE
|
577
|
+
},
|
578
|
+
|
579
|
+
{
|
580
|
+
"grouping_error", ERRCODE_GROUPING_ERROR
|
581
|
+
},
|
582
|
+
|
583
|
+
{
|
584
|
+
"windowing_error", ERRCODE_WINDOWING_ERROR
|
585
|
+
},
|
586
|
+
|
587
|
+
{
|
588
|
+
"invalid_recursion", ERRCODE_INVALID_RECURSION
|
589
|
+
},
|
590
|
+
|
591
|
+
{
|
592
|
+
"invalid_foreign_key", ERRCODE_INVALID_FOREIGN_KEY
|
593
|
+
},
|
594
|
+
|
595
|
+
{
|
596
|
+
"invalid_name", ERRCODE_INVALID_NAME
|
597
|
+
},
|
598
|
+
|
599
|
+
{
|
600
|
+
"name_too_long", ERRCODE_NAME_TOO_LONG
|
601
|
+
},
|
602
|
+
|
603
|
+
{
|
604
|
+
"reserved_name", ERRCODE_RESERVED_NAME
|
605
|
+
},
|
606
|
+
|
607
|
+
{
|
608
|
+
"datatype_mismatch", ERRCODE_DATATYPE_MISMATCH
|
609
|
+
},
|
610
|
+
|
611
|
+
{
|
612
|
+
"indeterminate_datatype", ERRCODE_INDETERMINATE_DATATYPE
|
613
|
+
},
|
614
|
+
|
615
|
+
{
|
616
|
+
"collation_mismatch", ERRCODE_COLLATION_MISMATCH
|
617
|
+
},
|
618
|
+
|
619
|
+
{
|
620
|
+
"indeterminate_collation", ERRCODE_INDETERMINATE_COLLATION
|
621
|
+
},
|
622
|
+
|
623
|
+
{
|
624
|
+
"wrong_object_type", ERRCODE_WRONG_OBJECT_TYPE
|
625
|
+
},
|
626
|
+
|
627
|
+
{
|
628
|
+
"generated_always", ERRCODE_GENERATED_ALWAYS
|
629
|
+
},
|
630
|
+
|
631
|
+
{
|
632
|
+
"undefined_column", ERRCODE_UNDEFINED_COLUMN
|
633
|
+
},
|
634
|
+
|
635
|
+
{
|
636
|
+
"undefined_function", ERRCODE_UNDEFINED_FUNCTION
|
637
|
+
},
|
638
|
+
|
639
|
+
{
|
640
|
+
"undefined_table", ERRCODE_UNDEFINED_TABLE
|
641
|
+
},
|
642
|
+
|
643
|
+
{
|
644
|
+
"undefined_parameter", ERRCODE_UNDEFINED_PARAMETER
|
645
|
+
},
|
646
|
+
|
647
|
+
{
|
648
|
+
"undefined_object", ERRCODE_UNDEFINED_OBJECT
|
649
|
+
},
|
650
|
+
|
651
|
+
{
|
652
|
+
"duplicate_column", ERRCODE_DUPLICATE_COLUMN
|
653
|
+
},
|
654
|
+
|
655
|
+
{
|
656
|
+
"duplicate_cursor", ERRCODE_DUPLICATE_CURSOR
|
657
|
+
},
|
658
|
+
|
659
|
+
{
|
660
|
+
"duplicate_database", ERRCODE_DUPLICATE_DATABASE
|
661
|
+
},
|
662
|
+
|
663
|
+
{
|
664
|
+
"duplicate_function", ERRCODE_DUPLICATE_FUNCTION
|
665
|
+
},
|
666
|
+
|
667
|
+
{
|
668
|
+
"duplicate_prepared_statement", ERRCODE_DUPLICATE_PSTATEMENT
|
669
|
+
},
|
670
|
+
|
671
|
+
{
|
672
|
+
"duplicate_schema", ERRCODE_DUPLICATE_SCHEMA
|
673
|
+
},
|
674
|
+
|
675
|
+
{
|
676
|
+
"duplicate_table", ERRCODE_DUPLICATE_TABLE
|
677
|
+
},
|
678
|
+
|
679
|
+
{
|
680
|
+
"duplicate_alias", ERRCODE_DUPLICATE_ALIAS
|
681
|
+
},
|
682
|
+
|
683
|
+
{
|
684
|
+
"duplicate_object", ERRCODE_DUPLICATE_OBJECT
|
685
|
+
},
|
686
|
+
|
687
|
+
{
|
688
|
+
"ambiguous_column", ERRCODE_AMBIGUOUS_COLUMN
|
689
|
+
},
|
690
|
+
|
691
|
+
{
|
692
|
+
"ambiguous_function", ERRCODE_AMBIGUOUS_FUNCTION
|
693
|
+
},
|
694
|
+
|
695
|
+
{
|
696
|
+
"ambiguous_parameter", ERRCODE_AMBIGUOUS_PARAMETER
|
697
|
+
},
|
698
|
+
|
699
|
+
{
|
700
|
+
"ambiguous_alias", ERRCODE_AMBIGUOUS_ALIAS
|
701
|
+
},
|
702
|
+
|
703
|
+
{
|
704
|
+
"invalid_column_reference", ERRCODE_INVALID_COLUMN_REFERENCE
|
705
|
+
},
|
706
|
+
|
707
|
+
{
|
708
|
+
"invalid_column_definition", ERRCODE_INVALID_COLUMN_DEFINITION
|
709
|
+
},
|
710
|
+
|
711
|
+
{
|
712
|
+
"invalid_cursor_definition", ERRCODE_INVALID_CURSOR_DEFINITION
|
713
|
+
},
|
714
|
+
|
715
|
+
{
|
716
|
+
"invalid_database_definition", ERRCODE_INVALID_DATABASE_DEFINITION
|
717
|
+
},
|
718
|
+
|
719
|
+
{
|
720
|
+
"invalid_function_definition", ERRCODE_INVALID_FUNCTION_DEFINITION
|
721
|
+
},
|
722
|
+
|
723
|
+
{
|
724
|
+
"invalid_prepared_statement_definition", ERRCODE_INVALID_PSTATEMENT_DEFINITION
|
725
|
+
},
|
726
|
+
|
727
|
+
{
|
728
|
+
"invalid_schema_definition", ERRCODE_INVALID_SCHEMA_DEFINITION
|
729
|
+
},
|
730
|
+
|
731
|
+
{
|
732
|
+
"invalid_table_definition", ERRCODE_INVALID_TABLE_DEFINITION
|
733
|
+
},
|
734
|
+
|
735
|
+
{
|
736
|
+
"invalid_object_definition", ERRCODE_INVALID_OBJECT_DEFINITION
|
737
|
+
},
|
738
|
+
|
739
|
+
{
|
740
|
+
"with_check_option_violation", ERRCODE_WITH_CHECK_OPTION_VIOLATION
|
741
|
+
},
|
742
|
+
|
743
|
+
{
|
744
|
+
"insufficient_resources", ERRCODE_INSUFFICIENT_RESOURCES
|
745
|
+
},
|
746
|
+
|
747
|
+
{
|
748
|
+
"disk_full", ERRCODE_DISK_FULL
|
749
|
+
},
|
750
|
+
|
751
|
+
{
|
752
|
+
"out_of_memory", ERRCODE_OUT_OF_MEMORY
|
753
|
+
},
|
754
|
+
|
755
|
+
{
|
756
|
+
"too_many_connections", ERRCODE_TOO_MANY_CONNECTIONS
|
757
|
+
},
|
758
|
+
|
759
|
+
{
|
760
|
+
"configuration_limit_exceeded", ERRCODE_CONFIGURATION_LIMIT_EXCEEDED
|
761
|
+
},
|
762
|
+
|
763
|
+
{
|
764
|
+
"program_limit_exceeded", ERRCODE_PROGRAM_LIMIT_EXCEEDED
|
765
|
+
},
|
766
|
+
|
767
|
+
{
|
768
|
+
"statement_too_complex", ERRCODE_STATEMENT_TOO_COMPLEX
|
769
|
+
},
|
770
|
+
|
771
|
+
{
|
772
|
+
"too_many_columns", ERRCODE_TOO_MANY_COLUMNS
|
773
|
+
},
|
774
|
+
|
775
|
+
{
|
776
|
+
"too_many_arguments", ERRCODE_TOO_MANY_ARGUMENTS
|
777
|
+
},
|
778
|
+
|
779
|
+
{
|
780
|
+
"object_not_in_prerequisite_state", ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE
|
781
|
+
},
|
782
|
+
|
783
|
+
{
|
784
|
+
"object_in_use", ERRCODE_OBJECT_IN_USE
|
785
|
+
},
|
786
|
+
|
787
|
+
{
|
788
|
+
"cant_change_runtime_param", ERRCODE_CANT_CHANGE_RUNTIME_PARAM
|
789
|
+
},
|
790
|
+
|
791
|
+
{
|
792
|
+
"lock_not_available", ERRCODE_LOCK_NOT_AVAILABLE
|
793
|
+
},
|
794
|
+
|
795
|
+
{
|
796
|
+
"unsafe_new_enum_value_usage", ERRCODE_UNSAFE_NEW_ENUM_VALUE_USAGE
|
797
|
+
},
|
798
|
+
|
799
|
+
{
|
800
|
+
"operator_intervention", ERRCODE_OPERATOR_INTERVENTION
|
801
|
+
},
|
802
|
+
|
803
|
+
{
|
804
|
+
"query_canceled", ERRCODE_QUERY_CANCELED
|
805
|
+
},
|
806
|
+
|
807
|
+
{
|
808
|
+
"admin_shutdown", ERRCODE_ADMIN_SHUTDOWN
|
809
|
+
},
|
810
|
+
|
811
|
+
{
|
812
|
+
"crash_shutdown", ERRCODE_CRASH_SHUTDOWN
|
813
|
+
},
|
814
|
+
|
815
|
+
{
|
816
|
+
"cannot_connect_now", ERRCODE_CANNOT_CONNECT_NOW
|
817
|
+
},
|
818
|
+
|
819
|
+
{
|
820
|
+
"database_dropped", ERRCODE_DATABASE_DROPPED
|
821
|
+
},
|
822
|
+
|
823
|
+
{
|
824
|
+
"system_error", ERRCODE_SYSTEM_ERROR
|
825
|
+
},
|
826
|
+
|
827
|
+
{
|
828
|
+
"io_error", ERRCODE_IO_ERROR
|
829
|
+
},
|
830
|
+
|
831
|
+
{
|
832
|
+
"undefined_file", ERRCODE_UNDEFINED_FILE
|
833
|
+
},
|
834
|
+
|
835
|
+
{
|
836
|
+
"duplicate_file", ERRCODE_DUPLICATE_FILE
|
837
|
+
},
|
838
|
+
|
839
|
+
{
|
840
|
+
"snapshot_too_old", ERRCODE_SNAPSHOT_TOO_OLD
|
841
|
+
},
|
842
|
+
|
843
|
+
{
|
844
|
+
"config_file_error", ERRCODE_CONFIG_FILE_ERROR
|
845
|
+
},
|
846
|
+
|
847
|
+
{
|
848
|
+
"lock_file_exists", ERRCODE_LOCK_FILE_EXISTS
|
849
|
+
},
|
850
|
+
|
851
|
+
{
|
852
|
+
"fdw_error", ERRCODE_FDW_ERROR
|
853
|
+
},
|
854
|
+
|
855
|
+
{
|
856
|
+
"fdw_column_name_not_found", ERRCODE_FDW_COLUMN_NAME_NOT_FOUND
|
857
|
+
},
|
858
|
+
|
859
|
+
{
|
860
|
+
"fdw_dynamic_parameter_value_needed", ERRCODE_FDW_DYNAMIC_PARAMETER_VALUE_NEEDED
|
861
|
+
},
|
862
|
+
|
863
|
+
{
|
864
|
+
"fdw_function_sequence_error", ERRCODE_FDW_FUNCTION_SEQUENCE_ERROR
|
865
|
+
},
|
866
|
+
|
867
|
+
{
|
868
|
+
"fdw_inconsistent_descriptor_information", ERRCODE_FDW_INCONSISTENT_DESCRIPTOR_INFORMATION
|
869
|
+
},
|
870
|
+
|
871
|
+
{
|
872
|
+
"fdw_invalid_attribute_value", ERRCODE_FDW_INVALID_ATTRIBUTE_VALUE
|
873
|
+
},
|
874
|
+
|
875
|
+
{
|
876
|
+
"fdw_invalid_column_name", ERRCODE_FDW_INVALID_COLUMN_NAME
|
877
|
+
},
|
878
|
+
|
879
|
+
{
|
880
|
+
"fdw_invalid_column_number", ERRCODE_FDW_INVALID_COLUMN_NUMBER
|
881
|
+
},
|
882
|
+
|
883
|
+
{
|
884
|
+
"fdw_invalid_data_type", ERRCODE_FDW_INVALID_DATA_TYPE
|
885
|
+
},
|
886
|
+
|
887
|
+
{
|
888
|
+
"fdw_invalid_data_type_descriptors", ERRCODE_FDW_INVALID_DATA_TYPE_DESCRIPTORS
|
889
|
+
},
|
890
|
+
|
891
|
+
{
|
892
|
+
"fdw_invalid_descriptor_field_identifier", ERRCODE_FDW_INVALID_DESCRIPTOR_FIELD_IDENTIFIER
|
893
|
+
},
|
894
|
+
|
895
|
+
{
|
896
|
+
"fdw_invalid_handle", ERRCODE_FDW_INVALID_HANDLE
|
897
|
+
},
|
898
|
+
|
899
|
+
{
|
900
|
+
"fdw_invalid_option_index", ERRCODE_FDW_INVALID_OPTION_INDEX
|
901
|
+
},
|
902
|
+
|
903
|
+
{
|
904
|
+
"fdw_invalid_option_name", ERRCODE_FDW_INVALID_OPTION_NAME
|
905
|
+
},
|
906
|
+
|
907
|
+
{
|
908
|
+
"fdw_invalid_string_length_or_buffer_length", ERRCODE_FDW_INVALID_STRING_LENGTH_OR_BUFFER_LENGTH
|
909
|
+
},
|
910
|
+
|
911
|
+
{
|
912
|
+
"fdw_invalid_string_format", ERRCODE_FDW_INVALID_STRING_FORMAT
|
913
|
+
},
|
914
|
+
|
915
|
+
{
|
916
|
+
"fdw_invalid_use_of_null_pointer", ERRCODE_FDW_INVALID_USE_OF_NULL_POINTER
|
917
|
+
},
|
918
|
+
|
919
|
+
{
|
920
|
+
"fdw_too_many_handles", ERRCODE_FDW_TOO_MANY_HANDLES
|
921
|
+
},
|
922
|
+
|
923
|
+
{
|
924
|
+
"fdw_out_of_memory", ERRCODE_FDW_OUT_OF_MEMORY
|
925
|
+
},
|
926
|
+
|
927
|
+
{
|
928
|
+
"fdw_no_schemas", ERRCODE_FDW_NO_SCHEMAS
|
929
|
+
},
|
930
|
+
|
931
|
+
{
|
932
|
+
"fdw_option_name_not_found", ERRCODE_FDW_OPTION_NAME_NOT_FOUND
|
933
|
+
},
|
934
|
+
|
935
|
+
{
|
936
|
+
"fdw_reply_handle", ERRCODE_FDW_REPLY_HANDLE
|
937
|
+
},
|
938
|
+
|
939
|
+
{
|
940
|
+
"fdw_schema_not_found", ERRCODE_FDW_SCHEMA_NOT_FOUND
|
941
|
+
},
|
942
|
+
|
943
|
+
{
|
944
|
+
"fdw_table_not_found", ERRCODE_FDW_TABLE_NOT_FOUND
|
945
|
+
},
|
946
|
+
|
947
|
+
{
|
948
|
+
"fdw_unable_to_create_execution", ERRCODE_FDW_UNABLE_TO_CREATE_EXECUTION
|
949
|
+
},
|
950
|
+
|
951
|
+
{
|
952
|
+
"fdw_unable_to_create_reply", ERRCODE_FDW_UNABLE_TO_CREATE_REPLY
|
953
|
+
},
|
954
|
+
|
955
|
+
{
|
956
|
+
"fdw_unable_to_establish_connection", ERRCODE_FDW_UNABLE_TO_ESTABLISH_CONNECTION
|
957
|
+
},
|
958
|
+
|
959
|
+
{
|
960
|
+
"plpgsql_error", ERRCODE_PLPGSQL_ERROR
|
961
|
+
},
|
962
|
+
|
963
|
+
{
|
964
|
+
"raise_exception", ERRCODE_RAISE_EXCEPTION
|
965
|
+
},
|
966
|
+
|
967
|
+
{
|
968
|
+
"no_data_found", ERRCODE_NO_DATA_FOUND
|
969
|
+
},
|
970
|
+
|
971
|
+
{
|
972
|
+
"too_many_rows", ERRCODE_TOO_MANY_ROWS
|
973
|
+
},
|
974
|
+
|
975
|
+
{
|
976
|
+
"assert_failure", ERRCODE_ASSERT_FAILURE
|
977
|
+
},
|
978
|
+
|
979
|
+
{
|
980
|
+
"internal_error", ERRCODE_INTERNAL_ERROR
|
981
|
+
},
|
982
|
+
|
983
|
+
{
|
984
|
+
"data_corrupted", ERRCODE_DATA_CORRUPTED
|
985
|
+
},
|
986
|
+
|
987
|
+
{
|
988
|
+
"index_corrupted", ERRCODE_INDEX_CORRUPTED
|
989
|
+
},
|
990
|
+
|