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,2646 @@
|
|
1
|
+
/*-------------------------------------------------------------------------
|
2
|
+
*
|
3
|
+
* fmgrprotos.h
|
4
|
+
* Prototypes for built-in functions.
|
5
|
+
*
|
6
|
+
* Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
|
7
|
+
* Portions Copyright (c) 1994, Regents of the University of California
|
8
|
+
*
|
9
|
+
* NOTES
|
10
|
+
* ******************************
|
11
|
+
* *** DO NOT EDIT THIS FILE! ***
|
12
|
+
* ******************************
|
13
|
+
*
|
14
|
+
* It has been GENERATED by src/backend/utils/Gen_fmgrtab.pl
|
15
|
+
*
|
16
|
+
*-------------------------------------------------------------------------
|
17
|
+
*/
|
18
|
+
|
19
|
+
#ifndef FMGRPROTOS_H
|
20
|
+
#define FMGRPROTOS_H
|
21
|
+
|
22
|
+
#include "fmgr.h"
|
23
|
+
|
24
|
+
extern Datum heap_tableam_handler(PG_FUNCTION_ARGS);
|
25
|
+
extern Datum byteaout(PG_FUNCTION_ARGS);
|
26
|
+
extern Datum charout(PG_FUNCTION_ARGS);
|
27
|
+
extern Datum namein(PG_FUNCTION_ARGS);
|
28
|
+
extern Datum nameout(PG_FUNCTION_ARGS);
|
29
|
+
extern Datum int2in(PG_FUNCTION_ARGS);
|
30
|
+
extern Datum int2out(PG_FUNCTION_ARGS);
|
31
|
+
extern Datum int2vectorin(PG_FUNCTION_ARGS);
|
32
|
+
extern Datum int2vectorout(PG_FUNCTION_ARGS);
|
33
|
+
extern Datum int4in(PG_FUNCTION_ARGS);
|
34
|
+
extern Datum int4out(PG_FUNCTION_ARGS);
|
35
|
+
extern Datum regprocin(PG_FUNCTION_ARGS);
|
36
|
+
extern Datum regprocout(PG_FUNCTION_ARGS);
|
37
|
+
extern Datum textin(PG_FUNCTION_ARGS);
|
38
|
+
extern Datum textout(PG_FUNCTION_ARGS);
|
39
|
+
extern Datum tidin(PG_FUNCTION_ARGS);
|
40
|
+
extern Datum tidout(PG_FUNCTION_ARGS);
|
41
|
+
extern Datum xidin(PG_FUNCTION_ARGS);
|
42
|
+
extern Datum xidout(PG_FUNCTION_ARGS);
|
43
|
+
extern Datum cidin(PG_FUNCTION_ARGS);
|
44
|
+
extern Datum cidout(PG_FUNCTION_ARGS);
|
45
|
+
extern Datum oidvectorin(PG_FUNCTION_ARGS);
|
46
|
+
extern Datum oidvectorout(PG_FUNCTION_ARGS);
|
47
|
+
extern Datum boollt(PG_FUNCTION_ARGS);
|
48
|
+
extern Datum boolgt(PG_FUNCTION_ARGS);
|
49
|
+
extern Datum booleq(PG_FUNCTION_ARGS);
|
50
|
+
extern Datum chareq(PG_FUNCTION_ARGS);
|
51
|
+
extern Datum nameeq(PG_FUNCTION_ARGS);
|
52
|
+
extern Datum int2eq(PG_FUNCTION_ARGS);
|
53
|
+
extern Datum int2lt(PG_FUNCTION_ARGS);
|
54
|
+
extern Datum int4eq(PG_FUNCTION_ARGS);
|
55
|
+
extern Datum int4lt(PG_FUNCTION_ARGS);
|
56
|
+
extern Datum texteq(PG_FUNCTION_ARGS);
|
57
|
+
extern Datum xideq(PG_FUNCTION_ARGS);
|
58
|
+
extern Datum cideq(PG_FUNCTION_ARGS);
|
59
|
+
extern Datum charne(PG_FUNCTION_ARGS);
|
60
|
+
extern Datum charle(PG_FUNCTION_ARGS);
|
61
|
+
extern Datum chargt(PG_FUNCTION_ARGS);
|
62
|
+
extern Datum charge(PG_FUNCTION_ARGS);
|
63
|
+
extern Datum chartoi4(PG_FUNCTION_ARGS);
|
64
|
+
extern Datum i4tochar(PG_FUNCTION_ARGS);
|
65
|
+
extern Datum nameregexeq(PG_FUNCTION_ARGS);
|
66
|
+
extern Datum boolne(PG_FUNCTION_ARGS);
|
67
|
+
extern Datum pg_ddl_command_in(PG_FUNCTION_ARGS);
|
68
|
+
extern Datum pg_ddl_command_out(PG_FUNCTION_ARGS);
|
69
|
+
extern Datum pg_ddl_command_recv(PG_FUNCTION_ARGS);
|
70
|
+
extern Datum pgsql_version(PG_FUNCTION_ARGS);
|
71
|
+
extern Datum pg_ddl_command_send(PG_FUNCTION_ARGS);
|
72
|
+
extern Datum eqsel(PG_FUNCTION_ARGS);
|
73
|
+
extern Datum neqsel(PG_FUNCTION_ARGS);
|
74
|
+
extern Datum scalarltsel(PG_FUNCTION_ARGS);
|
75
|
+
extern Datum scalargtsel(PG_FUNCTION_ARGS);
|
76
|
+
extern Datum eqjoinsel(PG_FUNCTION_ARGS);
|
77
|
+
extern Datum neqjoinsel(PG_FUNCTION_ARGS);
|
78
|
+
extern Datum scalarltjoinsel(PG_FUNCTION_ARGS);
|
79
|
+
extern Datum scalargtjoinsel(PG_FUNCTION_ARGS);
|
80
|
+
extern Datum unknownin(PG_FUNCTION_ARGS);
|
81
|
+
extern Datum unknownout(PG_FUNCTION_ARGS);
|
82
|
+
extern Datum numeric_fac(PG_FUNCTION_ARGS);
|
83
|
+
extern Datum box_above_eq(PG_FUNCTION_ARGS);
|
84
|
+
extern Datum box_below_eq(PG_FUNCTION_ARGS);
|
85
|
+
extern Datum point_in(PG_FUNCTION_ARGS);
|
86
|
+
extern Datum point_out(PG_FUNCTION_ARGS);
|
87
|
+
extern Datum lseg_in(PG_FUNCTION_ARGS);
|
88
|
+
extern Datum lseg_out(PG_FUNCTION_ARGS);
|
89
|
+
extern Datum path_in(PG_FUNCTION_ARGS);
|
90
|
+
extern Datum path_out(PG_FUNCTION_ARGS);
|
91
|
+
extern Datum box_in(PG_FUNCTION_ARGS);
|
92
|
+
extern Datum box_out(PG_FUNCTION_ARGS);
|
93
|
+
extern Datum box_overlap(PG_FUNCTION_ARGS);
|
94
|
+
extern Datum box_ge(PG_FUNCTION_ARGS);
|
95
|
+
extern Datum box_gt(PG_FUNCTION_ARGS);
|
96
|
+
extern Datum box_eq(PG_FUNCTION_ARGS);
|
97
|
+
extern Datum box_lt(PG_FUNCTION_ARGS);
|
98
|
+
extern Datum box_le(PG_FUNCTION_ARGS);
|
99
|
+
extern Datum point_above(PG_FUNCTION_ARGS);
|
100
|
+
extern Datum point_left(PG_FUNCTION_ARGS);
|
101
|
+
extern Datum point_right(PG_FUNCTION_ARGS);
|
102
|
+
extern Datum point_below(PG_FUNCTION_ARGS);
|
103
|
+
extern Datum point_eq(PG_FUNCTION_ARGS);
|
104
|
+
extern Datum on_pb(PG_FUNCTION_ARGS);
|
105
|
+
extern Datum on_ppath(PG_FUNCTION_ARGS);
|
106
|
+
extern Datum box_center(PG_FUNCTION_ARGS);
|
107
|
+
extern Datum areasel(PG_FUNCTION_ARGS);
|
108
|
+
extern Datum areajoinsel(PG_FUNCTION_ARGS);
|
109
|
+
extern Datum int4mul(PG_FUNCTION_ARGS);
|
110
|
+
extern Datum int4ne(PG_FUNCTION_ARGS);
|
111
|
+
extern Datum int2ne(PG_FUNCTION_ARGS);
|
112
|
+
extern Datum int2gt(PG_FUNCTION_ARGS);
|
113
|
+
extern Datum int4gt(PG_FUNCTION_ARGS);
|
114
|
+
extern Datum int2le(PG_FUNCTION_ARGS);
|
115
|
+
extern Datum int4le(PG_FUNCTION_ARGS);
|
116
|
+
extern Datum int4ge(PG_FUNCTION_ARGS);
|
117
|
+
extern Datum int2ge(PG_FUNCTION_ARGS);
|
118
|
+
extern Datum int2mul(PG_FUNCTION_ARGS);
|
119
|
+
extern Datum int2div(PG_FUNCTION_ARGS);
|
120
|
+
extern Datum int4div(PG_FUNCTION_ARGS);
|
121
|
+
extern Datum int2mod(PG_FUNCTION_ARGS);
|
122
|
+
extern Datum int4mod(PG_FUNCTION_ARGS);
|
123
|
+
extern Datum textne(PG_FUNCTION_ARGS);
|
124
|
+
extern Datum int24eq(PG_FUNCTION_ARGS);
|
125
|
+
extern Datum int42eq(PG_FUNCTION_ARGS);
|
126
|
+
extern Datum int24lt(PG_FUNCTION_ARGS);
|
127
|
+
extern Datum int42lt(PG_FUNCTION_ARGS);
|
128
|
+
extern Datum int24gt(PG_FUNCTION_ARGS);
|
129
|
+
extern Datum int42gt(PG_FUNCTION_ARGS);
|
130
|
+
extern Datum int24ne(PG_FUNCTION_ARGS);
|
131
|
+
extern Datum int42ne(PG_FUNCTION_ARGS);
|
132
|
+
extern Datum int24le(PG_FUNCTION_ARGS);
|
133
|
+
extern Datum int42le(PG_FUNCTION_ARGS);
|
134
|
+
extern Datum int24ge(PG_FUNCTION_ARGS);
|
135
|
+
extern Datum int42ge(PG_FUNCTION_ARGS);
|
136
|
+
extern Datum int24mul(PG_FUNCTION_ARGS);
|
137
|
+
extern Datum int42mul(PG_FUNCTION_ARGS);
|
138
|
+
extern Datum int24div(PG_FUNCTION_ARGS);
|
139
|
+
extern Datum int42div(PG_FUNCTION_ARGS);
|
140
|
+
extern Datum int2pl(PG_FUNCTION_ARGS);
|
141
|
+
extern Datum int4pl(PG_FUNCTION_ARGS);
|
142
|
+
extern Datum int24pl(PG_FUNCTION_ARGS);
|
143
|
+
extern Datum int42pl(PG_FUNCTION_ARGS);
|
144
|
+
extern Datum int2mi(PG_FUNCTION_ARGS);
|
145
|
+
extern Datum int4mi(PG_FUNCTION_ARGS);
|
146
|
+
extern Datum int24mi(PG_FUNCTION_ARGS);
|
147
|
+
extern Datum int42mi(PG_FUNCTION_ARGS);
|
148
|
+
extern Datum oideq(PG_FUNCTION_ARGS);
|
149
|
+
extern Datum oidne(PG_FUNCTION_ARGS);
|
150
|
+
extern Datum box_same(PG_FUNCTION_ARGS);
|
151
|
+
extern Datum box_contain(PG_FUNCTION_ARGS);
|
152
|
+
extern Datum box_left(PG_FUNCTION_ARGS);
|
153
|
+
extern Datum box_overleft(PG_FUNCTION_ARGS);
|
154
|
+
extern Datum box_overright(PG_FUNCTION_ARGS);
|
155
|
+
extern Datum box_right(PG_FUNCTION_ARGS);
|
156
|
+
extern Datum box_contained(PG_FUNCTION_ARGS);
|
157
|
+
extern Datum box_contain_pt(PG_FUNCTION_ARGS);
|
158
|
+
extern Datum pg_node_tree_in(PG_FUNCTION_ARGS);
|
159
|
+
extern Datum pg_node_tree_out(PG_FUNCTION_ARGS);
|
160
|
+
extern Datum pg_node_tree_recv(PG_FUNCTION_ARGS);
|
161
|
+
extern Datum pg_node_tree_send(PG_FUNCTION_ARGS);
|
162
|
+
extern Datum float4in(PG_FUNCTION_ARGS);
|
163
|
+
extern Datum float4out(PG_FUNCTION_ARGS);
|
164
|
+
extern Datum float4mul(PG_FUNCTION_ARGS);
|
165
|
+
extern Datum float4div(PG_FUNCTION_ARGS);
|
166
|
+
extern Datum float4pl(PG_FUNCTION_ARGS);
|
167
|
+
extern Datum float4mi(PG_FUNCTION_ARGS);
|
168
|
+
extern Datum float4um(PG_FUNCTION_ARGS);
|
169
|
+
extern Datum float4abs(PG_FUNCTION_ARGS);
|
170
|
+
extern Datum float4_accum(PG_FUNCTION_ARGS);
|
171
|
+
extern Datum float4larger(PG_FUNCTION_ARGS);
|
172
|
+
extern Datum float4smaller(PG_FUNCTION_ARGS);
|
173
|
+
extern Datum int4um(PG_FUNCTION_ARGS);
|
174
|
+
extern Datum int2um(PG_FUNCTION_ARGS);
|
175
|
+
extern Datum float8in(PG_FUNCTION_ARGS);
|
176
|
+
extern Datum float8out(PG_FUNCTION_ARGS);
|
177
|
+
extern Datum float8mul(PG_FUNCTION_ARGS);
|
178
|
+
extern Datum float8div(PG_FUNCTION_ARGS);
|
179
|
+
extern Datum float8pl(PG_FUNCTION_ARGS);
|
180
|
+
extern Datum float8mi(PG_FUNCTION_ARGS);
|
181
|
+
extern Datum float8um(PG_FUNCTION_ARGS);
|
182
|
+
extern Datum float8abs(PG_FUNCTION_ARGS);
|
183
|
+
extern Datum float8_accum(PG_FUNCTION_ARGS);
|
184
|
+
extern Datum float8larger(PG_FUNCTION_ARGS);
|
185
|
+
extern Datum float8smaller(PG_FUNCTION_ARGS);
|
186
|
+
extern Datum lseg_center(PG_FUNCTION_ARGS);
|
187
|
+
extern Datum path_center(PG_FUNCTION_ARGS);
|
188
|
+
extern Datum poly_center(PG_FUNCTION_ARGS);
|
189
|
+
extern Datum dround(PG_FUNCTION_ARGS);
|
190
|
+
extern Datum dtrunc(PG_FUNCTION_ARGS);
|
191
|
+
extern Datum dsqrt(PG_FUNCTION_ARGS);
|
192
|
+
extern Datum dcbrt(PG_FUNCTION_ARGS);
|
193
|
+
extern Datum dpow(PG_FUNCTION_ARGS);
|
194
|
+
extern Datum dexp(PG_FUNCTION_ARGS);
|
195
|
+
extern Datum dlog1(PG_FUNCTION_ARGS);
|
196
|
+
extern Datum i2tod(PG_FUNCTION_ARGS);
|
197
|
+
extern Datum i2tof(PG_FUNCTION_ARGS);
|
198
|
+
extern Datum dtoi2(PG_FUNCTION_ARGS);
|
199
|
+
extern Datum ftoi2(PG_FUNCTION_ARGS);
|
200
|
+
extern Datum line_distance(PG_FUNCTION_ARGS);
|
201
|
+
extern Datum nameeqtext(PG_FUNCTION_ARGS);
|
202
|
+
extern Datum namelttext(PG_FUNCTION_ARGS);
|
203
|
+
extern Datum nameletext(PG_FUNCTION_ARGS);
|
204
|
+
extern Datum namegetext(PG_FUNCTION_ARGS);
|
205
|
+
extern Datum namegttext(PG_FUNCTION_ARGS);
|
206
|
+
extern Datum namenetext(PG_FUNCTION_ARGS);
|
207
|
+
extern Datum btnametextcmp(PG_FUNCTION_ARGS);
|
208
|
+
extern Datum texteqname(PG_FUNCTION_ARGS);
|
209
|
+
extern Datum textltname(PG_FUNCTION_ARGS);
|
210
|
+
extern Datum textlename(PG_FUNCTION_ARGS);
|
211
|
+
extern Datum textgename(PG_FUNCTION_ARGS);
|
212
|
+
extern Datum textgtname(PG_FUNCTION_ARGS);
|
213
|
+
extern Datum textnename(PG_FUNCTION_ARGS);
|
214
|
+
extern Datum bttextnamecmp(PG_FUNCTION_ARGS);
|
215
|
+
extern Datum nameconcatoid(PG_FUNCTION_ARGS);
|
216
|
+
extern Datum table_am_handler_in(PG_FUNCTION_ARGS);
|
217
|
+
extern Datum table_am_handler_out(PG_FUNCTION_ARGS);
|
218
|
+
extern Datum timeofday(PG_FUNCTION_ARGS);
|
219
|
+
extern Datum pg_nextoid(PG_FUNCTION_ARGS);
|
220
|
+
extern Datum float8_combine(PG_FUNCTION_ARGS);
|
221
|
+
extern Datum inter_sl(PG_FUNCTION_ARGS);
|
222
|
+
extern Datum inter_lb(PG_FUNCTION_ARGS);
|
223
|
+
extern Datum float48mul(PG_FUNCTION_ARGS);
|
224
|
+
extern Datum float48div(PG_FUNCTION_ARGS);
|
225
|
+
extern Datum float48pl(PG_FUNCTION_ARGS);
|
226
|
+
extern Datum float48mi(PG_FUNCTION_ARGS);
|
227
|
+
extern Datum float84mul(PG_FUNCTION_ARGS);
|
228
|
+
extern Datum float84div(PG_FUNCTION_ARGS);
|
229
|
+
extern Datum float84pl(PG_FUNCTION_ARGS);
|
230
|
+
extern Datum float84mi(PG_FUNCTION_ARGS);
|
231
|
+
extern Datum float4eq(PG_FUNCTION_ARGS);
|
232
|
+
extern Datum float4ne(PG_FUNCTION_ARGS);
|
233
|
+
extern Datum float4lt(PG_FUNCTION_ARGS);
|
234
|
+
extern Datum float4le(PG_FUNCTION_ARGS);
|
235
|
+
extern Datum float4gt(PG_FUNCTION_ARGS);
|
236
|
+
extern Datum float4ge(PG_FUNCTION_ARGS);
|
237
|
+
extern Datum float8eq(PG_FUNCTION_ARGS);
|
238
|
+
extern Datum float8ne(PG_FUNCTION_ARGS);
|
239
|
+
extern Datum float8lt(PG_FUNCTION_ARGS);
|
240
|
+
extern Datum float8le(PG_FUNCTION_ARGS);
|
241
|
+
extern Datum float8gt(PG_FUNCTION_ARGS);
|
242
|
+
extern Datum float8ge(PG_FUNCTION_ARGS);
|
243
|
+
extern Datum float48eq(PG_FUNCTION_ARGS);
|
244
|
+
extern Datum float48ne(PG_FUNCTION_ARGS);
|
245
|
+
extern Datum float48lt(PG_FUNCTION_ARGS);
|
246
|
+
extern Datum float48le(PG_FUNCTION_ARGS);
|
247
|
+
extern Datum float48gt(PG_FUNCTION_ARGS);
|
248
|
+
extern Datum float48ge(PG_FUNCTION_ARGS);
|
249
|
+
extern Datum float84eq(PG_FUNCTION_ARGS);
|
250
|
+
extern Datum float84ne(PG_FUNCTION_ARGS);
|
251
|
+
extern Datum float84lt(PG_FUNCTION_ARGS);
|
252
|
+
extern Datum float84le(PG_FUNCTION_ARGS);
|
253
|
+
extern Datum float84gt(PG_FUNCTION_ARGS);
|
254
|
+
extern Datum float84ge(PG_FUNCTION_ARGS);
|
255
|
+
extern Datum ftod(PG_FUNCTION_ARGS);
|
256
|
+
extern Datum dtof(PG_FUNCTION_ARGS);
|
257
|
+
extern Datum i2toi4(PG_FUNCTION_ARGS);
|
258
|
+
extern Datum i4toi2(PG_FUNCTION_ARGS);
|
259
|
+
extern Datum pg_jit_available(PG_FUNCTION_ARGS);
|
260
|
+
extern Datum i4tod(PG_FUNCTION_ARGS);
|
261
|
+
extern Datum dtoi4(PG_FUNCTION_ARGS);
|
262
|
+
extern Datum i4tof(PG_FUNCTION_ARGS);
|
263
|
+
extern Datum ftoi4(PG_FUNCTION_ARGS);
|
264
|
+
extern Datum width_bucket_float8(PG_FUNCTION_ARGS);
|
265
|
+
extern Datum json_in(PG_FUNCTION_ARGS);
|
266
|
+
extern Datum json_out(PG_FUNCTION_ARGS);
|
267
|
+
extern Datum json_recv(PG_FUNCTION_ARGS);
|
268
|
+
extern Datum json_send(PG_FUNCTION_ARGS);
|
269
|
+
extern Datum index_am_handler_in(PG_FUNCTION_ARGS);
|
270
|
+
extern Datum index_am_handler_out(PG_FUNCTION_ARGS);
|
271
|
+
extern Datum hashmacaddr8(PG_FUNCTION_ARGS);
|
272
|
+
extern Datum hash_aclitem(PG_FUNCTION_ARGS);
|
273
|
+
extern Datum bthandler(PG_FUNCTION_ARGS);
|
274
|
+
extern Datum hashhandler(PG_FUNCTION_ARGS);
|
275
|
+
extern Datum gisthandler(PG_FUNCTION_ARGS);
|
276
|
+
extern Datum ginhandler(PG_FUNCTION_ARGS);
|
277
|
+
extern Datum spghandler(PG_FUNCTION_ARGS);
|
278
|
+
extern Datum brinhandler(PG_FUNCTION_ARGS);
|
279
|
+
extern Datum scalarlesel(PG_FUNCTION_ARGS);
|
280
|
+
extern Datum scalargesel(PG_FUNCTION_ARGS);
|
281
|
+
extern Datum amvalidate(PG_FUNCTION_ARGS);
|
282
|
+
extern Datum poly_same(PG_FUNCTION_ARGS);
|
283
|
+
extern Datum poly_contain(PG_FUNCTION_ARGS);
|
284
|
+
extern Datum poly_left(PG_FUNCTION_ARGS);
|
285
|
+
extern Datum poly_overleft(PG_FUNCTION_ARGS);
|
286
|
+
extern Datum poly_overright(PG_FUNCTION_ARGS);
|
287
|
+
extern Datum poly_right(PG_FUNCTION_ARGS);
|
288
|
+
extern Datum poly_contained(PG_FUNCTION_ARGS);
|
289
|
+
extern Datum poly_overlap(PG_FUNCTION_ARGS);
|
290
|
+
extern Datum poly_in(PG_FUNCTION_ARGS);
|
291
|
+
extern Datum poly_out(PG_FUNCTION_ARGS);
|
292
|
+
extern Datum btint2cmp(PG_FUNCTION_ARGS);
|
293
|
+
extern Datum btint4cmp(PG_FUNCTION_ARGS);
|
294
|
+
extern Datum btfloat4cmp(PG_FUNCTION_ARGS);
|
295
|
+
extern Datum btfloat8cmp(PG_FUNCTION_ARGS);
|
296
|
+
extern Datum btoidcmp(PG_FUNCTION_ARGS);
|
297
|
+
extern Datum dist_bp(PG_FUNCTION_ARGS);
|
298
|
+
extern Datum btcharcmp(PG_FUNCTION_ARGS);
|
299
|
+
extern Datum btnamecmp(PG_FUNCTION_ARGS);
|
300
|
+
extern Datum bttextcmp(PG_FUNCTION_ARGS);
|
301
|
+
extern Datum lseg_distance(PG_FUNCTION_ARGS);
|
302
|
+
extern Datum lseg_interpt(PG_FUNCTION_ARGS);
|
303
|
+
extern Datum dist_ps(PG_FUNCTION_ARGS);
|
304
|
+
extern Datum dist_pb(PG_FUNCTION_ARGS);
|
305
|
+
extern Datum dist_sb(PG_FUNCTION_ARGS);
|
306
|
+
extern Datum close_ps(PG_FUNCTION_ARGS);
|
307
|
+
extern Datum close_pb(PG_FUNCTION_ARGS);
|
308
|
+
extern Datum close_sb(PG_FUNCTION_ARGS);
|
309
|
+
extern Datum on_ps(PG_FUNCTION_ARGS);
|
310
|
+
extern Datum path_distance(PG_FUNCTION_ARGS);
|
311
|
+
extern Datum dist_ppath(PG_FUNCTION_ARGS);
|
312
|
+
extern Datum on_sb(PG_FUNCTION_ARGS);
|
313
|
+
extern Datum inter_sb(PG_FUNCTION_ARGS);
|
314
|
+
extern Datum text_to_array_null(PG_FUNCTION_ARGS);
|
315
|
+
extern Datum cash_cmp(PG_FUNCTION_ARGS);
|
316
|
+
extern Datum array_append(PG_FUNCTION_ARGS);
|
317
|
+
extern Datum array_prepend(PG_FUNCTION_ARGS);
|
318
|
+
extern Datum dist_sp(PG_FUNCTION_ARGS);
|
319
|
+
extern Datum dist_bs(PG_FUNCTION_ARGS);
|
320
|
+
extern Datum btarraycmp(PG_FUNCTION_ARGS);
|
321
|
+
extern Datum array_cat(PG_FUNCTION_ARGS);
|
322
|
+
extern Datum array_to_text_null(PG_FUNCTION_ARGS);
|
323
|
+
extern Datum scalarlejoinsel(PG_FUNCTION_ARGS);
|
324
|
+
extern Datum array_ne(PG_FUNCTION_ARGS);
|
325
|
+
extern Datum array_lt(PG_FUNCTION_ARGS);
|
326
|
+
extern Datum array_gt(PG_FUNCTION_ARGS);
|
327
|
+
extern Datum array_le(PG_FUNCTION_ARGS);
|
328
|
+
extern Datum text_to_array(PG_FUNCTION_ARGS);
|
329
|
+
extern Datum array_to_text(PG_FUNCTION_ARGS);
|
330
|
+
extern Datum array_ge(PG_FUNCTION_ARGS);
|
331
|
+
extern Datum scalargejoinsel(PG_FUNCTION_ARGS);
|
332
|
+
extern Datum hashmacaddr(PG_FUNCTION_ARGS);
|
333
|
+
extern Datum hashtext(PG_FUNCTION_ARGS);
|
334
|
+
extern Datum rtrim1(PG_FUNCTION_ARGS);
|
335
|
+
extern Datum btoidvectorcmp(PG_FUNCTION_ARGS);
|
336
|
+
extern Datum name_text(PG_FUNCTION_ARGS);
|
337
|
+
extern Datum text_name(PG_FUNCTION_ARGS);
|
338
|
+
extern Datum name_bpchar(PG_FUNCTION_ARGS);
|
339
|
+
extern Datum bpchar_name(PG_FUNCTION_ARGS);
|
340
|
+
extern Datum dist_pathp(PG_FUNCTION_ARGS);
|
341
|
+
extern Datum hashinet(PG_FUNCTION_ARGS);
|
342
|
+
extern Datum hashint4extended(PG_FUNCTION_ARGS);
|
343
|
+
extern Datum hash_numeric(PG_FUNCTION_ARGS);
|
344
|
+
extern Datum macaddr_in(PG_FUNCTION_ARGS);
|
345
|
+
extern Datum macaddr_out(PG_FUNCTION_ARGS);
|
346
|
+
extern Datum pg_num_nulls(PG_FUNCTION_ARGS);
|
347
|
+
extern Datum pg_num_nonnulls(PG_FUNCTION_ARGS);
|
348
|
+
extern Datum hashint2extended(PG_FUNCTION_ARGS);
|
349
|
+
extern Datum hashint8extended(PG_FUNCTION_ARGS);
|
350
|
+
extern Datum hashfloat4extended(PG_FUNCTION_ARGS);
|
351
|
+
extern Datum hashfloat8extended(PG_FUNCTION_ARGS);
|
352
|
+
extern Datum hashoidextended(PG_FUNCTION_ARGS);
|
353
|
+
extern Datum hashcharextended(PG_FUNCTION_ARGS);
|
354
|
+
extern Datum hashnameextended(PG_FUNCTION_ARGS);
|
355
|
+
extern Datum hashtextextended(PG_FUNCTION_ARGS);
|
356
|
+
extern Datum hashint2(PG_FUNCTION_ARGS);
|
357
|
+
extern Datum hashint4(PG_FUNCTION_ARGS);
|
358
|
+
extern Datum hashfloat4(PG_FUNCTION_ARGS);
|
359
|
+
extern Datum hashfloat8(PG_FUNCTION_ARGS);
|
360
|
+
extern Datum hashoid(PG_FUNCTION_ARGS);
|
361
|
+
extern Datum hashchar(PG_FUNCTION_ARGS);
|
362
|
+
extern Datum hashname(PG_FUNCTION_ARGS);
|
363
|
+
extern Datum hashvarlena(PG_FUNCTION_ARGS);
|
364
|
+
extern Datum hashoidvector(PG_FUNCTION_ARGS);
|
365
|
+
extern Datum text_larger(PG_FUNCTION_ARGS);
|
366
|
+
extern Datum text_smaller(PG_FUNCTION_ARGS);
|
367
|
+
extern Datum int8in(PG_FUNCTION_ARGS);
|
368
|
+
extern Datum int8out(PG_FUNCTION_ARGS);
|
369
|
+
extern Datum int8um(PG_FUNCTION_ARGS);
|
370
|
+
extern Datum int8pl(PG_FUNCTION_ARGS);
|
371
|
+
extern Datum int8mi(PG_FUNCTION_ARGS);
|
372
|
+
extern Datum int8mul(PG_FUNCTION_ARGS);
|
373
|
+
extern Datum int8div(PG_FUNCTION_ARGS);
|
374
|
+
extern Datum int8eq(PG_FUNCTION_ARGS);
|
375
|
+
extern Datum int8ne(PG_FUNCTION_ARGS);
|
376
|
+
extern Datum int8lt(PG_FUNCTION_ARGS);
|
377
|
+
extern Datum int8gt(PG_FUNCTION_ARGS);
|
378
|
+
extern Datum int8le(PG_FUNCTION_ARGS);
|
379
|
+
extern Datum int8ge(PG_FUNCTION_ARGS);
|
380
|
+
extern Datum int84eq(PG_FUNCTION_ARGS);
|
381
|
+
extern Datum int84ne(PG_FUNCTION_ARGS);
|
382
|
+
extern Datum int84lt(PG_FUNCTION_ARGS);
|
383
|
+
extern Datum int84gt(PG_FUNCTION_ARGS);
|
384
|
+
extern Datum int84le(PG_FUNCTION_ARGS);
|
385
|
+
extern Datum int84ge(PG_FUNCTION_ARGS);
|
386
|
+
extern Datum int84(PG_FUNCTION_ARGS);
|
387
|
+
extern Datum int48(PG_FUNCTION_ARGS);
|
388
|
+
extern Datum i8tod(PG_FUNCTION_ARGS);
|
389
|
+
extern Datum dtoi8(PG_FUNCTION_ARGS);
|
390
|
+
extern Datum array_larger(PG_FUNCTION_ARGS);
|
391
|
+
extern Datum array_smaller(PG_FUNCTION_ARGS);
|
392
|
+
extern Datum inet_abbrev(PG_FUNCTION_ARGS);
|
393
|
+
extern Datum cidr_abbrev(PG_FUNCTION_ARGS);
|
394
|
+
extern Datum inet_set_masklen(PG_FUNCTION_ARGS);
|
395
|
+
extern Datum oidvectorne(PG_FUNCTION_ARGS);
|
396
|
+
extern Datum hash_array(PG_FUNCTION_ARGS);
|
397
|
+
extern Datum cidr_set_masklen(PG_FUNCTION_ARGS);
|
398
|
+
extern Datum pg_indexam_has_property(PG_FUNCTION_ARGS);
|
399
|
+
extern Datum pg_index_has_property(PG_FUNCTION_ARGS);
|
400
|
+
extern Datum pg_index_column_has_property(PG_FUNCTION_ARGS);
|
401
|
+
extern Datum i8tof(PG_FUNCTION_ARGS);
|
402
|
+
extern Datum ftoi8(PG_FUNCTION_ARGS);
|
403
|
+
extern Datum namelt(PG_FUNCTION_ARGS);
|
404
|
+
extern Datum namele(PG_FUNCTION_ARGS);
|
405
|
+
extern Datum namegt(PG_FUNCTION_ARGS);
|
406
|
+
extern Datum namege(PG_FUNCTION_ARGS);
|
407
|
+
extern Datum namene(PG_FUNCTION_ARGS);
|
408
|
+
extern Datum bpchar(PG_FUNCTION_ARGS);
|
409
|
+
extern Datum varchar(PG_FUNCTION_ARGS);
|
410
|
+
extern Datum pg_indexam_progress_phasename(PG_FUNCTION_ARGS);
|
411
|
+
extern Datum oidvectorlt(PG_FUNCTION_ARGS);
|
412
|
+
extern Datum oidvectorle(PG_FUNCTION_ARGS);
|
413
|
+
extern Datum oidvectoreq(PG_FUNCTION_ARGS);
|
414
|
+
extern Datum oidvectorge(PG_FUNCTION_ARGS);
|
415
|
+
extern Datum oidvectorgt(PG_FUNCTION_ARGS);
|
416
|
+
extern Datum network_network(PG_FUNCTION_ARGS);
|
417
|
+
extern Datum network_netmask(PG_FUNCTION_ARGS);
|
418
|
+
extern Datum network_masklen(PG_FUNCTION_ARGS);
|
419
|
+
extern Datum network_broadcast(PG_FUNCTION_ARGS);
|
420
|
+
extern Datum network_host(PG_FUNCTION_ARGS);
|
421
|
+
extern Datum dist_lp(PG_FUNCTION_ARGS);
|
422
|
+
extern Datum dist_bl(PG_FUNCTION_ARGS);
|
423
|
+
extern Datum dist_ls(PG_FUNCTION_ARGS);
|
424
|
+
extern Datum current_user(PG_FUNCTION_ARGS);
|
425
|
+
extern Datum network_family(PG_FUNCTION_ARGS);
|
426
|
+
extern Datum int82(PG_FUNCTION_ARGS);
|
427
|
+
extern Datum be_lo_create(PG_FUNCTION_ARGS);
|
428
|
+
extern Datum oidlt(PG_FUNCTION_ARGS);
|
429
|
+
extern Datum oidle(PG_FUNCTION_ARGS);
|
430
|
+
extern Datum byteaoctetlen(PG_FUNCTION_ARGS);
|
431
|
+
extern Datum byteaGetByte(PG_FUNCTION_ARGS);
|
432
|
+
extern Datum byteaSetByte(PG_FUNCTION_ARGS);
|
433
|
+
extern Datum byteaGetBit(PG_FUNCTION_ARGS);
|
434
|
+
extern Datum byteaSetBit(PG_FUNCTION_ARGS);
|
435
|
+
extern Datum dist_pl(PG_FUNCTION_ARGS);
|
436
|
+
extern Datum dist_lb(PG_FUNCTION_ARGS);
|
437
|
+
extern Datum dist_sl(PG_FUNCTION_ARGS);
|
438
|
+
extern Datum dist_cpoly(PG_FUNCTION_ARGS);
|
439
|
+
extern Datum poly_distance(PG_FUNCTION_ARGS);
|
440
|
+
extern Datum network_show(PG_FUNCTION_ARGS);
|
441
|
+
extern Datum text_lt(PG_FUNCTION_ARGS);
|
442
|
+
extern Datum text_le(PG_FUNCTION_ARGS);
|
443
|
+
extern Datum text_gt(PG_FUNCTION_ARGS);
|
444
|
+
extern Datum text_ge(PG_FUNCTION_ARGS);
|
445
|
+
extern Datum array_eq(PG_FUNCTION_ARGS);
|
446
|
+
extern Datum session_user(PG_FUNCTION_ARGS);
|
447
|
+
extern Datum array_dims(PG_FUNCTION_ARGS);
|
448
|
+
extern Datum array_ndims(PG_FUNCTION_ARGS);
|
449
|
+
extern Datum byteaoverlay(PG_FUNCTION_ARGS);
|
450
|
+
extern Datum array_in(PG_FUNCTION_ARGS);
|
451
|
+
extern Datum array_out(PG_FUNCTION_ARGS);
|
452
|
+
extern Datum byteaoverlay_no_len(PG_FUNCTION_ARGS);
|
453
|
+
extern Datum macaddr_trunc(PG_FUNCTION_ARGS);
|
454
|
+
extern Datum int28(PG_FUNCTION_ARGS);
|
455
|
+
extern Datum be_lo_import(PG_FUNCTION_ARGS);
|
456
|
+
extern Datum be_lo_export(PG_FUNCTION_ARGS);
|
457
|
+
extern Datum int4inc(PG_FUNCTION_ARGS);
|
458
|
+
extern Datum be_lo_import_with_oid(PG_FUNCTION_ARGS);
|
459
|
+
extern Datum int4larger(PG_FUNCTION_ARGS);
|
460
|
+
extern Datum int4smaller(PG_FUNCTION_ARGS);
|
461
|
+
extern Datum int2larger(PG_FUNCTION_ARGS);
|
462
|
+
extern Datum int2smaller(PG_FUNCTION_ARGS);
|
463
|
+
extern Datum hashvarlenaextended(PG_FUNCTION_ARGS);
|
464
|
+
extern Datum hashoidvectorextended(PG_FUNCTION_ARGS);
|
465
|
+
extern Datum hash_aclitem_extended(PG_FUNCTION_ARGS);
|
466
|
+
extern Datum hashmacaddrextended(PG_FUNCTION_ARGS);
|
467
|
+
extern Datum hashinetextended(PG_FUNCTION_ARGS);
|
468
|
+
extern Datum hash_numeric_extended(PG_FUNCTION_ARGS);
|
469
|
+
extern Datum hashmacaddr8extended(PG_FUNCTION_ARGS);
|
470
|
+
extern Datum hash_array_extended(PG_FUNCTION_ARGS);
|
471
|
+
extern Datum dist_polyc(PG_FUNCTION_ARGS);
|
472
|
+
extern Datum pg_client_encoding(PG_FUNCTION_ARGS);
|
473
|
+
extern Datum current_query(PG_FUNCTION_ARGS);
|
474
|
+
extern Datum macaddr_eq(PG_FUNCTION_ARGS);
|
475
|
+
extern Datum macaddr_lt(PG_FUNCTION_ARGS);
|
476
|
+
extern Datum macaddr_le(PG_FUNCTION_ARGS);
|
477
|
+
extern Datum macaddr_gt(PG_FUNCTION_ARGS);
|
478
|
+
extern Datum macaddr_ge(PG_FUNCTION_ARGS);
|
479
|
+
extern Datum macaddr_ne(PG_FUNCTION_ARGS);
|
480
|
+
extern Datum macaddr_cmp(PG_FUNCTION_ARGS);
|
481
|
+
extern Datum int82pl(PG_FUNCTION_ARGS);
|
482
|
+
extern Datum int82mi(PG_FUNCTION_ARGS);
|
483
|
+
extern Datum int82mul(PG_FUNCTION_ARGS);
|
484
|
+
extern Datum int82div(PG_FUNCTION_ARGS);
|
485
|
+
extern Datum int28pl(PG_FUNCTION_ARGS);
|
486
|
+
extern Datum btint8cmp(PG_FUNCTION_ARGS);
|
487
|
+
extern Datum cash_mul_flt4(PG_FUNCTION_ARGS);
|
488
|
+
extern Datum cash_div_flt4(PG_FUNCTION_ARGS);
|
489
|
+
extern Datum flt4_mul_cash(PG_FUNCTION_ARGS);
|
490
|
+
extern Datum textpos(PG_FUNCTION_ARGS);
|
491
|
+
extern Datum textlike(PG_FUNCTION_ARGS);
|
492
|
+
extern Datum textnlike(PG_FUNCTION_ARGS);
|
493
|
+
extern Datum int48eq(PG_FUNCTION_ARGS);
|
494
|
+
extern Datum int48ne(PG_FUNCTION_ARGS);
|
495
|
+
extern Datum int48lt(PG_FUNCTION_ARGS);
|
496
|
+
extern Datum int48gt(PG_FUNCTION_ARGS);
|
497
|
+
extern Datum int48le(PG_FUNCTION_ARGS);
|
498
|
+
extern Datum int48ge(PG_FUNCTION_ARGS);
|
499
|
+
extern Datum namelike(PG_FUNCTION_ARGS);
|
500
|
+
extern Datum namenlike(PG_FUNCTION_ARGS);
|
501
|
+
extern Datum char_bpchar(PG_FUNCTION_ARGS);
|
502
|
+
extern Datum current_database(PG_FUNCTION_ARGS);
|
503
|
+
extern Datum int4_mul_cash(PG_FUNCTION_ARGS);
|
504
|
+
extern Datum int2_mul_cash(PG_FUNCTION_ARGS);
|
505
|
+
extern Datum cash_mul_int4(PG_FUNCTION_ARGS);
|
506
|
+
extern Datum cash_div_int4(PG_FUNCTION_ARGS);
|
507
|
+
extern Datum cash_mul_int2(PG_FUNCTION_ARGS);
|
508
|
+
extern Datum cash_div_int2(PG_FUNCTION_ARGS);
|
509
|
+
extern Datum lower(PG_FUNCTION_ARGS);
|
510
|
+
extern Datum upper(PG_FUNCTION_ARGS);
|
511
|
+
extern Datum initcap(PG_FUNCTION_ARGS);
|
512
|
+
extern Datum lpad(PG_FUNCTION_ARGS);
|
513
|
+
extern Datum rpad(PG_FUNCTION_ARGS);
|
514
|
+
extern Datum ltrim(PG_FUNCTION_ARGS);
|
515
|
+
extern Datum rtrim(PG_FUNCTION_ARGS);
|
516
|
+
extern Datum text_substr(PG_FUNCTION_ARGS);
|
517
|
+
extern Datum translate(PG_FUNCTION_ARGS);
|
518
|
+
extern Datum ltrim1(PG_FUNCTION_ARGS);
|
519
|
+
extern Datum text_substr_no_len(PG_FUNCTION_ARGS);
|
520
|
+
extern Datum btrim(PG_FUNCTION_ARGS);
|
521
|
+
extern Datum btrim1(PG_FUNCTION_ARGS);
|
522
|
+
extern Datum cash_in(PG_FUNCTION_ARGS);
|
523
|
+
extern Datum cash_out(PG_FUNCTION_ARGS);
|
524
|
+
extern Datum cash_eq(PG_FUNCTION_ARGS);
|
525
|
+
extern Datum cash_ne(PG_FUNCTION_ARGS);
|
526
|
+
extern Datum cash_lt(PG_FUNCTION_ARGS);
|
527
|
+
extern Datum cash_le(PG_FUNCTION_ARGS);
|
528
|
+
extern Datum cash_gt(PG_FUNCTION_ARGS);
|
529
|
+
extern Datum cash_ge(PG_FUNCTION_ARGS);
|
530
|
+
extern Datum cash_pl(PG_FUNCTION_ARGS);
|
531
|
+
extern Datum cash_mi(PG_FUNCTION_ARGS);
|
532
|
+
extern Datum cash_mul_flt8(PG_FUNCTION_ARGS);
|
533
|
+
extern Datum cash_div_flt8(PG_FUNCTION_ARGS);
|
534
|
+
extern Datum cashlarger(PG_FUNCTION_ARGS);
|
535
|
+
extern Datum cashsmaller(PG_FUNCTION_ARGS);
|
536
|
+
extern Datum inet_in(PG_FUNCTION_ARGS);
|
537
|
+
extern Datum inet_out(PG_FUNCTION_ARGS);
|
538
|
+
extern Datum flt8_mul_cash(PG_FUNCTION_ARGS);
|
539
|
+
extern Datum network_eq(PG_FUNCTION_ARGS);
|
540
|
+
extern Datum network_lt(PG_FUNCTION_ARGS);
|
541
|
+
extern Datum network_le(PG_FUNCTION_ARGS);
|
542
|
+
extern Datum network_gt(PG_FUNCTION_ARGS);
|
543
|
+
extern Datum network_ge(PG_FUNCTION_ARGS);
|
544
|
+
extern Datum network_ne(PG_FUNCTION_ARGS);
|
545
|
+
extern Datum network_cmp(PG_FUNCTION_ARGS);
|
546
|
+
extern Datum network_sub(PG_FUNCTION_ARGS);
|
547
|
+
extern Datum network_subeq(PG_FUNCTION_ARGS);
|
548
|
+
extern Datum network_sup(PG_FUNCTION_ARGS);
|
549
|
+
extern Datum network_supeq(PG_FUNCTION_ARGS);
|
550
|
+
extern Datum cash_words(PG_FUNCTION_ARGS);
|
551
|
+
extern Datum generate_series_timestamp(PG_FUNCTION_ARGS);
|
552
|
+
extern Datum generate_series_timestamptz(PG_FUNCTION_ARGS);
|
553
|
+
extern Datum int28mi(PG_FUNCTION_ARGS);
|
554
|
+
extern Datum int28mul(PG_FUNCTION_ARGS);
|
555
|
+
extern Datum text_char(PG_FUNCTION_ARGS);
|
556
|
+
extern Datum int8mod(PG_FUNCTION_ARGS);
|
557
|
+
extern Datum char_text(PG_FUNCTION_ARGS);
|
558
|
+
extern Datum int28div(PG_FUNCTION_ARGS);
|
559
|
+
extern Datum hashint8(PG_FUNCTION_ARGS);
|
560
|
+
extern Datum be_lo_open(PG_FUNCTION_ARGS);
|
561
|
+
extern Datum be_lo_close(PG_FUNCTION_ARGS);
|
562
|
+
extern Datum be_loread(PG_FUNCTION_ARGS);
|
563
|
+
extern Datum be_lowrite(PG_FUNCTION_ARGS);
|
564
|
+
extern Datum be_lo_lseek(PG_FUNCTION_ARGS);
|
565
|
+
extern Datum be_lo_creat(PG_FUNCTION_ARGS);
|
566
|
+
extern Datum be_lo_tell(PG_FUNCTION_ARGS);
|
567
|
+
extern Datum on_pl(PG_FUNCTION_ARGS);
|
568
|
+
extern Datum on_sl(PG_FUNCTION_ARGS);
|
569
|
+
extern Datum close_pl(PG_FUNCTION_ARGS);
|
570
|
+
extern Datum close_sl(PG_FUNCTION_ARGS);
|
571
|
+
extern Datum close_lb(PG_FUNCTION_ARGS);
|
572
|
+
extern Datum be_lo_unlink(PG_FUNCTION_ARGS);
|
573
|
+
extern Datum hashbpcharextended(PG_FUNCTION_ARGS);
|
574
|
+
extern Datum path_inter(PG_FUNCTION_ARGS);
|
575
|
+
extern Datum box_area(PG_FUNCTION_ARGS);
|
576
|
+
extern Datum box_width(PG_FUNCTION_ARGS);
|
577
|
+
extern Datum box_height(PG_FUNCTION_ARGS);
|
578
|
+
extern Datum box_distance(PG_FUNCTION_ARGS);
|
579
|
+
extern Datum path_area(PG_FUNCTION_ARGS);
|
580
|
+
extern Datum box_intersect(PG_FUNCTION_ARGS);
|
581
|
+
extern Datum box_diagonal(PG_FUNCTION_ARGS);
|
582
|
+
extern Datum path_n_lt(PG_FUNCTION_ARGS);
|
583
|
+
extern Datum path_n_gt(PG_FUNCTION_ARGS);
|
584
|
+
extern Datum path_n_eq(PG_FUNCTION_ARGS);
|
585
|
+
extern Datum path_n_le(PG_FUNCTION_ARGS);
|
586
|
+
extern Datum path_n_ge(PG_FUNCTION_ARGS);
|
587
|
+
extern Datum path_length(PG_FUNCTION_ARGS);
|
588
|
+
extern Datum point_ne(PG_FUNCTION_ARGS);
|
589
|
+
extern Datum point_vert(PG_FUNCTION_ARGS);
|
590
|
+
extern Datum point_horiz(PG_FUNCTION_ARGS);
|
591
|
+
extern Datum point_distance(PG_FUNCTION_ARGS);
|
592
|
+
extern Datum point_slope(PG_FUNCTION_ARGS);
|
593
|
+
extern Datum lseg_construct(PG_FUNCTION_ARGS);
|
594
|
+
extern Datum lseg_intersect(PG_FUNCTION_ARGS);
|
595
|
+
extern Datum lseg_parallel(PG_FUNCTION_ARGS);
|
596
|
+
extern Datum lseg_perp(PG_FUNCTION_ARGS);
|
597
|
+
extern Datum lseg_vertical(PG_FUNCTION_ARGS);
|
598
|
+
extern Datum lseg_horizontal(PG_FUNCTION_ARGS);
|
599
|
+
extern Datum lseg_eq(PG_FUNCTION_ARGS);
|
600
|
+
extern Datum be_lo_truncate(PG_FUNCTION_ARGS);
|
601
|
+
extern Datum textlike_support(PG_FUNCTION_ARGS);
|
602
|
+
extern Datum texticregexeq_support(PG_FUNCTION_ARGS);
|
603
|
+
extern Datum texticlike_support(PG_FUNCTION_ARGS);
|
604
|
+
extern Datum timestamptz_izone(PG_FUNCTION_ARGS);
|
605
|
+
extern Datum gist_point_compress(PG_FUNCTION_ARGS);
|
606
|
+
extern Datum aclitemin(PG_FUNCTION_ARGS);
|
607
|
+
extern Datum aclitemout(PG_FUNCTION_ARGS);
|
608
|
+
extern Datum aclinsert(PG_FUNCTION_ARGS);
|
609
|
+
extern Datum aclremove(PG_FUNCTION_ARGS);
|
610
|
+
extern Datum aclcontains(PG_FUNCTION_ARGS);
|
611
|
+
extern Datum getdatabaseencoding(PG_FUNCTION_ARGS);
|
612
|
+
extern Datum bpcharin(PG_FUNCTION_ARGS);
|
613
|
+
extern Datum bpcharout(PG_FUNCTION_ARGS);
|
614
|
+
extern Datum varcharin(PG_FUNCTION_ARGS);
|
615
|
+
extern Datum varcharout(PG_FUNCTION_ARGS);
|
616
|
+
extern Datum bpchareq(PG_FUNCTION_ARGS);
|
617
|
+
extern Datum bpcharlt(PG_FUNCTION_ARGS);
|
618
|
+
extern Datum bpcharle(PG_FUNCTION_ARGS);
|
619
|
+
extern Datum bpchargt(PG_FUNCTION_ARGS);
|
620
|
+
extern Datum bpcharge(PG_FUNCTION_ARGS);
|
621
|
+
extern Datum bpcharne(PG_FUNCTION_ARGS);
|
622
|
+
extern Datum aclitem_eq(PG_FUNCTION_ARGS);
|
623
|
+
extern Datum bpchar_larger(PG_FUNCTION_ARGS);
|
624
|
+
extern Datum bpchar_smaller(PG_FUNCTION_ARGS);
|
625
|
+
extern Datum pg_prepared_xact(PG_FUNCTION_ARGS);
|
626
|
+
extern Datum generate_series_step_int4(PG_FUNCTION_ARGS);
|
627
|
+
extern Datum generate_series_int4(PG_FUNCTION_ARGS);
|
628
|
+
extern Datum generate_series_step_int8(PG_FUNCTION_ARGS);
|
629
|
+
extern Datum generate_series_int8(PG_FUNCTION_ARGS);
|
630
|
+
extern Datum bpcharcmp(PG_FUNCTION_ARGS);
|
631
|
+
extern Datum text_regclass(PG_FUNCTION_ARGS);
|
632
|
+
extern Datum hashbpchar(PG_FUNCTION_ARGS);
|
633
|
+
extern Datum format_type(PG_FUNCTION_ARGS);
|
634
|
+
extern Datum date_in(PG_FUNCTION_ARGS);
|
635
|
+
extern Datum date_out(PG_FUNCTION_ARGS);
|
636
|
+
extern Datum date_eq(PG_FUNCTION_ARGS);
|
637
|
+
extern Datum date_lt(PG_FUNCTION_ARGS);
|
638
|
+
extern Datum date_le(PG_FUNCTION_ARGS);
|
639
|
+
extern Datum date_gt(PG_FUNCTION_ARGS);
|
640
|
+
extern Datum date_ge(PG_FUNCTION_ARGS);
|
641
|
+
extern Datum date_ne(PG_FUNCTION_ARGS);
|
642
|
+
extern Datum date_cmp(PG_FUNCTION_ARGS);
|
643
|
+
extern Datum time_lt(PG_FUNCTION_ARGS);
|
644
|
+
extern Datum time_le(PG_FUNCTION_ARGS);
|
645
|
+
extern Datum time_gt(PG_FUNCTION_ARGS);
|
646
|
+
extern Datum time_ge(PG_FUNCTION_ARGS);
|
647
|
+
extern Datum time_ne(PG_FUNCTION_ARGS);
|
648
|
+
extern Datum time_cmp(PG_FUNCTION_ARGS);
|
649
|
+
extern Datum date_larger(PG_FUNCTION_ARGS);
|
650
|
+
extern Datum date_smaller(PG_FUNCTION_ARGS);
|
651
|
+
extern Datum date_mi(PG_FUNCTION_ARGS);
|
652
|
+
extern Datum date_pli(PG_FUNCTION_ARGS);
|
653
|
+
extern Datum date_mii(PG_FUNCTION_ARGS);
|
654
|
+
extern Datum time_in(PG_FUNCTION_ARGS);
|
655
|
+
extern Datum time_out(PG_FUNCTION_ARGS);
|
656
|
+
extern Datum time_eq(PG_FUNCTION_ARGS);
|
657
|
+
extern Datum circle_add_pt(PG_FUNCTION_ARGS);
|
658
|
+
extern Datum circle_sub_pt(PG_FUNCTION_ARGS);
|
659
|
+
extern Datum circle_mul_pt(PG_FUNCTION_ARGS);
|
660
|
+
extern Datum circle_div_pt(PG_FUNCTION_ARGS);
|
661
|
+
extern Datum timestamptz_in(PG_FUNCTION_ARGS);
|
662
|
+
extern Datum timestamptz_out(PG_FUNCTION_ARGS);
|
663
|
+
extern Datum timestamp_eq(PG_FUNCTION_ARGS);
|
664
|
+
extern Datum timestamp_ne(PG_FUNCTION_ARGS);
|
665
|
+
extern Datum timestamp_lt(PG_FUNCTION_ARGS);
|
666
|
+
extern Datum timestamp_le(PG_FUNCTION_ARGS);
|
667
|
+
extern Datum timestamp_ge(PG_FUNCTION_ARGS);
|
668
|
+
extern Datum timestamp_gt(PG_FUNCTION_ARGS);
|
669
|
+
extern Datum float8_timestamptz(PG_FUNCTION_ARGS);
|
670
|
+
extern Datum timestamptz_zone(PG_FUNCTION_ARGS);
|
671
|
+
extern Datum interval_in(PG_FUNCTION_ARGS);
|
672
|
+
extern Datum interval_out(PG_FUNCTION_ARGS);
|
673
|
+
extern Datum interval_eq(PG_FUNCTION_ARGS);
|
674
|
+
extern Datum interval_ne(PG_FUNCTION_ARGS);
|
675
|
+
extern Datum interval_lt(PG_FUNCTION_ARGS);
|
676
|
+
extern Datum interval_le(PG_FUNCTION_ARGS);
|
677
|
+
extern Datum interval_ge(PG_FUNCTION_ARGS);
|
678
|
+
extern Datum interval_gt(PG_FUNCTION_ARGS);
|
679
|
+
extern Datum interval_um(PG_FUNCTION_ARGS);
|
680
|
+
extern Datum interval_pl(PG_FUNCTION_ARGS);
|
681
|
+
extern Datum interval_mi(PG_FUNCTION_ARGS);
|
682
|
+
extern Datum timestamptz_part(PG_FUNCTION_ARGS);
|
683
|
+
extern Datum interval_part(PG_FUNCTION_ARGS);
|
684
|
+
extern Datum network_subset_support(PG_FUNCTION_ARGS);
|
685
|
+
extern Datum date_timestamptz(PG_FUNCTION_ARGS);
|
686
|
+
extern Datum interval_justify_hours(PG_FUNCTION_ARGS);
|
687
|
+
extern Datum jsonb_path_exists_tz(PG_FUNCTION_ARGS);
|
688
|
+
extern Datum timestamptz_date(PG_FUNCTION_ARGS);
|
689
|
+
extern Datum jsonb_path_query_tz(PG_FUNCTION_ARGS);
|
690
|
+
extern Datum jsonb_path_query_array_tz(PG_FUNCTION_ARGS);
|
691
|
+
extern Datum xid_age(PG_FUNCTION_ARGS);
|
692
|
+
extern Datum timestamp_mi(PG_FUNCTION_ARGS);
|
693
|
+
extern Datum timestamptz_pl_interval(PG_FUNCTION_ARGS);
|
694
|
+
extern Datum timestamptz_mi_interval(PG_FUNCTION_ARGS);
|
695
|
+
extern Datum generate_subscripts(PG_FUNCTION_ARGS);
|
696
|
+
extern Datum generate_subscripts_nodir(PG_FUNCTION_ARGS);
|
697
|
+
extern Datum array_fill(PG_FUNCTION_ARGS);
|
698
|
+
extern Datum dlog10(PG_FUNCTION_ARGS);
|
699
|
+
extern Datum timestamp_smaller(PG_FUNCTION_ARGS);
|
700
|
+
extern Datum timestamp_larger(PG_FUNCTION_ARGS);
|
701
|
+
extern Datum interval_smaller(PG_FUNCTION_ARGS);
|
702
|
+
extern Datum interval_larger(PG_FUNCTION_ARGS);
|
703
|
+
extern Datum timestamptz_age(PG_FUNCTION_ARGS);
|
704
|
+
extern Datum interval_scale(PG_FUNCTION_ARGS);
|
705
|
+
extern Datum timestamptz_trunc(PG_FUNCTION_ARGS);
|
706
|
+
extern Datum interval_trunc(PG_FUNCTION_ARGS);
|
707
|
+
extern Datum int8inc(PG_FUNCTION_ARGS);
|
708
|
+
extern Datum int8abs(PG_FUNCTION_ARGS);
|
709
|
+
extern Datum int8larger(PG_FUNCTION_ARGS);
|
710
|
+
extern Datum int8smaller(PG_FUNCTION_ARGS);
|
711
|
+
extern Datum texticregexeq(PG_FUNCTION_ARGS);
|
712
|
+
extern Datum texticregexne(PG_FUNCTION_ARGS);
|
713
|
+
extern Datum nameicregexeq(PG_FUNCTION_ARGS);
|
714
|
+
extern Datum nameicregexne(PG_FUNCTION_ARGS);
|
715
|
+
extern Datum boolin(PG_FUNCTION_ARGS);
|
716
|
+
extern Datum boolout(PG_FUNCTION_ARGS);
|
717
|
+
extern Datum byteain(PG_FUNCTION_ARGS);
|
718
|
+
extern Datum charin(PG_FUNCTION_ARGS);
|
719
|
+
extern Datum charlt(PG_FUNCTION_ARGS);
|
720
|
+
extern Datum unique_key_recheck(PG_FUNCTION_ARGS);
|
721
|
+
extern Datum int4abs(PG_FUNCTION_ARGS);
|
722
|
+
extern Datum nameregexne(PG_FUNCTION_ARGS);
|
723
|
+
extern Datum int2abs(PG_FUNCTION_ARGS);
|
724
|
+
extern Datum textregexeq(PG_FUNCTION_ARGS);
|
725
|
+
extern Datum textregexne(PG_FUNCTION_ARGS);
|
726
|
+
extern Datum textlen(PG_FUNCTION_ARGS);
|
727
|
+
extern Datum textcat(PG_FUNCTION_ARGS);
|
728
|
+
extern Datum PG_char_to_encoding(PG_FUNCTION_ARGS);
|
729
|
+
extern Datum tidne(PG_FUNCTION_ARGS);
|
730
|
+
extern Datum cidr_in(PG_FUNCTION_ARGS);
|
731
|
+
extern Datum parse_ident(PG_FUNCTION_ARGS);
|
732
|
+
extern Datum pg_column_size(PG_FUNCTION_ARGS);
|
733
|
+
extern Datum overlaps_timetz(PG_FUNCTION_ARGS);
|
734
|
+
extern Datum datetime_timestamp(PG_FUNCTION_ARGS);
|
735
|
+
extern Datum timetz_part(PG_FUNCTION_ARGS);
|
736
|
+
extern Datum int84pl(PG_FUNCTION_ARGS);
|
737
|
+
extern Datum int84mi(PG_FUNCTION_ARGS);
|
738
|
+
extern Datum int84mul(PG_FUNCTION_ARGS);
|
739
|
+
extern Datum int84div(PG_FUNCTION_ARGS);
|
740
|
+
extern Datum int48pl(PG_FUNCTION_ARGS);
|
741
|
+
extern Datum int48mi(PG_FUNCTION_ARGS);
|
742
|
+
extern Datum int48mul(PG_FUNCTION_ARGS);
|
743
|
+
extern Datum int48div(PG_FUNCTION_ARGS);
|
744
|
+
extern Datum quote_ident(PG_FUNCTION_ARGS);
|
745
|
+
extern Datum quote_literal(PG_FUNCTION_ARGS);
|
746
|
+
extern Datum timestamptz_trunc_zone(PG_FUNCTION_ARGS);
|
747
|
+
extern Datum array_fill_with_lower_bounds(PG_FUNCTION_ARGS);
|
748
|
+
extern Datum i8tooid(PG_FUNCTION_ARGS);
|
749
|
+
extern Datum oidtoi8(PG_FUNCTION_ARGS);
|
750
|
+
extern Datum quote_nullable(PG_FUNCTION_ARGS);
|
751
|
+
extern Datum suppress_redundant_updates_trigger(PG_FUNCTION_ARGS);
|
752
|
+
extern Datum tideq(PG_FUNCTION_ARGS);
|
753
|
+
extern Datum currtid_byreloid(PG_FUNCTION_ARGS);
|
754
|
+
extern Datum currtid_byrelname(PG_FUNCTION_ARGS);
|
755
|
+
extern Datum interval_justify_days(PG_FUNCTION_ARGS);
|
756
|
+
extern Datum datetimetz_timestamptz(PG_FUNCTION_ARGS);
|
757
|
+
extern Datum now(PG_FUNCTION_ARGS);
|
758
|
+
extern Datum positionsel(PG_FUNCTION_ARGS);
|
759
|
+
extern Datum positionjoinsel(PG_FUNCTION_ARGS);
|
760
|
+
extern Datum contsel(PG_FUNCTION_ARGS);
|
761
|
+
extern Datum contjoinsel(PG_FUNCTION_ARGS);
|
762
|
+
extern Datum overlaps_timestamp(PG_FUNCTION_ARGS);
|
763
|
+
extern Datum overlaps_time(PG_FUNCTION_ARGS);
|
764
|
+
extern Datum timestamp_in(PG_FUNCTION_ARGS);
|
765
|
+
extern Datum timestamp_out(PG_FUNCTION_ARGS);
|
766
|
+
extern Datum timestamp_cmp(PG_FUNCTION_ARGS);
|
767
|
+
extern Datum interval_cmp(PG_FUNCTION_ARGS);
|
768
|
+
extern Datum timestamp_time(PG_FUNCTION_ARGS);
|
769
|
+
extern Datum bpcharlen(PG_FUNCTION_ARGS);
|
770
|
+
extern Datum interval_div(PG_FUNCTION_ARGS);
|
771
|
+
extern Datum oidvectortypes(PG_FUNCTION_ARGS);
|
772
|
+
extern Datum timetz_in(PG_FUNCTION_ARGS);
|
773
|
+
extern Datum timetz_out(PG_FUNCTION_ARGS);
|
774
|
+
extern Datum timetz_eq(PG_FUNCTION_ARGS);
|
775
|
+
extern Datum timetz_ne(PG_FUNCTION_ARGS);
|
776
|
+
extern Datum timetz_lt(PG_FUNCTION_ARGS);
|
777
|
+
extern Datum timetz_le(PG_FUNCTION_ARGS);
|
778
|
+
extern Datum timetz_ge(PG_FUNCTION_ARGS);
|
779
|
+
extern Datum timetz_gt(PG_FUNCTION_ARGS);
|
780
|
+
extern Datum timetz_cmp(PG_FUNCTION_ARGS);
|
781
|
+
extern Datum network_hostmask(PG_FUNCTION_ARGS);
|
782
|
+
extern Datum textregexeq_support(PG_FUNCTION_ARGS);
|
783
|
+
extern Datum makeaclitem(PG_FUNCTION_ARGS);
|
784
|
+
extern Datum time_interval(PG_FUNCTION_ARGS);
|
785
|
+
extern Datum pg_lock_status(PG_FUNCTION_ARGS);
|
786
|
+
extern Datum date_finite(PG_FUNCTION_ARGS);
|
787
|
+
extern Datum textoctetlen(PG_FUNCTION_ARGS);
|
788
|
+
extern Datum bpcharoctetlen(PG_FUNCTION_ARGS);
|
789
|
+
extern Datum time_larger(PG_FUNCTION_ARGS);
|
790
|
+
extern Datum time_smaller(PG_FUNCTION_ARGS);
|
791
|
+
extern Datum timetz_larger(PG_FUNCTION_ARGS);
|
792
|
+
extern Datum timetz_smaller(PG_FUNCTION_ARGS);
|
793
|
+
extern Datum time_part(PG_FUNCTION_ARGS);
|
794
|
+
extern Datum pg_get_constraintdef(PG_FUNCTION_ARGS);
|
795
|
+
extern Datum timestamptz_timetz(PG_FUNCTION_ARGS);
|
796
|
+
extern Datum timestamp_finite(PG_FUNCTION_ARGS);
|
797
|
+
extern Datum interval_finite(PG_FUNCTION_ARGS);
|
798
|
+
extern Datum pg_stat_get_backend_start(PG_FUNCTION_ARGS);
|
799
|
+
extern Datum pg_stat_get_backend_client_addr(PG_FUNCTION_ARGS);
|
800
|
+
extern Datum pg_stat_get_backend_client_port(PG_FUNCTION_ARGS);
|
801
|
+
extern Datum current_schema(PG_FUNCTION_ARGS);
|
802
|
+
extern Datum current_schemas(PG_FUNCTION_ARGS);
|
803
|
+
extern Datum textoverlay(PG_FUNCTION_ARGS);
|
804
|
+
extern Datum textoverlay_no_len(PG_FUNCTION_ARGS);
|
805
|
+
extern Datum line_parallel(PG_FUNCTION_ARGS);
|
806
|
+
extern Datum line_perp(PG_FUNCTION_ARGS);
|
807
|
+
extern Datum line_vertical(PG_FUNCTION_ARGS);
|
808
|
+
extern Datum line_horizontal(PG_FUNCTION_ARGS);
|
809
|
+
extern Datum circle_center(PG_FUNCTION_ARGS);
|
810
|
+
extern Datum interval_time(PG_FUNCTION_ARGS);
|
811
|
+
extern Datum points_box(PG_FUNCTION_ARGS);
|
812
|
+
extern Datum box_add(PG_FUNCTION_ARGS);
|
813
|
+
extern Datum box_sub(PG_FUNCTION_ARGS);
|
814
|
+
extern Datum box_mul(PG_FUNCTION_ARGS);
|
815
|
+
extern Datum box_div(PG_FUNCTION_ARGS);
|
816
|
+
extern Datum cidr_out(PG_FUNCTION_ARGS);
|
817
|
+
extern Datum poly_contain_pt(PG_FUNCTION_ARGS);
|
818
|
+
extern Datum pt_contained_poly(PG_FUNCTION_ARGS);
|
819
|
+
extern Datum path_isclosed(PG_FUNCTION_ARGS);
|
820
|
+
extern Datum path_isopen(PG_FUNCTION_ARGS);
|
821
|
+
extern Datum path_npoints(PG_FUNCTION_ARGS);
|
822
|
+
extern Datum path_close(PG_FUNCTION_ARGS);
|
823
|
+
extern Datum path_open(PG_FUNCTION_ARGS);
|
824
|
+
extern Datum path_add(PG_FUNCTION_ARGS);
|
825
|
+
extern Datum path_add_pt(PG_FUNCTION_ARGS);
|
826
|
+
extern Datum path_sub_pt(PG_FUNCTION_ARGS);
|
827
|
+
extern Datum path_mul_pt(PG_FUNCTION_ARGS);
|
828
|
+
extern Datum path_div_pt(PG_FUNCTION_ARGS);
|
829
|
+
extern Datum construct_point(PG_FUNCTION_ARGS);
|
830
|
+
extern Datum point_add(PG_FUNCTION_ARGS);
|
831
|
+
extern Datum point_sub(PG_FUNCTION_ARGS);
|
832
|
+
extern Datum point_mul(PG_FUNCTION_ARGS);
|
833
|
+
extern Datum point_div(PG_FUNCTION_ARGS);
|
834
|
+
extern Datum poly_npoints(PG_FUNCTION_ARGS);
|
835
|
+
extern Datum poly_box(PG_FUNCTION_ARGS);
|
836
|
+
extern Datum poly_path(PG_FUNCTION_ARGS);
|
837
|
+
extern Datum box_poly(PG_FUNCTION_ARGS);
|
838
|
+
extern Datum path_poly(PG_FUNCTION_ARGS);
|
839
|
+
extern Datum circle_in(PG_FUNCTION_ARGS);
|
840
|
+
extern Datum circle_out(PG_FUNCTION_ARGS);
|
841
|
+
extern Datum circle_same(PG_FUNCTION_ARGS);
|
842
|
+
extern Datum circle_contain(PG_FUNCTION_ARGS);
|
843
|
+
extern Datum circle_left(PG_FUNCTION_ARGS);
|
844
|
+
extern Datum circle_overleft(PG_FUNCTION_ARGS);
|
845
|
+
extern Datum circle_overright(PG_FUNCTION_ARGS);
|
846
|
+
extern Datum circle_right(PG_FUNCTION_ARGS);
|
847
|
+
extern Datum circle_contained(PG_FUNCTION_ARGS);
|
848
|
+
extern Datum circle_overlap(PG_FUNCTION_ARGS);
|
849
|
+
extern Datum circle_below(PG_FUNCTION_ARGS);
|
850
|
+
extern Datum circle_above(PG_FUNCTION_ARGS);
|
851
|
+
extern Datum circle_eq(PG_FUNCTION_ARGS);
|
852
|
+
extern Datum circle_ne(PG_FUNCTION_ARGS);
|
853
|
+
extern Datum circle_lt(PG_FUNCTION_ARGS);
|
854
|
+
extern Datum circle_gt(PG_FUNCTION_ARGS);
|
855
|
+
extern Datum circle_le(PG_FUNCTION_ARGS);
|
856
|
+
extern Datum circle_ge(PG_FUNCTION_ARGS);
|
857
|
+
extern Datum circle_area(PG_FUNCTION_ARGS);
|
858
|
+
extern Datum circle_diameter(PG_FUNCTION_ARGS);
|
859
|
+
extern Datum circle_radius(PG_FUNCTION_ARGS);
|
860
|
+
extern Datum circle_distance(PG_FUNCTION_ARGS);
|
861
|
+
extern Datum cr_circle(PG_FUNCTION_ARGS);
|
862
|
+
extern Datum poly_circle(PG_FUNCTION_ARGS);
|
863
|
+
extern Datum circle_poly(PG_FUNCTION_ARGS);
|
864
|
+
extern Datum dist_pc(PG_FUNCTION_ARGS);
|
865
|
+
extern Datum circle_contain_pt(PG_FUNCTION_ARGS);
|
866
|
+
extern Datum pt_contained_circle(PG_FUNCTION_ARGS);
|
867
|
+
extern Datum box_circle(PG_FUNCTION_ARGS);
|
868
|
+
extern Datum circle_box(PG_FUNCTION_ARGS);
|
869
|
+
extern Datum lseg_ne(PG_FUNCTION_ARGS);
|
870
|
+
extern Datum lseg_lt(PG_FUNCTION_ARGS);
|
871
|
+
extern Datum lseg_le(PG_FUNCTION_ARGS);
|
872
|
+
extern Datum lseg_gt(PG_FUNCTION_ARGS);
|
873
|
+
extern Datum lseg_ge(PG_FUNCTION_ARGS);
|
874
|
+
extern Datum lseg_length(PG_FUNCTION_ARGS);
|
875
|
+
extern Datum close_ls(PG_FUNCTION_ARGS);
|
876
|
+
extern Datum close_lseg(PG_FUNCTION_ARGS);
|
877
|
+
extern Datum line_in(PG_FUNCTION_ARGS);
|
878
|
+
extern Datum line_out(PG_FUNCTION_ARGS);
|
879
|
+
extern Datum line_eq(PG_FUNCTION_ARGS);
|
880
|
+
extern Datum line_construct_pp(PG_FUNCTION_ARGS);
|
881
|
+
extern Datum line_interpt(PG_FUNCTION_ARGS);
|
882
|
+
extern Datum line_intersect(PG_FUNCTION_ARGS);
|
883
|
+
extern Datum bit_in(PG_FUNCTION_ARGS);
|
884
|
+
extern Datum bit_out(PG_FUNCTION_ARGS);
|
885
|
+
extern Datum pg_get_ruledef(PG_FUNCTION_ARGS);
|
886
|
+
extern Datum nextval_oid(PG_FUNCTION_ARGS);
|
887
|
+
extern Datum currval_oid(PG_FUNCTION_ARGS);
|
888
|
+
extern Datum setval_oid(PG_FUNCTION_ARGS);
|
889
|
+
extern Datum varbit_in(PG_FUNCTION_ARGS);
|
890
|
+
extern Datum varbit_out(PG_FUNCTION_ARGS);
|
891
|
+
extern Datum biteq(PG_FUNCTION_ARGS);
|
892
|
+
extern Datum bitne(PG_FUNCTION_ARGS);
|
893
|
+
extern Datum bitge(PG_FUNCTION_ARGS);
|
894
|
+
extern Datum bitgt(PG_FUNCTION_ARGS);
|
895
|
+
extern Datum bitle(PG_FUNCTION_ARGS);
|
896
|
+
extern Datum bitlt(PG_FUNCTION_ARGS);
|
897
|
+
extern Datum bitcmp(PG_FUNCTION_ARGS);
|
898
|
+
extern Datum PG_encoding_to_char(PG_FUNCTION_ARGS);
|
899
|
+
extern Datum drandom(PG_FUNCTION_ARGS);
|
900
|
+
extern Datum setseed(PG_FUNCTION_ARGS);
|
901
|
+
extern Datum dasin(PG_FUNCTION_ARGS);
|
902
|
+
extern Datum dacos(PG_FUNCTION_ARGS);
|
903
|
+
extern Datum datan(PG_FUNCTION_ARGS);
|
904
|
+
extern Datum datan2(PG_FUNCTION_ARGS);
|
905
|
+
extern Datum dsin(PG_FUNCTION_ARGS);
|
906
|
+
extern Datum dcos(PG_FUNCTION_ARGS);
|
907
|
+
extern Datum dtan(PG_FUNCTION_ARGS);
|
908
|
+
extern Datum dcot(PG_FUNCTION_ARGS);
|
909
|
+
extern Datum degrees(PG_FUNCTION_ARGS);
|
910
|
+
extern Datum radians(PG_FUNCTION_ARGS);
|
911
|
+
extern Datum dpi(PG_FUNCTION_ARGS);
|
912
|
+
extern Datum interval_mul(PG_FUNCTION_ARGS);
|
913
|
+
extern Datum pg_typeof(PG_FUNCTION_ARGS);
|
914
|
+
extern Datum ascii(PG_FUNCTION_ARGS);
|
915
|
+
extern Datum chr(PG_FUNCTION_ARGS);
|
916
|
+
extern Datum repeat(PG_FUNCTION_ARGS);
|
917
|
+
extern Datum similar_escape(PG_FUNCTION_ARGS);
|
918
|
+
extern Datum mul_d_interval(PG_FUNCTION_ARGS);
|
919
|
+
extern Datum texticlike(PG_FUNCTION_ARGS);
|
920
|
+
extern Datum texticnlike(PG_FUNCTION_ARGS);
|
921
|
+
extern Datum nameiclike(PG_FUNCTION_ARGS);
|
922
|
+
extern Datum nameicnlike(PG_FUNCTION_ARGS);
|
923
|
+
extern Datum like_escape(PG_FUNCTION_ARGS);
|
924
|
+
extern Datum oidgt(PG_FUNCTION_ARGS);
|
925
|
+
extern Datum oidge(PG_FUNCTION_ARGS);
|
926
|
+
extern Datum pg_get_viewdef_name(PG_FUNCTION_ARGS);
|
927
|
+
extern Datum pg_get_viewdef(PG_FUNCTION_ARGS);
|
928
|
+
extern Datum pg_get_userbyid(PG_FUNCTION_ARGS);
|
929
|
+
extern Datum pg_get_indexdef(PG_FUNCTION_ARGS);
|
930
|
+
extern Datum RI_FKey_check_ins(PG_FUNCTION_ARGS);
|
931
|
+
extern Datum RI_FKey_check_upd(PG_FUNCTION_ARGS);
|
932
|
+
extern Datum RI_FKey_cascade_del(PG_FUNCTION_ARGS);
|
933
|
+
extern Datum RI_FKey_cascade_upd(PG_FUNCTION_ARGS);
|
934
|
+
extern Datum RI_FKey_restrict_del(PG_FUNCTION_ARGS);
|
935
|
+
extern Datum RI_FKey_restrict_upd(PG_FUNCTION_ARGS);
|
936
|
+
extern Datum RI_FKey_setnull_del(PG_FUNCTION_ARGS);
|
937
|
+
extern Datum RI_FKey_setnull_upd(PG_FUNCTION_ARGS);
|
938
|
+
extern Datum RI_FKey_setdefault_del(PG_FUNCTION_ARGS);
|
939
|
+
extern Datum RI_FKey_setdefault_upd(PG_FUNCTION_ARGS);
|
940
|
+
extern Datum RI_FKey_noaction_del(PG_FUNCTION_ARGS);
|
941
|
+
extern Datum RI_FKey_noaction_upd(PG_FUNCTION_ARGS);
|
942
|
+
extern Datum pg_get_triggerdef(PG_FUNCTION_ARGS);
|
943
|
+
extern Datum pg_get_serial_sequence(PG_FUNCTION_ARGS);
|
944
|
+
extern Datum bit_and(PG_FUNCTION_ARGS);
|
945
|
+
extern Datum bit_or(PG_FUNCTION_ARGS);
|
946
|
+
extern Datum bitxor(PG_FUNCTION_ARGS);
|
947
|
+
extern Datum bitnot(PG_FUNCTION_ARGS);
|
948
|
+
extern Datum bitshiftleft(PG_FUNCTION_ARGS);
|
949
|
+
extern Datum bitshiftright(PG_FUNCTION_ARGS);
|
950
|
+
extern Datum bitcat(PG_FUNCTION_ARGS);
|
951
|
+
extern Datum bitsubstr(PG_FUNCTION_ARGS);
|
952
|
+
extern Datum bitlength(PG_FUNCTION_ARGS);
|
953
|
+
extern Datum bitoctetlength(PG_FUNCTION_ARGS);
|
954
|
+
extern Datum bitfromint4(PG_FUNCTION_ARGS);
|
955
|
+
extern Datum bittoint4(PG_FUNCTION_ARGS);
|
956
|
+
extern Datum bit(PG_FUNCTION_ARGS);
|
957
|
+
extern Datum pg_get_keywords(PG_FUNCTION_ARGS);
|
958
|
+
extern Datum varbit(PG_FUNCTION_ARGS);
|
959
|
+
extern Datum time_hash(PG_FUNCTION_ARGS);
|
960
|
+
extern Datum aclexplode(PG_FUNCTION_ARGS);
|
961
|
+
extern Datum time_mi_time(PG_FUNCTION_ARGS);
|
962
|
+
extern Datum boolle(PG_FUNCTION_ARGS);
|
963
|
+
extern Datum boolge(PG_FUNCTION_ARGS);
|
964
|
+
extern Datum btboolcmp(PG_FUNCTION_ARGS);
|
965
|
+
extern Datum timetz_hash(PG_FUNCTION_ARGS);
|
966
|
+
extern Datum interval_hash(PG_FUNCTION_ARGS);
|
967
|
+
extern Datum bitposition(PG_FUNCTION_ARGS);
|
968
|
+
extern Datum bitsubstr_no_len(PG_FUNCTION_ARGS);
|
969
|
+
extern Datum numeric_in(PG_FUNCTION_ARGS);
|
970
|
+
extern Datum numeric_out(PG_FUNCTION_ARGS);
|
971
|
+
extern Datum numeric(PG_FUNCTION_ARGS);
|
972
|
+
extern Datum numeric_abs(PG_FUNCTION_ARGS);
|
973
|
+
extern Datum numeric_sign(PG_FUNCTION_ARGS);
|
974
|
+
extern Datum numeric_round(PG_FUNCTION_ARGS);
|
975
|
+
extern Datum numeric_trunc(PG_FUNCTION_ARGS);
|
976
|
+
extern Datum numeric_ceil(PG_FUNCTION_ARGS);
|
977
|
+
extern Datum numeric_floor(PG_FUNCTION_ARGS);
|
978
|
+
extern Datum length_in_encoding(PG_FUNCTION_ARGS);
|
979
|
+
extern Datum pg_convert_from(PG_FUNCTION_ARGS);
|
980
|
+
extern Datum inet_to_cidr(PG_FUNCTION_ARGS);
|
981
|
+
extern Datum pg_get_expr(PG_FUNCTION_ARGS);
|
982
|
+
extern Datum pg_convert_to(PG_FUNCTION_ARGS);
|
983
|
+
extern Datum numeric_eq(PG_FUNCTION_ARGS);
|
984
|
+
extern Datum numeric_ne(PG_FUNCTION_ARGS);
|
985
|
+
extern Datum numeric_gt(PG_FUNCTION_ARGS);
|
986
|
+
extern Datum numeric_ge(PG_FUNCTION_ARGS);
|
987
|
+
extern Datum numeric_lt(PG_FUNCTION_ARGS);
|
988
|
+
extern Datum numeric_le(PG_FUNCTION_ARGS);
|
989
|
+
extern Datum numeric_add(PG_FUNCTION_ARGS);
|
990
|
+
extern Datum numeric_sub(PG_FUNCTION_ARGS);
|
991
|
+
extern Datum numeric_mul(PG_FUNCTION_ARGS);
|
992
|
+
extern Datum numeric_div(PG_FUNCTION_ARGS);
|
993
|
+
extern Datum numeric_mod(PG_FUNCTION_ARGS);
|
994
|
+
extern Datum numeric_sqrt(PG_FUNCTION_ARGS);
|
995
|
+
extern Datum numeric_exp(PG_FUNCTION_ARGS);
|
996
|
+
extern Datum numeric_ln(PG_FUNCTION_ARGS);
|
997
|
+
extern Datum numeric_log(PG_FUNCTION_ARGS);
|
998
|
+
extern Datum numeric_power(PG_FUNCTION_ARGS);
|
999
|
+
extern Datum int4_numeric(PG_FUNCTION_ARGS);
|
1000
|
+
extern Datum float4_numeric(PG_FUNCTION_ARGS);
|
1001
|
+
extern Datum float8_numeric(PG_FUNCTION_ARGS);
|
1002
|
+
extern Datum numeric_int4(PG_FUNCTION_ARGS);
|
1003
|
+
extern Datum numeric_float4(PG_FUNCTION_ARGS);
|
1004
|
+
extern Datum numeric_float8(PG_FUNCTION_ARGS);
|
1005
|
+
extern Datum time_pl_interval(PG_FUNCTION_ARGS);
|
1006
|
+
extern Datum time_mi_interval(PG_FUNCTION_ARGS);
|
1007
|
+
extern Datum timetz_pl_interval(PG_FUNCTION_ARGS);
|
1008
|
+
extern Datum timetz_mi_interval(PG_FUNCTION_ARGS);
|
1009
|
+
extern Datum numeric_inc(PG_FUNCTION_ARGS);
|
1010
|
+
extern Datum setval3_oid(PG_FUNCTION_ARGS);
|
1011
|
+
extern Datum numeric_smaller(PG_FUNCTION_ARGS);
|
1012
|
+
extern Datum numeric_larger(PG_FUNCTION_ARGS);
|
1013
|
+
extern Datum interval_to_char(PG_FUNCTION_ARGS);
|
1014
|
+
extern Datum numeric_cmp(PG_FUNCTION_ARGS);
|
1015
|
+
extern Datum timestamptz_to_char(PG_FUNCTION_ARGS);
|
1016
|
+
extern Datum numeric_uminus(PG_FUNCTION_ARGS);
|
1017
|
+
extern Datum numeric_to_char(PG_FUNCTION_ARGS);
|
1018
|
+
extern Datum int4_to_char(PG_FUNCTION_ARGS);
|
1019
|
+
extern Datum int8_to_char(PG_FUNCTION_ARGS);
|
1020
|
+
extern Datum float4_to_char(PG_FUNCTION_ARGS);
|
1021
|
+
extern Datum float8_to_char(PG_FUNCTION_ARGS);
|
1022
|
+
extern Datum numeric_to_number(PG_FUNCTION_ARGS);
|
1023
|
+
extern Datum to_timestamp(PG_FUNCTION_ARGS);
|
1024
|
+
extern Datum numeric_int8(PG_FUNCTION_ARGS);
|
1025
|
+
extern Datum to_date(PG_FUNCTION_ARGS);
|
1026
|
+
extern Datum int8_numeric(PG_FUNCTION_ARGS);
|
1027
|
+
extern Datum int2_numeric(PG_FUNCTION_ARGS);
|
1028
|
+
extern Datum numeric_int2(PG_FUNCTION_ARGS);
|
1029
|
+
extern Datum oidin(PG_FUNCTION_ARGS);
|
1030
|
+
extern Datum oidout(PG_FUNCTION_ARGS);
|
1031
|
+
extern Datum pg_convert(PG_FUNCTION_ARGS);
|
1032
|
+
extern Datum iclikesel(PG_FUNCTION_ARGS);
|
1033
|
+
extern Datum icnlikesel(PG_FUNCTION_ARGS);
|
1034
|
+
extern Datum iclikejoinsel(PG_FUNCTION_ARGS);
|
1035
|
+
extern Datum icnlikejoinsel(PG_FUNCTION_ARGS);
|
1036
|
+
extern Datum regexeqsel(PG_FUNCTION_ARGS);
|
1037
|
+
extern Datum likesel(PG_FUNCTION_ARGS);
|
1038
|
+
extern Datum icregexeqsel(PG_FUNCTION_ARGS);
|
1039
|
+
extern Datum regexnesel(PG_FUNCTION_ARGS);
|
1040
|
+
extern Datum nlikesel(PG_FUNCTION_ARGS);
|
1041
|
+
extern Datum icregexnesel(PG_FUNCTION_ARGS);
|
1042
|
+
extern Datum regexeqjoinsel(PG_FUNCTION_ARGS);
|
1043
|
+
extern Datum likejoinsel(PG_FUNCTION_ARGS);
|
1044
|
+
extern Datum icregexeqjoinsel(PG_FUNCTION_ARGS);
|
1045
|
+
extern Datum regexnejoinsel(PG_FUNCTION_ARGS);
|
1046
|
+
extern Datum nlikejoinsel(PG_FUNCTION_ARGS);
|
1047
|
+
extern Datum icregexnejoinsel(PG_FUNCTION_ARGS);
|
1048
|
+
extern Datum float8_avg(PG_FUNCTION_ARGS);
|
1049
|
+
extern Datum float8_var_samp(PG_FUNCTION_ARGS);
|
1050
|
+
extern Datum float8_stddev_samp(PG_FUNCTION_ARGS);
|
1051
|
+
extern Datum numeric_accum(PG_FUNCTION_ARGS);
|
1052
|
+
extern Datum int2_accum(PG_FUNCTION_ARGS);
|
1053
|
+
extern Datum int4_accum(PG_FUNCTION_ARGS);
|
1054
|
+
extern Datum int8_accum(PG_FUNCTION_ARGS);
|
1055
|
+
extern Datum numeric_avg(PG_FUNCTION_ARGS);
|
1056
|
+
extern Datum numeric_var_samp(PG_FUNCTION_ARGS);
|
1057
|
+
extern Datum numeric_stddev_samp(PG_FUNCTION_ARGS);
|
1058
|
+
extern Datum int2_sum(PG_FUNCTION_ARGS);
|
1059
|
+
extern Datum int4_sum(PG_FUNCTION_ARGS);
|
1060
|
+
extern Datum int8_sum(PG_FUNCTION_ARGS);
|
1061
|
+
extern Datum interval_accum(PG_FUNCTION_ARGS);
|
1062
|
+
extern Datum interval_avg(PG_FUNCTION_ARGS);
|
1063
|
+
extern Datum to_ascii_default(PG_FUNCTION_ARGS);
|
1064
|
+
extern Datum to_ascii_enc(PG_FUNCTION_ARGS);
|
1065
|
+
extern Datum to_ascii_encname(PG_FUNCTION_ARGS);
|
1066
|
+
extern Datum int28eq(PG_FUNCTION_ARGS);
|
1067
|
+
extern Datum int28ne(PG_FUNCTION_ARGS);
|
1068
|
+
extern Datum int28lt(PG_FUNCTION_ARGS);
|
1069
|
+
extern Datum int28gt(PG_FUNCTION_ARGS);
|
1070
|
+
extern Datum int28le(PG_FUNCTION_ARGS);
|
1071
|
+
extern Datum int28ge(PG_FUNCTION_ARGS);
|
1072
|
+
extern Datum int82eq(PG_FUNCTION_ARGS);
|
1073
|
+
extern Datum int82ne(PG_FUNCTION_ARGS);
|
1074
|
+
extern Datum int82lt(PG_FUNCTION_ARGS);
|
1075
|
+
extern Datum int82gt(PG_FUNCTION_ARGS);
|
1076
|
+
extern Datum int82le(PG_FUNCTION_ARGS);
|
1077
|
+
extern Datum int82ge(PG_FUNCTION_ARGS);
|
1078
|
+
extern Datum int2and(PG_FUNCTION_ARGS);
|
1079
|
+
extern Datum int2or(PG_FUNCTION_ARGS);
|
1080
|
+
extern Datum int2xor(PG_FUNCTION_ARGS);
|
1081
|
+
extern Datum int2not(PG_FUNCTION_ARGS);
|
1082
|
+
extern Datum int2shl(PG_FUNCTION_ARGS);
|
1083
|
+
extern Datum int2shr(PG_FUNCTION_ARGS);
|
1084
|
+
extern Datum int4and(PG_FUNCTION_ARGS);
|
1085
|
+
extern Datum int4or(PG_FUNCTION_ARGS);
|
1086
|
+
extern Datum int4xor(PG_FUNCTION_ARGS);
|
1087
|
+
extern Datum int4not(PG_FUNCTION_ARGS);
|
1088
|
+
extern Datum int4shl(PG_FUNCTION_ARGS);
|
1089
|
+
extern Datum int4shr(PG_FUNCTION_ARGS);
|
1090
|
+
extern Datum int8and(PG_FUNCTION_ARGS);
|
1091
|
+
extern Datum int8or(PG_FUNCTION_ARGS);
|
1092
|
+
extern Datum int8xor(PG_FUNCTION_ARGS);
|
1093
|
+
extern Datum int8not(PG_FUNCTION_ARGS);
|
1094
|
+
extern Datum int8shl(PG_FUNCTION_ARGS);
|
1095
|
+
extern Datum int8shr(PG_FUNCTION_ARGS);
|
1096
|
+
extern Datum int8up(PG_FUNCTION_ARGS);
|
1097
|
+
extern Datum int2up(PG_FUNCTION_ARGS);
|
1098
|
+
extern Datum int4up(PG_FUNCTION_ARGS);
|
1099
|
+
extern Datum float4up(PG_FUNCTION_ARGS);
|
1100
|
+
extern Datum float8up(PG_FUNCTION_ARGS);
|
1101
|
+
extern Datum numeric_uplus(PG_FUNCTION_ARGS);
|
1102
|
+
extern Datum has_table_privilege_name_name(PG_FUNCTION_ARGS);
|
1103
|
+
extern Datum has_table_privilege_name_id(PG_FUNCTION_ARGS);
|
1104
|
+
extern Datum has_table_privilege_id_name(PG_FUNCTION_ARGS);
|
1105
|
+
extern Datum has_table_privilege_id_id(PG_FUNCTION_ARGS);
|
1106
|
+
extern Datum has_table_privilege_name(PG_FUNCTION_ARGS);
|
1107
|
+
extern Datum has_table_privilege_id(PG_FUNCTION_ARGS);
|
1108
|
+
extern Datum pg_stat_get_numscans(PG_FUNCTION_ARGS);
|
1109
|
+
extern Datum pg_stat_get_tuples_returned(PG_FUNCTION_ARGS);
|
1110
|
+
extern Datum pg_stat_get_tuples_fetched(PG_FUNCTION_ARGS);
|
1111
|
+
extern Datum pg_stat_get_tuples_inserted(PG_FUNCTION_ARGS);
|
1112
|
+
extern Datum pg_stat_get_tuples_updated(PG_FUNCTION_ARGS);
|
1113
|
+
extern Datum pg_stat_get_tuples_deleted(PG_FUNCTION_ARGS);
|
1114
|
+
extern Datum pg_stat_get_blocks_fetched(PG_FUNCTION_ARGS);
|
1115
|
+
extern Datum pg_stat_get_blocks_hit(PG_FUNCTION_ARGS);
|
1116
|
+
extern Datum pg_stat_get_backend_idset(PG_FUNCTION_ARGS);
|
1117
|
+
extern Datum pg_stat_get_backend_pid(PG_FUNCTION_ARGS);
|
1118
|
+
extern Datum pg_stat_get_backend_dbid(PG_FUNCTION_ARGS);
|
1119
|
+
extern Datum pg_stat_get_backend_userid(PG_FUNCTION_ARGS);
|
1120
|
+
extern Datum pg_stat_get_backend_activity(PG_FUNCTION_ARGS);
|
1121
|
+
extern Datum pg_stat_get_db_numbackends(PG_FUNCTION_ARGS);
|
1122
|
+
extern Datum pg_stat_get_db_xact_commit(PG_FUNCTION_ARGS);
|
1123
|
+
extern Datum pg_stat_get_db_xact_rollback(PG_FUNCTION_ARGS);
|
1124
|
+
extern Datum pg_stat_get_db_blocks_fetched(PG_FUNCTION_ARGS);
|
1125
|
+
extern Datum pg_stat_get_db_blocks_hit(PG_FUNCTION_ARGS);
|
1126
|
+
extern Datum binary_encode(PG_FUNCTION_ARGS);
|
1127
|
+
extern Datum binary_decode(PG_FUNCTION_ARGS);
|
1128
|
+
extern Datum byteaeq(PG_FUNCTION_ARGS);
|
1129
|
+
extern Datum bytealt(PG_FUNCTION_ARGS);
|
1130
|
+
extern Datum byteale(PG_FUNCTION_ARGS);
|
1131
|
+
extern Datum byteagt(PG_FUNCTION_ARGS);
|
1132
|
+
extern Datum byteage(PG_FUNCTION_ARGS);
|
1133
|
+
extern Datum byteane(PG_FUNCTION_ARGS);
|
1134
|
+
extern Datum byteacmp(PG_FUNCTION_ARGS);
|
1135
|
+
extern Datum timestamp_scale(PG_FUNCTION_ARGS);
|
1136
|
+
extern Datum int2_avg_accum(PG_FUNCTION_ARGS);
|
1137
|
+
extern Datum int4_avg_accum(PG_FUNCTION_ARGS);
|
1138
|
+
extern Datum int8_avg(PG_FUNCTION_ARGS);
|
1139
|
+
extern Datum oidlarger(PG_FUNCTION_ARGS);
|
1140
|
+
extern Datum oidsmaller(PG_FUNCTION_ARGS);
|
1141
|
+
extern Datum timestamptz_scale(PG_FUNCTION_ARGS);
|
1142
|
+
extern Datum time_scale(PG_FUNCTION_ARGS);
|
1143
|
+
extern Datum timetz_scale(PG_FUNCTION_ARGS);
|
1144
|
+
extern Datum pg_stat_get_tuples_hot_updated(PG_FUNCTION_ARGS);
|
1145
|
+
extern Datum numeric_div_trunc(PG_FUNCTION_ARGS);
|
1146
|
+
extern Datum similar_to_escape_2(PG_FUNCTION_ARGS);
|
1147
|
+
extern Datum similar_to_escape_1(PG_FUNCTION_ARGS);
|
1148
|
+
extern Datum bytealike(PG_FUNCTION_ARGS);
|
1149
|
+
extern Datum byteanlike(PG_FUNCTION_ARGS);
|
1150
|
+
extern Datum like_escape_bytea(PG_FUNCTION_ARGS);
|
1151
|
+
extern Datum byteacat(PG_FUNCTION_ARGS);
|
1152
|
+
extern Datum bytea_substr(PG_FUNCTION_ARGS);
|
1153
|
+
extern Datum bytea_substr_no_len(PG_FUNCTION_ARGS);
|
1154
|
+
extern Datum byteapos(PG_FUNCTION_ARGS);
|
1155
|
+
extern Datum byteatrim(PG_FUNCTION_ARGS);
|
1156
|
+
extern Datum timestamptz_time(PG_FUNCTION_ARGS);
|
1157
|
+
extern Datum timestamp_trunc(PG_FUNCTION_ARGS);
|
1158
|
+
extern Datum timestamp_part(PG_FUNCTION_ARGS);
|
1159
|
+
extern Datum pg_stat_get_activity(PG_FUNCTION_ARGS);
|
1160
|
+
extern Datum jsonb_path_query_first_tz(PG_FUNCTION_ARGS);
|
1161
|
+
extern Datum date_timestamp(PG_FUNCTION_ARGS);
|
1162
|
+
extern Datum pg_backend_pid(PG_FUNCTION_ARGS);
|
1163
|
+
extern Datum timestamptz_timestamp(PG_FUNCTION_ARGS);
|
1164
|
+
extern Datum timestamp_timestamptz(PG_FUNCTION_ARGS);
|
1165
|
+
extern Datum timestamp_date(PG_FUNCTION_ARGS);
|
1166
|
+
extern Datum jsonb_path_match_tz(PG_FUNCTION_ARGS);
|
1167
|
+
extern Datum timestamp_pl_interval(PG_FUNCTION_ARGS);
|
1168
|
+
extern Datum timestamp_mi_interval(PG_FUNCTION_ARGS);
|
1169
|
+
extern Datum pg_conf_load_time(PG_FUNCTION_ARGS);
|
1170
|
+
extern Datum timetz_zone(PG_FUNCTION_ARGS);
|
1171
|
+
extern Datum timetz_izone(PG_FUNCTION_ARGS);
|
1172
|
+
extern Datum timestamp_hash(PG_FUNCTION_ARGS);
|
1173
|
+
extern Datum timetz_time(PG_FUNCTION_ARGS);
|
1174
|
+
extern Datum time_timetz(PG_FUNCTION_ARGS);
|
1175
|
+
extern Datum timestamp_to_char(PG_FUNCTION_ARGS);
|
1176
|
+
extern Datum aggregate_dummy(PG_FUNCTION_ARGS);
|
1177
|
+
extern Datum timestamp_age(PG_FUNCTION_ARGS);
|
1178
|
+
extern Datum timestamp_zone(PG_FUNCTION_ARGS);
|
1179
|
+
extern Datum timestamp_izone(PG_FUNCTION_ARGS);
|
1180
|
+
extern Datum date_pl_interval(PG_FUNCTION_ARGS);
|
1181
|
+
extern Datum date_mi_interval(PG_FUNCTION_ARGS);
|
1182
|
+
extern Datum textregexsubstr(PG_FUNCTION_ARGS);
|
1183
|
+
extern Datum bitfromint8(PG_FUNCTION_ARGS);
|
1184
|
+
extern Datum bittoint8(PG_FUNCTION_ARGS);
|
1185
|
+
extern Datum show_config_by_name(PG_FUNCTION_ARGS);
|
1186
|
+
extern Datum set_config_by_name(PG_FUNCTION_ARGS);
|
1187
|
+
extern Datum pg_table_is_visible(PG_FUNCTION_ARGS);
|
1188
|
+
extern Datum pg_type_is_visible(PG_FUNCTION_ARGS);
|
1189
|
+
extern Datum pg_function_is_visible(PG_FUNCTION_ARGS);
|
1190
|
+
extern Datum pg_operator_is_visible(PG_FUNCTION_ARGS);
|
1191
|
+
extern Datum pg_opclass_is_visible(PG_FUNCTION_ARGS);
|
1192
|
+
extern Datum show_all_settings(PG_FUNCTION_ARGS);
|
1193
|
+
extern Datum replace_text(PG_FUNCTION_ARGS);
|
1194
|
+
extern Datum split_text(PG_FUNCTION_ARGS);
|
1195
|
+
extern Datum to_hex32(PG_FUNCTION_ARGS);
|
1196
|
+
extern Datum to_hex64(PG_FUNCTION_ARGS);
|
1197
|
+
extern Datum array_lower(PG_FUNCTION_ARGS);
|
1198
|
+
extern Datum array_upper(PG_FUNCTION_ARGS);
|
1199
|
+
extern Datum pg_conversion_is_visible(PG_FUNCTION_ARGS);
|
1200
|
+
extern Datum pg_stat_get_backend_activity_start(PG_FUNCTION_ARGS);
|
1201
|
+
extern Datum pg_terminate_backend(PG_FUNCTION_ARGS);
|
1202
|
+
extern Datum pg_get_functiondef(PG_FUNCTION_ARGS);
|
1203
|
+
extern Datum text_pattern_lt(PG_FUNCTION_ARGS);
|
1204
|
+
extern Datum text_pattern_le(PG_FUNCTION_ARGS);
|
1205
|
+
extern Datum pg_get_function_arguments(PG_FUNCTION_ARGS);
|
1206
|
+
extern Datum text_pattern_ge(PG_FUNCTION_ARGS);
|
1207
|
+
extern Datum text_pattern_gt(PG_FUNCTION_ARGS);
|
1208
|
+
extern Datum pg_get_function_result(PG_FUNCTION_ARGS);
|
1209
|
+
extern Datum bttext_pattern_cmp(PG_FUNCTION_ARGS);
|
1210
|
+
extern Datum pg_database_size_name(PG_FUNCTION_ARGS);
|
1211
|
+
extern Datum width_bucket_numeric(PG_FUNCTION_ARGS);
|
1212
|
+
extern Datum pg_cancel_backend(PG_FUNCTION_ARGS);
|
1213
|
+
extern Datum pg_start_backup(PG_FUNCTION_ARGS);
|
1214
|
+
extern Datum pg_stop_backup(PG_FUNCTION_ARGS);
|
1215
|
+
extern Datum bpchar_pattern_lt(PG_FUNCTION_ARGS);
|
1216
|
+
extern Datum bpchar_pattern_le(PG_FUNCTION_ARGS);
|
1217
|
+
extern Datum array_length(PG_FUNCTION_ARGS);
|
1218
|
+
extern Datum bpchar_pattern_ge(PG_FUNCTION_ARGS);
|
1219
|
+
extern Datum bpchar_pattern_gt(PG_FUNCTION_ARGS);
|
1220
|
+
extern Datum gist_point_consistent(PG_FUNCTION_ARGS);
|
1221
|
+
extern Datum btbpchar_pattern_cmp(PG_FUNCTION_ARGS);
|
1222
|
+
extern Datum has_sequence_privilege_name_name(PG_FUNCTION_ARGS);
|
1223
|
+
extern Datum has_sequence_privilege_name_id(PG_FUNCTION_ARGS);
|
1224
|
+
extern Datum has_sequence_privilege_id_name(PG_FUNCTION_ARGS);
|
1225
|
+
extern Datum has_sequence_privilege_id_id(PG_FUNCTION_ARGS);
|
1226
|
+
extern Datum has_sequence_privilege_name(PG_FUNCTION_ARGS);
|
1227
|
+
extern Datum has_sequence_privilege_id(PG_FUNCTION_ARGS);
|
1228
|
+
extern Datum btint48cmp(PG_FUNCTION_ARGS);
|
1229
|
+
extern Datum btint84cmp(PG_FUNCTION_ARGS);
|
1230
|
+
extern Datum btint24cmp(PG_FUNCTION_ARGS);
|
1231
|
+
extern Datum btint42cmp(PG_FUNCTION_ARGS);
|
1232
|
+
extern Datum btint28cmp(PG_FUNCTION_ARGS);
|
1233
|
+
extern Datum btint82cmp(PG_FUNCTION_ARGS);
|
1234
|
+
extern Datum btfloat48cmp(PG_FUNCTION_ARGS);
|
1235
|
+
extern Datum btfloat84cmp(PG_FUNCTION_ARGS);
|
1236
|
+
extern Datum inet_client_addr(PG_FUNCTION_ARGS);
|
1237
|
+
extern Datum inet_client_port(PG_FUNCTION_ARGS);
|
1238
|
+
extern Datum inet_server_addr(PG_FUNCTION_ARGS);
|
1239
|
+
extern Datum inet_server_port(PG_FUNCTION_ARGS);
|
1240
|
+
extern Datum regprocedurein(PG_FUNCTION_ARGS);
|
1241
|
+
extern Datum regprocedureout(PG_FUNCTION_ARGS);
|
1242
|
+
extern Datum regoperin(PG_FUNCTION_ARGS);
|
1243
|
+
extern Datum regoperout(PG_FUNCTION_ARGS);
|
1244
|
+
extern Datum regoperatorin(PG_FUNCTION_ARGS);
|
1245
|
+
extern Datum regoperatorout(PG_FUNCTION_ARGS);
|
1246
|
+
extern Datum regclassin(PG_FUNCTION_ARGS);
|
1247
|
+
extern Datum regclassout(PG_FUNCTION_ARGS);
|
1248
|
+
extern Datum regtypein(PG_FUNCTION_ARGS);
|
1249
|
+
extern Datum regtypeout(PG_FUNCTION_ARGS);
|
1250
|
+
extern Datum pg_stat_clear_snapshot(PG_FUNCTION_ARGS);
|
1251
|
+
extern Datum pg_get_function_identity_arguments(PG_FUNCTION_ARGS);
|
1252
|
+
extern Datum hashtid(PG_FUNCTION_ARGS);
|
1253
|
+
extern Datum hashtidextended(PG_FUNCTION_ARGS);
|
1254
|
+
extern Datum fmgr_internal_validator(PG_FUNCTION_ARGS);
|
1255
|
+
extern Datum fmgr_c_validator(PG_FUNCTION_ARGS);
|
1256
|
+
extern Datum fmgr_sql_validator(PG_FUNCTION_ARGS);
|
1257
|
+
extern Datum has_database_privilege_name_name(PG_FUNCTION_ARGS);
|
1258
|
+
extern Datum has_database_privilege_name_id(PG_FUNCTION_ARGS);
|
1259
|
+
extern Datum has_database_privilege_id_name(PG_FUNCTION_ARGS);
|
1260
|
+
extern Datum has_database_privilege_id_id(PG_FUNCTION_ARGS);
|
1261
|
+
extern Datum has_database_privilege_name(PG_FUNCTION_ARGS);
|
1262
|
+
extern Datum has_database_privilege_id(PG_FUNCTION_ARGS);
|
1263
|
+
extern Datum has_function_privilege_name_name(PG_FUNCTION_ARGS);
|
1264
|
+
extern Datum has_function_privilege_name_id(PG_FUNCTION_ARGS);
|
1265
|
+
extern Datum has_function_privilege_id_name(PG_FUNCTION_ARGS);
|
1266
|
+
extern Datum has_function_privilege_id_id(PG_FUNCTION_ARGS);
|
1267
|
+
extern Datum has_function_privilege_name(PG_FUNCTION_ARGS);
|
1268
|
+
extern Datum has_function_privilege_id(PG_FUNCTION_ARGS);
|
1269
|
+
extern Datum has_language_privilege_name_name(PG_FUNCTION_ARGS);
|
1270
|
+
extern Datum has_language_privilege_name_id(PG_FUNCTION_ARGS);
|
1271
|
+
extern Datum has_language_privilege_id_name(PG_FUNCTION_ARGS);
|
1272
|
+
extern Datum has_language_privilege_id_id(PG_FUNCTION_ARGS);
|
1273
|
+
extern Datum has_language_privilege_name(PG_FUNCTION_ARGS);
|
1274
|
+
extern Datum has_language_privilege_id(PG_FUNCTION_ARGS);
|
1275
|
+
extern Datum has_schema_privilege_name_name(PG_FUNCTION_ARGS);
|
1276
|
+
extern Datum has_schema_privilege_name_id(PG_FUNCTION_ARGS);
|
1277
|
+
extern Datum has_schema_privilege_id_name(PG_FUNCTION_ARGS);
|
1278
|
+
extern Datum has_schema_privilege_id_id(PG_FUNCTION_ARGS);
|
1279
|
+
extern Datum has_schema_privilege_name(PG_FUNCTION_ARGS);
|
1280
|
+
extern Datum has_schema_privilege_id(PG_FUNCTION_ARGS);
|
1281
|
+
extern Datum pg_stat_reset(PG_FUNCTION_ARGS);
|
1282
|
+
extern Datum textregexreplace_noopt(PG_FUNCTION_ARGS);
|
1283
|
+
extern Datum textregexreplace(PG_FUNCTION_ARGS);
|
1284
|
+
extern Datum pg_total_relation_size(PG_FUNCTION_ARGS);
|
1285
|
+
extern Datum pg_size_pretty(PG_FUNCTION_ARGS);
|
1286
|
+
extern Datum pg_options_to_table(PG_FUNCTION_ARGS);
|
1287
|
+
extern Datum record_in(PG_FUNCTION_ARGS);
|
1288
|
+
extern Datum record_out(PG_FUNCTION_ARGS);
|
1289
|
+
extern Datum cstring_in(PG_FUNCTION_ARGS);
|
1290
|
+
extern Datum cstring_out(PG_FUNCTION_ARGS);
|
1291
|
+
extern Datum any_in(PG_FUNCTION_ARGS);
|
1292
|
+
extern Datum any_out(PG_FUNCTION_ARGS);
|
1293
|
+
extern Datum anyarray_in(PG_FUNCTION_ARGS);
|
1294
|
+
extern Datum anyarray_out(PG_FUNCTION_ARGS);
|
1295
|
+
extern Datum void_in(PG_FUNCTION_ARGS);
|
1296
|
+
extern Datum void_out(PG_FUNCTION_ARGS);
|
1297
|
+
extern Datum trigger_in(PG_FUNCTION_ARGS);
|
1298
|
+
extern Datum trigger_out(PG_FUNCTION_ARGS);
|
1299
|
+
extern Datum language_handler_in(PG_FUNCTION_ARGS);
|
1300
|
+
extern Datum language_handler_out(PG_FUNCTION_ARGS);
|
1301
|
+
extern Datum internal_in(PG_FUNCTION_ARGS);
|
1302
|
+
extern Datum internal_out(PG_FUNCTION_ARGS);
|
1303
|
+
extern Datum pg_stat_get_slru(PG_FUNCTION_ARGS);
|
1304
|
+
extern Datum pg_stat_reset_slru(PG_FUNCTION_ARGS);
|
1305
|
+
extern Datum dceil(PG_FUNCTION_ARGS);
|
1306
|
+
extern Datum dfloor(PG_FUNCTION_ARGS);
|
1307
|
+
extern Datum dsign(PG_FUNCTION_ARGS);
|
1308
|
+
extern Datum md5_text(PG_FUNCTION_ARGS);
|
1309
|
+
extern Datum anyelement_in(PG_FUNCTION_ARGS);
|
1310
|
+
extern Datum anyelement_out(PG_FUNCTION_ARGS);
|
1311
|
+
extern Datum postgresql_fdw_validator(PG_FUNCTION_ARGS);
|
1312
|
+
extern Datum pg_encoding_max_length_sql(PG_FUNCTION_ARGS);
|
1313
|
+
extern Datum md5_bytea(PG_FUNCTION_ARGS);
|
1314
|
+
extern Datum pg_tablespace_size_oid(PG_FUNCTION_ARGS);
|
1315
|
+
extern Datum pg_tablespace_size_name(PG_FUNCTION_ARGS);
|
1316
|
+
extern Datum pg_database_size_oid(PG_FUNCTION_ARGS);
|
1317
|
+
extern Datum array_unnest(PG_FUNCTION_ARGS);
|
1318
|
+
extern Datum pg_relation_size(PG_FUNCTION_ARGS);
|
1319
|
+
extern Datum array_agg_transfn(PG_FUNCTION_ARGS);
|
1320
|
+
extern Datum array_agg_finalfn(PG_FUNCTION_ARGS);
|
1321
|
+
extern Datum date_lt_timestamp(PG_FUNCTION_ARGS);
|
1322
|
+
extern Datum date_le_timestamp(PG_FUNCTION_ARGS);
|
1323
|
+
extern Datum date_eq_timestamp(PG_FUNCTION_ARGS);
|
1324
|
+
extern Datum date_gt_timestamp(PG_FUNCTION_ARGS);
|
1325
|
+
extern Datum date_ge_timestamp(PG_FUNCTION_ARGS);
|
1326
|
+
extern Datum date_ne_timestamp(PG_FUNCTION_ARGS);
|
1327
|
+
extern Datum date_cmp_timestamp(PG_FUNCTION_ARGS);
|
1328
|
+
extern Datum date_lt_timestamptz(PG_FUNCTION_ARGS);
|
1329
|
+
extern Datum date_le_timestamptz(PG_FUNCTION_ARGS);
|
1330
|
+
extern Datum date_eq_timestamptz(PG_FUNCTION_ARGS);
|
1331
|
+
extern Datum date_gt_timestamptz(PG_FUNCTION_ARGS);
|
1332
|
+
extern Datum date_ge_timestamptz(PG_FUNCTION_ARGS);
|
1333
|
+
extern Datum date_ne_timestamptz(PG_FUNCTION_ARGS);
|
1334
|
+
extern Datum date_cmp_timestamptz(PG_FUNCTION_ARGS);
|
1335
|
+
extern Datum timestamp_lt_date(PG_FUNCTION_ARGS);
|
1336
|
+
extern Datum timestamp_le_date(PG_FUNCTION_ARGS);
|
1337
|
+
extern Datum timestamp_eq_date(PG_FUNCTION_ARGS);
|
1338
|
+
extern Datum timestamp_gt_date(PG_FUNCTION_ARGS);
|
1339
|
+
extern Datum timestamp_ge_date(PG_FUNCTION_ARGS);
|
1340
|
+
extern Datum timestamp_ne_date(PG_FUNCTION_ARGS);
|
1341
|
+
extern Datum timestamp_cmp_date(PG_FUNCTION_ARGS);
|
1342
|
+
extern Datum timestamptz_lt_date(PG_FUNCTION_ARGS);
|
1343
|
+
extern Datum timestamptz_le_date(PG_FUNCTION_ARGS);
|
1344
|
+
extern Datum timestamptz_eq_date(PG_FUNCTION_ARGS);
|
1345
|
+
extern Datum timestamptz_gt_date(PG_FUNCTION_ARGS);
|
1346
|
+
extern Datum timestamptz_ge_date(PG_FUNCTION_ARGS);
|
1347
|
+
extern Datum timestamptz_ne_date(PG_FUNCTION_ARGS);
|
1348
|
+
extern Datum timestamptz_cmp_date(PG_FUNCTION_ARGS);
|
1349
|
+
extern Datum has_tablespace_privilege_name_name(PG_FUNCTION_ARGS);
|
1350
|
+
extern Datum has_tablespace_privilege_name_id(PG_FUNCTION_ARGS);
|
1351
|
+
extern Datum has_tablespace_privilege_id_name(PG_FUNCTION_ARGS);
|
1352
|
+
extern Datum has_tablespace_privilege_id_id(PG_FUNCTION_ARGS);
|
1353
|
+
extern Datum has_tablespace_privilege_name(PG_FUNCTION_ARGS);
|
1354
|
+
extern Datum has_tablespace_privilege_id(PG_FUNCTION_ARGS);
|
1355
|
+
extern Datum shell_in(PG_FUNCTION_ARGS);
|
1356
|
+
extern Datum shell_out(PG_FUNCTION_ARGS);
|
1357
|
+
extern Datum array_recv(PG_FUNCTION_ARGS);
|
1358
|
+
extern Datum array_send(PG_FUNCTION_ARGS);
|
1359
|
+
extern Datum record_recv(PG_FUNCTION_ARGS);
|
1360
|
+
extern Datum record_send(PG_FUNCTION_ARGS);
|
1361
|
+
extern Datum int2recv(PG_FUNCTION_ARGS);
|
1362
|
+
extern Datum int2send(PG_FUNCTION_ARGS);
|
1363
|
+
extern Datum int4recv(PG_FUNCTION_ARGS);
|
1364
|
+
extern Datum int4send(PG_FUNCTION_ARGS);
|
1365
|
+
extern Datum int8recv(PG_FUNCTION_ARGS);
|
1366
|
+
extern Datum int8send(PG_FUNCTION_ARGS);
|
1367
|
+
extern Datum int2vectorrecv(PG_FUNCTION_ARGS);
|
1368
|
+
extern Datum int2vectorsend(PG_FUNCTION_ARGS);
|
1369
|
+
extern Datum bytearecv(PG_FUNCTION_ARGS);
|
1370
|
+
extern Datum byteasend(PG_FUNCTION_ARGS);
|
1371
|
+
extern Datum textrecv(PG_FUNCTION_ARGS);
|
1372
|
+
extern Datum textsend(PG_FUNCTION_ARGS);
|
1373
|
+
extern Datum unknownrecv(PG_FUNCTION_ARGS);
|
1374
|
+
extern Datum unknownsend(PG_FUNCTION_ARGS);
|
1375
|
+
extern Datum oidrecv(PG_FUNCTION_ARGS);
|
1376
|
+
extern Datum oidsend(PG_FUNCTION_ARGS);
|
1377
|
+
extern Datum oidvectorrecv(PG_FUNCTION_ARGS);
|
1378
|
+
extern Datum oidvectorsend(PG_FUNCTION_ARGS);
|
1379
|
+
extern Datum namerecv(PG_FUNCTION_ARGS);
|
1380
|
+
extern Datum namesend(PG_FUNCTION_ARGS);
|
1381
|
+
extern Datum float4recv(PG_FUNCTION_ARGS);
|
1382
|
+
extern Datum float4send(PG_FUNCTION_ARGS);
|
1383
|
+
extern Datum float8recv(PG_FUNCTION_ARGS);
|
1384
|
+
extern Datum float8send(PG_FUNCTION_ARGS);
|
1385
|
+
extern Datum point_recv(PG_FUNCTION_ARGS);
|
1386
|
+
extern Datum point_send(PG_FUNCTION_ARGS);
|
1387
|
+
extern Datum bpcharrecv(PG_FUNCTION_ARGS);
|
1388
|
+
extern Datum bpcharsend(PG_FUNCTION_ARGS);
|
1389
|
+
extern Datum varcharrecv(PG_FUNCTION_ARGS);
|
1390
|
+
extern Datum varcharsend(PG_FUNCTION_ARGS);
|
1391
|
+
extern Datum charrecv(PG_FUNCTION_ARGS);
|
1392
|
+
extern Datum charsend(PG_FUNCTION_ARGS);
|
1393
|
+
extern Datum boolrecv(PG_FUNCTION_ARGS);
|
1394
|
+
extern Datum boolsend(PG_FUNCTION_ARGS);
|
1395
|
+
extern Datum tidrecv(PG_FUNCTION_ARGS);
|
1396
|
+
extern Datum tidsend(PG_FUNCTION_ARGS);
|
1397
|
+
extern Datum xidrecv(PG_FUNCTION_ARGS);
|
1398
|
+
extern Datum xidsend(PG_FUNCTION_ARGS);
|
1399
|
+
extern Datum cidrecv(PG_FUNCTION_ARGS);
|
1400
|
+
extern Datum cidsend(PG_FUNCTION_ARGS);
|
1401
|
+
extern Datum regprocrecv(PG_FUNCTION_ARGS);
|
1402
|
+
extern Datum regprocsend(PG_FUNCTION_ARGS);
|
1403
|
+
extern Datum regprocedurerecv(PG_FUNCTION_ARGS);
|
1404
|
+
extern Datum regproceduresend(PG_FUNCTION_ARGS);
|
1405
|
+
extern Datum regoperrecv(PG_FUNCTION_ARGS);
|
1406
|
+
extern Datum regopersend(PG_FUNCTION_ARGS);
|
1407
|
+
extern Datum regoperatorrecv(PG_FUNCTION_ARGS);
|
1408
|
+
extern Datum regoperatorsend(PG_FUNCTION_ARGS);
|
1409
|
+
extern Datum regclassrecv(PG_FUNCTION_ARGS);
|
1410
|
+
extern Datum regclasssend(PG_FUNCTION_ARGS);
|
1411
|
+
extern Datum regtyperecv(PG_FUNCTION_ARGS);
|
1412
|
+
extern Datum regtypesend(PG_FUNCTION_ARGS);
|
1413
|
+
extern Datum bit_recv(PG_FUNCTION_ARGS);
|
1414
|
+
extern Datum bit_send(PG_FUNCTION_ARGS);
|
1415
|
+
extern Datum varbit_recv(PG_FUNCTION_ARGS);
|
1416
|
+
extern Datum varbit_send(PG_FUNCTION_ARGS);
|
1417
|
+
extern Datum numeric_recv(PG_FUNCTION_ARGS);
|
1418
|
+
extern Datum numeric_send(PG_FUNCTION_ARGS);
|
1419
|
+
extern Datum dsinh(PG_FUNCTION_ARGS);
|
1420
|
+
extern Datum dcosh(PG_FUNCTION_ARGS);
|
1421
|
+
extern Datum dtanh(PG_FUNCTION_ARGS);
|
1422
|
+
extern Datum dasinh(PG_FUNCTION_ARGS);
|
1423
|
+
extern Datum dacosh(PG_FUNCTION_ARGS);
|
1424
|
+
extern Datum datanh(PG_FUNCTION_ARGS);
|
1425
|
+
extern Datum date_recv(PG_FUNCTION_ARGS);
|
1426
|
+
extern Datum date_send(PG_FUNCTION_ARGS);
|
1427
|
+
extern Datum time_recv(PG_FUNCTION_ARGS);
|
1428
|
+
extern Datum time_send(PG_FUNCTION_ARGS);
|
1429
|
+
extern Datum timetz_recv(PG_FUNCTION_ARGS);
|
1430
|
+
extern Datum timetz_send(PG_FUNCTION_ARGS);
|
1431
|
+
extern Datum timestamp_recv(PG_FUNCTION_ARGS);
|
1432
|
+
extern Datum timestamp_send(PG_FUNCTION_ARGS);
|
1433
|
+
extern Datum timestamptz_recv(PG_FUNCTION_ARGS);
|
1434
|
+
extern Datum timestamptz_send(PG_FUNCTION_ARGS);
|
1435
|
+
extern Datum interval_recv(PG_FUNCTION_ARGS);
|
1436
|
+
extern Datum interval_send(PG_FUNCTION_ARGS);
|
1437
|
+
extern Datum lseg_recv(PG_FUNCTION_ARGS);
|
1438
|
+
extern Datum lseg_send(PG_FUNCTION_ARGS);
|
1439
|
+
extern Datum path_recv(PG_FUNCTION_ARGS);
|
1440
|
+
extern Datum path_send(PG_FUNCTION_ARGS);
|
1441
|
+
extern Datum box_recv(PG_FUNCTION_ARGS);
|
1442
|
+
extern Datum box_send(PG_FUNCTION_ARGS);
|
1443
|
+
extern Datum poly_recv(PG_FUNCTION_ARGS);
|
1444
|
+
extern Datum poly_send(PG_FUNCTION_ARGS);
|
1445
|
+
extern Datum line_recv(PG_FUNCTION_ARGS);
|
1446
|
+
extern Datum line_send(PG_FUNCTION_ARGS);
|
1447
|
+
extern Datum circle_recv(PG_FUNCTION_ARGS);
|
1448
|
+
extern Datum circle_send(PG_FUNCTION_ARGS);
|
1449
|
+
extern Datum cash_recv(PG_FUNCTION_ARGS);
|
1450
|
+
extern Datum cash_send(PG_FUNCTION_ARGS);
|
1451
|
+
extern Datum macaddr_recv(PG_FUNCTION_ARGS);
|
1452
|
+
extern Datum macaddr_send(PG_FUNCTION_ARGS);
|
1453
|
+
extern Datum inet_recv(PG_FUNCTION_ARGS);
|
1454
|
+
extern Datum inet_send(PG_FUNCTION_ARGS);
|
1455
|
+
extern Datum cidr_recv(PG_FUNCTION_ARGS);
|
1456
|
+
extern Datum cidr_send(PG_FUNCTION_ARGS);
|
1457
|
+
extern Datum cstring_recv(PG_FUNCTION_ARGS);
|
1458
|
+
extern Datum cstring_send(PG_FUNCTION_ARGS);
|
1459
|
+
extern Datum anyarray_recv(PG_FUNCTION_ARGS);
|
1460
|
+
extern Datum anyarray_send(PG_FUNCTION_ARGS);
|
1461
|
+
extern Datum pg_get_ruledef_ext(PG_FUNCTION_ARGS);
|
1462
|
+
extern Datum pg_get_viewdef_name_ext(PG_FUNCTION_ARGS);
|
1463
|
+
extern Datum pg_get_viewdef_ext(PG_FUNCTION_ARGS);
|
1464
|
+
extern Datum pg_get_indexdef_ext(PG_FUNCTION_ARGS);
|
1465
|
+
extern Datum pg_get_constraintdef_ext(PG_FUNCTION_ARGS);
|
1466
|
+
extern Datum pg_get_expr_ext(PG_FUNCTION_ARGS);
|
1467
|
+
extern Datum pg_prepared_statement(PG_FUNCTION_ARGS);
|
1468
|
+
extern Datum pg_cursor(PG_FUNCTION_ARGS);
|
1469
|
+
extern Datum float8_var_pop(PG_FUNCTION_ARGS);
|
1470
|
+
extern Datum float8_stddev_pop(PG_FUNCTION_ARGS);
|
1471
|
+
extern Datum numeric_var_pop(PG_FUNCTION_ARGS);
|
1472
|
+
extern Datum booland_statefunc(PG_FUNCTION_ARGS);
|
1473
|
+
extern Datum boolor_statefunc(PG_FUNCTION_ARGS);
|
1474
|
+
extern Datum timestamp_lt_timestamptz(PG_FUNCTION_ARGS);
|
1475
|
+
extern Datum timestamp_le_timestamptz(PG_FUNCTION_ARGS);
|
1476
|
+
extern Datum timestamp_eq_timestamptz(PG_FUNCTION_ARGS);
|
1477
|
+
extern Datum timestamp_gt_timestamptz(PG_FUNCTION_ARGS);
|
1478
|
+
extern Datum timestamp_ge_timestamptz(PG_FUNCTION_ARGS);
|
1479
|
+
extern Datum timestamp_ne_timestamptz(PG_FUNCTION_ARGS);
|
1480
|
+
extern Datum timestamp_cmp_timestamptz(PG_FUNCTION_ARGS);
|
1481
|
+
extern Datum timestamptz_lt_timestamp(PG_FUNCTION_ARGS);
|
1482
|
+
extern Datum timestamptz_le_timestamp(PG_FUNCTION_ARGS);
|
1483
|
+
extern Datum timestamptz_eq_timestamp(PG_FUNCTION_ARGS);
|
1484
|
+
extern Datum timestamptz_gt_timestamp(PG_FUNCTION_ARGS);
|
1485
|
+
extern Datum timestamptz_ge_timestamp(PG_FUNCTION_ARGS);
|
1486
|
+
extern Datum timestamptz_ne_timestamp(PG_FUNCTION_ARGS);
|
1487
|
+
extern Datum timestamptz_cmp_timestamp(PG_FUNCTION_ARGS);
|
1488
|
+
extern Datum pg_tablespace_databases(PG_FUNCTION_ARGS);
|
1489
|
+
extern Datum int4_bool(PG_FUNCTION_ARGS);
|
1490
|
+
extern Datum bool_int4(PG_FUNCTION_ARGS);
|
1491
|
+
extern Datum lastval(PG_FUNCTION_ARGS);
|
1492
|
+
extern Datum pg_postmaster_start_time(PG_FUNCTION_ARGS);
|
1493
|
+
extern Datum pg_blocking_pids(PG_FUNCTION_ARGS);
|
1494
|
+
extern Datum box_below(PG_FUNCTION_ARGS);
|
1495
|
+
extern Datum box_overbelow(PG_FUNCTION_ARGS);
|
1496
|
+
extern Datum box_overabove(PG_FUNCTION_ARGS);
|
1497
|
+
extern Datum box_above(PG_FUNCTION_ARGS);
|
1498
|
+
extern Datum poly_below(PG_FUNCTION_ARGS);
|
1499
|
+
extern Datum poly_overbelow(PG_FUNCTION_ARGS);
|
1500
|
+
extern Datum poly_overabove(PG_FUNCTION_ARGS);
|
1501
|
+
extern Datum poly_above(PG_FUNCTION_ARGS);
|
1502
|
+
extern Datum gist_box_consistent(PG_FUNCTION_ARGS);
|
1503
|
+
extern Datum jsonb_float8(PG_FUNCTION_ARGS);
|
1504
|
+
extern Datum gist_box_penalty(PG_FUNCTION_ARGS);
|
1505
|
+
extern Datum gist_box_picksplit(PG_FUNCTION_ARGS);
|
1506
|
+
extern Datum gist_box_union(PG_FUNCTION_ARGS);
|
1507
|
+
extern Datum gist_box_same(PG_FUNCTION_ARGS);
|
1508
|
+
extern Datum gist_poly_consistent(PG_FUNCTION_ARGS);
|
1509
|
+
extern Datum gist_poly_compress(PG_FUNCTION_ARGS);
|
1510
|
+
extern Datum circle_overbelow(PG_FUNCTION_ARGS);
|
1511
|
+
extern Datum circle_overabove(PG_FUNCTION_ARGS);
|
1512
|
+
extern Datum gist_circle_consistent(PG_FUNCTION_ARGS);
|
1513
|
+
extern Datum gist_circle_compress(PG_FUNCTION_ARGS);
|
1514
|
+
extern Datum numeric_stddev_pop(PG_FUNCTION_ARGS);
|
1515
|
+
extern Datum domain_in(PG_FUNCTION_ARGS);
|
1516
|
+
extern Datum domain_recv(PG_FUNCTION_ARGS);
|
1517
|
+
extern Datum pg_timezone_abbrevs(PG_FUNCTION_ARGS);
|
1518
|
+
extern Datum xmlexists(PG_FUNCTION_ARGS);
|
1519
|
+
extern Datum pg_reload_conf(PG_FUNCTION_ARGS);
|
1520
|
+
extern Datum pg_rotate_logfile_v2(PG_FUNCTION_ARGS);
|
1521
|
+
extern Datum pg_stat_file_1arg(PG_FUNCTION_ARGS);
|
1522
|
+
extern Datum pg_read_file_off_len(PG_FUNCTION_ARGS);
|
1523
|
+
extern Datum pg_ls_dir_1arg(PG_FUNCTION_ARGS);
|
1524
|
+
extern Datum pg_sleep(PG_FUNCTION_ARGS);
|
1525
|
+
extern Datum inetnot(PG_FUNCTION_ARGS);
|
1526
|
+
extern Datum inetand(PG_FUNCTION_ARGS);
|
1527
|
+
extern Datum inetor(PG_FUNCTION_ARGS);
|
1528
|
+
extern Datum inetpl(PG_FUNCTION_ARGS);
|
1529
|
+
extern Datum inetmi_int8(PG_FUNCTION_ARGS);
|
1530
|
+
extern Datum inetmi(PG_FUNCTION_ARGS);
|
1531
|
+
extern Datum statement_timestamp(PG_FUNCTION_ARGS);
|
1532
|
+
extern Datum clock_timestamp(PG_FUNCTION_ARGS);
|
1533
|
+
extern Datum gin_cmp_prefix(PG_FUNCTION_ARGS);
|
1534
|
+
extern Datum pg_has_role_name_name(PG_FUNCTION_ARGS);
|
1535
|
+
extern Datum pg_has_role_name_id(PG_FUNCTION_ARGS);
|
1536
|
+
extern Datum pg_has_role_id_name(PG_FUNCTION_ARGS);
|
1537
|
+
extern Datum pg_has_role_id_id(PG_FUNCTION_ARGS);
|
1538
|
+
extern Datum pg_has_role_name(PG_FUNCTION_ARGS);
|
1539
|
+
extern Datum pg_has_role_id(PG_FUNCTION_ARGS);
|
1540
|
+
extern Datum interval_justify_interval(PG_FUNCTION_ARGS);
|
1541
|
+
extern Datum pg_get_triggerdef_ext(PG_FUNCTION_ARGS);
|
1542
|
+
extern Datum dasind(PG_FUNCTION_ARGS);
|
1543
|
+
extern Datum dacosd(PG_FUNCTION_ARGS);
|
1544
|
+
extern Datum datand(PG_FUNCTION_ARGS);
|
1545
|
+
extern Datum datan2d(PG_FUNCTION_ARGS);
|
1546
|
+
extern Datum dsind(PG_FUNCTION_ARGS);
|
1547
|
+
extern Datum dcosd(PG_FUNCTION_ARGS);
|
1548
|
+
extern Datum dtand(PG_FUNCTION_ARGS);
|
1549
|
+
extern Datum dcotd(PG_FUNCTION_ARGS);
|
1550
|
+
extern Datum pg_stop_backup_v2(PG_FUNCTION_ARGS);
|
1551
|
+
extern Datum numeric_avg_serialize(PG_FUNCTION_ARGS);
|
1552
|
+
extern Datum numeric_avg_deserialize(PG_FUNCTION_ARGS);
|
1553
|
+
extern Datum ginarrayextract(PG_FUNCTION_ARGS);
|
1554
|
+
extern Datum ginarrayconsistent(PG_FUNCTION_ARGS);
|
1555
|
+
extern Datum int8_avg_accum(PG_FUNCTION_ARGS);
|
1556
|
+
extern Datum arrayoverlap(PG_FUNCTION_ARGS);
|
1557
|
+
extern Datum arraycontains(PG_FUNCTION_ARGS);
|
1558
|
+
extern Datum arraycontained(PG_FUNCTION_ARGS);
|
1559
|
+
extern Datum pg_stat_get_db_tuples_returned(PG_FUNCTION_ARGS);
|
1560
|
+
extern Datum pg_stat_get_db_tuples_fetched(PG_FUNCTION_ARGS);
|
1561
|
+
extern Datum pg_stat_get_db_tuples_inserted(PG_FUNCTION_ARGS);
|
1562
|
+
extern Datum pg_stat_get_db_tuples_updated(PG_FUNCTION_ARGS);
|
1563
|
+
extern Datum pg_stat_get_db_tuples_deleted(PG_FUNCTION_ARGS);
|
1564
|
+
extern Datum regexp_matches_no_flags(PG_FUNCTION_ARGS);
|
1565
|
+
extern Datum regexp_matches(PG_FUNCTION_ARGS);
|
1566
|
+
extern Datum regexp_split_to_table_no_flags(PG_FUNCTION_ARGS);
|
1567
|
+
extern Datum regexp_split_to_table(PG_FUNCTION_ARGS);
|
1568
|
+
extern Datum regexp_split_to_array_no_flags(PG_FUNCTION_ARGS);
|
1569
|
+
extern Datum regexp_split_to_array(PG_FUNCTION_ARGS);
|
1570
|
+
extern Datum pg_stat_get_bgwriter_timed_checkpoints(PG_FUNCTION_ARGS);
|
1571
|
+
extern Datum pg_stat_get_bgwriter_requested_checkpoints(PG_FUNCTION_ARGS);
|
1572
|
+
extern Datum pg_stat_get_bgwriter_buf_written_checkpoints(PG_FUNCTION_ARGS);
|
1573
|
+
extern Datum pg_stat_get_bgwriter_buf_written_clean(PG_FUNCTION_ARGS);
|
1574
|
+
extern Datum pg_stat_get_bgwriter_maxwritten_clean(PG_FUNCTION_ARGS);
|
1575
|
+
extern Datum ginqueryarrayextract(PG_FUNCTION_ARGS);
|
1576
|
+
extern Datum pg_stat_get_buf_written_backend(PG_FUNCTION_ARGS);
|
1577
|
+
extern Datum anynonarray_in(PG_FUNCTION_ARGS);
|
1578
|
+
extern Datum anynonarray_out(PG_FUNCTION_ARGS);
|
1579
|
+
extern Datum pg_stat_get_last_vacuum_time(PG_FUNCTION_ARGS);
|
1580
|
+
extern Datum pg_stat_get_last_autovacuum_time(PG_FUNCTION_ARGS);
|
1581
|
+
extern Datum pg_stat_get_last_analyze_time(PG_FUNCTION_ARGS);
|
1582
|
+
extern Datum pg_stat_get_last_autoanalyze_time(PG_FUNCTION_ARGS);
|
1583
|
+
extern Datum int8_avg_combine(PG_FUNCTION_ARGS);
|
1584
|
+
extern Datum int8_avg_serialize(PG_FUNCTION_ARGS);
|
1585
|
+
extern Datum int8_avg_deserialize(PG_FUNCTION_ARGS);
|
1586
|
+
extern Datum pg_stat_get_backend_wait_event_type(PG_FUNCTION_ARGS);
|
1587
|
+
extern Datum tidgt(PG_FUNCTION_ARGS);
|
1588
|
+
extern Datum tidlt(PG_FUNCTION_ARGS);
|
1589
|
+
extern Datum tidge(PG_FUNCTION_ARGS);
|
1590
|
+
extern Datum tidle(PG_FUNCTION_ARGS);
|
1591
|
+
extern Datum bttidcmp(PG_FUNCTION_ARGS);
|
1592
|
+
extern Datum tidlarger(PG_FUNCTION_ARGS);
|
1593
|
+
extern Datum tidsmaller(PG_FUNCTION_ARGS);
|
1594
|
+
extern Datum int8inc_any(PG_FUNCTION_ARGS);
|
1595
|
+
extern Datum int8inc_float8_float8(PG_FUNCTION_ARGS);
|
1596
|
+
extern Datum float8_regr_accum(PG_FUNCTION_ARGS);
|
1597
|
+
extern Datum float8_regr_sxx(PG_FUNCTION_ARGS);
|
1598
|
+
extern Datum float8_regr_syy(PG_FUNCTION_ARGS);
|
1599
|
+
extern Datum float8_regr_sxy(PG_FUNCTION_ARGS);
|
1600
|
+
extern Datum float8_regr_avgx(PG_FUNCTION_ARGS);
|
1601
|
+
extern Datum float8_regr_avgy(PG_FUNCTION_ARGS);
|
1602
|
+
extern Datum float8_regr_r2(PG_FUNCTION_ARGS);
|
1603
|
+
extern Datum float8_regr_slope(PG_FUNCTION_ARGS);
|
1604
|
+
extern Datum float8_regr_intercept(PG_FUNCTION_ARGS);
|
1605
|
+
extern Datum float8_covar_pop(PG_FUNCTION_ARGS);
|
1606
|
+
extern Datum float8_covar_samp(PG_FUNCTION_ARGS);
|
1607
|
+
extern Datum float8_corr(PG_FUNCTION_ARGS);
|
1608
|
+
extern Datum pg_stat_get_db_blk_read_time(PG_FUNCTION_ARGS);
|
1609
|
+
extern Datum pg_stat_get_db_blk_write_time(PG_FUNCTION_ARGS);
|
1610
|
+
extern Datum pg_switch_wal(PG_FUNCTION_ARGS);
|
1611
|
+
extern Datum pg_current_wal_lsn(PG_FUNCTION_ARGS);
|
1612
|
+
extern Datum pg_walfile_name_offset(PG_FUNCTION_ARGS);
|
1613
|
+
extern Datum pg_walfile_name(PG_FUNCTION_ARGS);
|
1614
|
+
extern Datum pg_current_wal_insert_lsn(PG_FUNCTION_ARGS);
|
1615
|
+
extern Datum pg_stat_get_backend_wait_event(PG_FUNCTION_ARGS);
|
1616
|
+
extern Datum pg_my_temp_schema(PG_FUNCTION_ARGS);
|
1617
|
+
extern Datum pg_is_other_temp_schema(PG_FUNCTION_ARGS);
|
1618
|
+
extern Datum pg_timezone_names(PG_FUNCTION_ARGS);
|
1619
|
+
extern Datum pg_stat_get_backend_xact_start(PG_FUNCTION_ARGS);
|
1620
|
+
extern Datum numeric_avg_accum(PG_FUNCTION_ARGS);
|
1621
|
+
extern Datum pg_stat_get_buf_alloc(PG_FUNCTION_ARGS);
|
1622
|
+
extern Datum pg_stat_get_live_tuples(PG_FUNCTION_ARGS);
|
1623
|
+
extern Datum pg_stat_get_dead_tuples(PG_FUNCTION_ARGS);
|
1624
|
+
extern Datum pg_advisory_lock_int8(PG_FUNCTION_ARGS);
|
1625
|
+
extern Datum pg_advisory_lock_shared_int8(PG_FUNCTION_ARGS);
|
1626
|
+
extern Datum pg_try_advisory_lock_int8(PG_FUNCTION_ARGS);
|
1627
|
+
extern Datum pg_try_advisory_lock_shared_int8(PG_FUNCTION_ARGS);
|
1628
|
+
extern Datum pg_advisory_unlock_int8(PG_FUNCTION_ARGS);
|
1629
|
+
extern Datum pg_advisory_unlock_shared_int8(PG_FUNCTION_ARGS);
|
1630
|
+
extern Datum pg_advisory_lock_int4(PG_FUNCTION_ARGS);
|
1631
|
+
extern Datum pg_advisory_lock_shared_int4(PG_FUNCTION_ARGS);
|
1632
|
+
extern Datum pg_try_advisory_lock_int4(PG_FUNCTION_ARGS);
|
1633
|
+
extern Datum pg_try_advisory_lock_shared_int4(PG_FUNCTION_ARGS);
|
1634
|
+
extern Datum pg_advisory_unlock_int4(PG_FUNCTION_ARGS);
|
1635
|
+
extern Datum pg_advisory_unlock_shared_int4(PG_FUNCTION_ARGS);
|
1636
|
+
extern Datum pg_advisory_unlock_all(PG_FUNCTION_ARGS);
|
1637
|
+
extern Datum xml_in(PG_FUNCTION_ARGS);
|
1638
|
+
extern Datum xml_out(PG_FUNCTION_ARGS);
|
1639
|
+
extern Datum xmlcomment(PG_FUNCTION_ARGS);
|
1640
|
+
extern Datum texttoxml(PG_FUNCTION_ARGS);
|
1641
|
+
extern Datum xmlvalidate(PG_FUNCTION_ARGS);
|
1642
|
+
extern Datum xml_recv(PG_FUNCTION_ARGS);
|
1643
|
+
extern Datum xml_send(PG_FUNCTION_ARGS);
|
1644
|
+
extern Datum xmlconcat2(PG_FUNCTION_ARGS);
|
1645
|
+
extern Datum varbittypmodin(PG_FUNCTION_ARGS);
|
1646
|
+
extern Datum intervaltypmodin(PG_FUNCTION_ARGS);
|
1647
|
+
extern Datum intervaltypmodout(PG_FUNCTION_ARGS);
|
1648
|
+
extern Datum timestamptypmodin(PG_FUNCTION_ARGS);
|
1649
|
+
extern Datum timestamptypmodout(PG_FUNCTION_ARGS);
|
1650
|
+
extern Datum timestamptztypmodin(PG_FUNCTION_ARGS);
|
1651
|
+
extern Datum timestamptztypmodout(PG_FUNCTION_ARGS);
|
1652
|
+
extern Datum timetypmodin(PG_FUNCTION_ARGS);
|
1653
|
+
extern Datum timetypmodout(PG_FUNCTION_ARGS);
|
1654
|
+
extern Datum timetztypmodin(PG_FUNCTION_ARGS);
|
1655
|
+
extern Datum timetztypmodout(PG_FUNCTION_ARGS);
|
1656
|
+
extern Datum bpchartypmodin(PG_FUNCTION_ARGS);
|
1657
|
+
extern Datum bpchartypmodout(PG_FUNCTION_ARGS);
|
1658
|
+
extern Datum varchartypmodin(PG_FUNCTION_ARGS);
|
1659
|
+
extern Datum varchartypmodout(PG_FUNCTION_ARGS);
|
1660
|
+
extern Datum numerictypmodin(PG_FUNCTION_ARGS);
|
1661
|
+
extern Datum numerictypmodout(PG_FUNCTION_ARGS);
|
1662
|
+
extern Datum bittypmodin(PG_FUNCTION_ARGS);
|
1663
|
+
extern Datum bittypmodout(PG_FUNCTION_ARGS);
|
1664
|
+
extern Datum varbittypmodout(PG_FUNCTION_ARGS);
|
1665
|
+
extern Datum xmltotext(PG_FUNCTION_ARGS);
|
1666
|
+
extern Datum table_to_xml(PG_FUNCTION_ARGS);
|
1667
|
+
extern Datum query_to_xml(PG_FUNCTION_ARGS);
|
1668
|
+
extern Datum cursor_to_xml(PG_FUNCTION_ARGS);
|
1669
|
+
extern Datum table_to_xmlschema(PG_FUNCTION_ARGS);
|
1670
|
+
extern Datum query_to_xmlschema(PG_FUNCTION_ARGS);
|
1671
|
+
extern Datum cursor_to_xmlschema(PG_FUNCTION_ARGS);
|
1672
|
+
extern Datum table_to_xml_and_xmlschema(PG_FUNCTION_ARGS);
|
1673
|
+
extern Datum query_to_xml_and_xmlschema(PG_FUNCTION_ARGS);
|
1674
|
+
extern Datum xpath(PG_FUNCTION_ARGS);
|
1675
|
+
extern Datum schema_to_xml(PG_FUNCTION_ARGS);
|
1676
|
+
extern Datum schema_to_xmlschema(PG_FUNCTION_ARGS);
|
1677
|
+
extern Datum schema_to_xml_and_xmlschema(PG_FUNCTION_ARGS);
|
1678
|
+
extern Datum database_to_xml(PG_FUNCTION_ARGS);
|
1679
|
+
extern Datum database_to_xmlschema(PG_FUNCTION_ARGS);
|
1680
|
+
extern Datum database_to_xml_and_xmlschema(PG_FUNCTION_ARGS);
|
1681
|
+
extern Datum pg_snapshot_in(PG_FUNCTION_ARGS);
|
1682
|
+
extern Datum pg_snapshot_out(PG_FUNCTION_ARGS);
|
1683
|
+
extern Datum pg_snapshot_recv(PG_FUNCTION_ARGS);
|
1684
|
+
extern Datum pg_snapshot_send(PG_FUNCTION_ARGS);
|
1685
|
+
extern Datum pg_current_xact_id(PG_FUNCTION_ARGS);
|
1686
|
+
extern Datum pg_current_snapshot(PG_FUNCTION_ARGS);
|
1687
|
+
extern Datum pg_snapshot_xmin(PG_FUNCTION_ARGS);
|
1688
|
+
extern Datum pg_snapshot_xmax(PG_FUNCTION_ARGS);
|
1689
|
+
extern Datum pg_snapshot_xip(PG_FUNCTION_ARGS);
|
1690
|
+
extern Datum pg_visible_in_snapshot(PG_FUNCTION_ARGS);
|
1691
|
+
extern Datum uuid_in(PG_FUNCTION_ARGS);
|
1692
|
+
extern Datum uuid_out(PG_FUNCTION_ARGS);
|
1693
|
+
extern Datum uuid_lt(PG_FUNCTION_ARGS);
|
1694
|
+
extern Datum uuid_le(PG_FUNCTION_ARGS);
|
1695
|
+
extern Datum uuid_eq(PG_FUNCTION_ARGS);
|
1696
|
+
extern Datum uuid_ge(PG_FUNCTION_ARGS);
|
1697
|
+
extern Datum uuid_gt(PG_FUNCTION_ARGS);
|
1698
|
+
extern Datum uuid_ne(PG_FUNCTION_ARGS);
|
1699
|
+
extern Datum uuid_cmp(PG_FUNCTION_ARGS);
|
1700
|
+
extern Datum uuid_recv(PG_FUNCTION_ARGS);
|
1701
|
+
extern Datum uuid_send(PG_FUNCTION_ARGS);
|
1702
|
+
extern Datum uuid_hash(PG_FUNCTION_ARGS);
|
1703
|
+
extern Datum booltext(PG_FUNCTION_ARGS);
|
1704
|
+
extern Datum pg_stat_get_function_calls(PG_FUNCTION_ARGS);
|
1705
|
+
extern Datum pg_stat_get_function_total_time(PG_FUNCTION_ARGS);
|
1706
|
+
extern Datum pg_stat_get_function_self_time(PG_FUNCTION_ARGS);
|
1707
|
+
extern Datum record_eq(PG_FUNCTION_ARGS);
|
1708
|
+
extern Datum record_ne(PG_FUNCTION_ARGS);
|
1709
|
+
extern Datum record_lt(PG_FUNCTION_ARGS);
|
1710
|
+
extern Datum record_gt(PG_FUNCTION_ARGS);
|
1711
|
+
extern Datum record_le(PG_FUNCTION_ARGS);
|
1712
|
+
extern Datum record_ge(PG_FUNCTION_ARGS);
|
1713
|
+
extern Datum btrecordcmp(PG_FUNCTION_ARGS);
|
1714
|
+
extern Datum pg_table_size(PG_FUNCTION_ARGS);
|
1715
|
+
extern Datum pg_indexes_size(PG_FUNCTION_ARGS);
|
1716
|
+
extern Datum pg_relation_filenode(PG_FUNCTION_ARGS);
|
1717
|
+
extern Datum has_foreign_data_wrapper_privilege_name_name(PG_FUNCTION_ARGS);
|
1718
|
+
extern Datum has_foreign_data_wrapper_privilege_name_id(PG_FUNCTION_ARGS);
|
1719
|
+
extern Datum has_foreign_data_wrapper_privilege_id_name(PG_FUNCTION_ARGS);
|
1720
|
+
extern Datum has_foreign_data_wrapper_privilege_id_id(PG_FUNCTION_ARGS);
|
1721
|
+
extern Datum has_foreign_data_wrapper_privilege_name(PG_FUNCTION_ARGS);
|
1722
|
+
extern Datum has_foreign_data_wrapper_privilege_id(PG_FUNCTION_ARGS);
|
1723
|
+
extern Datum has_server_privilege_name_name(PG_FUNCTION_ARGS);
|
1724
|
+
extern Datum has_server_privilege_name_id(PG_FUNCTION_ARGS);
|
1725
|
+
extern Datum has_server_privilege_id_name(PG_FUNCTION_ARGS);
|
1726
|
+
extern Datum has_server_privilege_id_id(PG_FUNCTION_ARGS);
|
1727
|
+
extern Datum has_server_privilege_name(PG_FUNCTION_ARGS);
|
1728
|
+
extern Datum has_server_privilege_id(PG_FUNCTION_ARGS);
|
1729
|
+
extern Datum has_column_privilege_name_name_name(PG_FUNCTION_ARGS);
|
1730
|
+
extern Datum has_column_privilege_name_name_attnum(PG_FUNCTION_ARGS);
|
1731
|
+
extern Datum has_column_privilege_name_id_name(PG_FUNCTION_ARGS);
|
1732
|
+
extern Datum has_column_privilege_name_id_attnum(PG_FUNCTION_ARGS);
|
1733
|
+
extern Datum has_column_privilege_id_name_name(PG_FUNCTION_ARGS);
|
1734
|
+
extern Datum has_column_privilege_id_name_attnum(PG_FUNCTION_ARGS);
|
1735
|
+
extern Datum has_column_privilege_id_id_name(PG_FUNCTION_ARGS);
|
1736
|
+
extern Datum has_column_privilege_id_id_attnum(PG_FUNCTION_ARGS);
|
1737
|
+
extern Datum has_column_privilege_name_name(PG_FUNCTION_ARGS);
|
1738
|
+
extern Datum has_column_privilege_name_attnum(PG_FUNCTION_ARGS);
|
1739
|
+
extern Datum has_column_privilege_id_name(PG_FUNCTION_ARGS);
|
1740
|
+
extern Datum has_column_privilege_id_attnum(PG_FUNCTION_ARGS);
|
1741
|
+
extern Datum has_any_column_privilege_name_name(PG_FUNCTION_ARGS);
|
1742
|
+
extern Datum has_any_column_privilege_name_id(PG_FUNCTION_ARGS);
|
1743
|
+
extern Datum has_any_column_privilege_id_name(PG_FUNCTION_ARGS);
|
1744
|
+
extern Datum has_any_column_privilege_id_id(PG_FUNCTION_ARGS);
|
1745
|
+
extern Datum has_any_column_privilege_name(PG_FUNCTION_ARGS);
|
1746
|
+
extern Datum has_any_column_privilege_id(PG_FUNCTION_ARGS);
|
1747
|
+
extern Datum bitoverlay(PG_FUNCTION_ARGS);
|
1748
|
+
extern Datum bitoverlay_no_len(PG_FUNCTION_ARGS);
|
1749
|
+
extern Datum bitgetbit(PG_FUNCTION_ARGS);
|
1750
|
+
extern Datum bitsetbit(PG_FUNCTION_ARGS);
|
1751
|
+
extern Datum pg_relation_filepath(PG_FUNCTION_ARGS);
|
1752
|
+
extern Datum pg_listening_channels(PG_FUNCTION_ARGS);
|
1753
|
+
extern Datum pg_notify(PG_FUNCTION_ARGS);
|
1754
|
+
extern Datum pg_stat_get_xact_numscans(PG_FUNCTION_ARGS);
|
1755
|
+
extern Datum pg_stat_get_xact_tuples_returned(PG_FUNCTION_ARGS);
|
1756
|
+
extern Datum pg_stat_get_xact_tuples_fetched(PG_FUNCTION_ARGS);
|
1757
|
+
extern Datum pg_stat_get_xact_tuples_inserted(PG_FUNCTION_ARGS);
|
1758
|
+
extern Datum pg_stat_get_xact_tuples_updated(PG_FUNCTION_ARGS);
|
1759
|
+
extern Datum pg_stat_get_xact_tuples_deleted(PG_FUNCTION_ARGS);
|
1760
|
+
extern Datum pg_stat_get_xact_tuples_hot_updated(PG_FUNCTION_ARGS);
|
1761
|
+
extern Datum pg_stat_get_xact_blocks_fetched(PG_FUNCTION_ARGS);
|
1762
|
+
extern Datum pg_stat_get_xact_blocks_hit(PG_FUNCTION_ARGS);
|
1763
|
+
extern Datum pg_stat_get_xact_function_calls(PG_FUNCTION_ARGS);
|
1764
|
+
extern Datum pg_stat_get_xact_function_total_time(PG_FUNCTION_ARGS);
|
1765
|
+
extern Datum pg_stat_get_xact_function_self_time(PG_FUNCTION_ARGS);
|
1766
|
+
extern Datum xpath_exists(PG_FUNCTION_ARGS);
|
1767
|
+
extern Datum xml_is_well_formed(PG_FUNCTION_ARGS);
|
1768
|
+
extern Datum xml_is_well_formed_document(PG_FUNCTION_ARGS);
|
1769
|
+
extern Datum xml_is_well_formed_content(PG_FUNCTION_ARGS);
|
1770
|
+
extern Datum pg_stat_get_vacuum_count(PG_FUNCTION_ARGS);
|
1771
|
+
extern Datum pg_stat_get_autovacuum_count(PG_FUNCTION_ARGS);
|
1772
|
+
extern Datum pg_stat_get_analyze_count(PG_FUNCTION_ARGS);
|
1773
|
+
extern Datum pg_stat_get_autoanalyze_count(PG_FUNCTION_ARGS);
|
1774
|
+
extern Datum text_concat(PG_FUNCTION_ARGS);
|
1775
|
+
extern Datum text_concat_ws(PG_FUNCTION_ARGS);
|
1776
|
+
extern Datum text_left(PG_FUNCTION_ARGS);
|
1777
|
+
extern Datum text_right(PG_FUNCTION_ARGS);
|
1778
|
+
extern Datum text_reverse(PG_FUNCTION_ARGS);
|
1779
|
+
extern Datum pg_stat_get_buf_fsync_backend(PG_FUNCTION_ARGS);
|
1780
|
+
extern Datum gist_point_distance(PG_FUNCTION_ARGS);
|
1781
|
+
extern Datum pg_stat_get_db_conflict_tablespace(PG_FUNCTION_ARGS);
|
1782
|
+
extern Datum pg_stat_get_db_conflict_lock(PG_FUNCTION_ARGS);
|
1783
|
+
extern Datum pg_stat_get_db_conflict_snapshot(PG_FUNCTION_ARGS);
|
1784
|
+
extern Datum pg_stat_get_db_conflict_bufferpin(PG_FUNCTION_ARGS);
|
1785
|
+
extern Datum pg_stat_get_db_conflict_startup_deadlock(PG_FUNCTION_ARGS);
|
1786
|
+
extern Datum pg_stat_get_db_conflict_all(PG_FUNCTION_ARGS);
|
1787
|
+
extern Datum pg_wal_replay_pause(PG_FUNCTION_ARGS);
|
1788
|
+
extern Datum pg_wal_replay_resume(PG_FUNCTION_ARGS);
|
1789
|
+
extern Datum pg_is_wal_replay_paused(PG_FUNCTION_ARGS);
|
1790
|
+
extern Datum pg_stat_get_db_stat_reset_time(PG_FUNCTION_ARGS);
|
1791
|
+
extern Datum pg_stat_get_bgwriter_stat_reset_time(PG_FUNCTION_ARGS);
|
1792
|
+
extern Datum ginarrayextract_2args(PG_FUNCTION_ARGS);
|
1793
|
+
extern Datum gin_extract_tsvector_2args(PG_FUNCTION_ARGS);
|
1794
|
+
extern Datum pg_sequence_parameters(PG_FUNCTION_ARGS);
|
1795
|
+
extern Datum pg_available_extensions(PG_FUNCTION_ARGS);
|
1796
|
+
extern Datum pg_available_extension_versions(PG_FUNCTION_ARGS);
|
1797
|
+
extern Datum pg_extension_update_paths(PG_FUNCTION_ARGS);
|
1798
|
+
extern Datum pg_extension_config_dump(PG_FUNCTION_ARGS);
|
1799
|
+
extern Datum gin_extract_tsquery_5args(PG_FUNCTION_ARGS);
|
1800
|
+
extern Datum gin_tsquery_consistent_6args(PG_FUNCTION_ARGS);
|
1801
|
+
extern Datum pg_advisory_xact_lock_int8(PG_FUNCTION_ARGS);
|
1802
|
+
extern Datum pg_advisory_xact_lock_shared_int8(PG_FUNCTION_ARGS);
|
1803
|
+
extern Datum pg_try_advisory_xact_lock_int8(PG_FUNCTION_ARGS);
|
1804
|
+
extern Datum pg_try_advisory_xact_lock_shared_int8(PG_FUNCTION_ARGS);
|
1805
|
+
extern Datum pg_advisory_xact_lock_int4(PG_FUNCTION_ARGS);
|
1806
|
+
extern Datum pg_advisory_xact_lock_shared_int4(PG_FUNCTION_ARGS);
|
1807
|
+
extern Datum pg_try_advisory_xact_lock_int4(PG_FUNCTION_ARGS);
|
1808
|
+
extern Datum pg_try_advisory_xact_lock_shared_int4(PG_FUNCTION_ARGS);
|
1809
|
+
extern Datum varchar_support(PG_FUNCTION_ARGS);
|
1810
|
+
extern Datum pg_create_restore_point(PG_FUNCTION_ARGS);
|
1811
|
+
extern Datum pg_stat_get_wal_senders(PG_FUNCTION_ARGS);
|
1812
|
+
extern Datum window_row_number(PG_FUNCTION_ARGS);
|
1813
|
+
extern Datum window_rank(PG_FUNCTION_ARGS);
|
1814
|
+
extern Datum window_dense_rank(PG_FUNCTION_ARGS);
|
1815
|
+
extern Datum window_percent_rank(PG_FUNCTION_ARGS);
|
1816
|
+
extern Datum window_cume_dist(PG_FUNCTION_ARGS);
|
1817
|
+
extern Datum window_ntile(PG_FUNCTION_ARGS);
|
1818
|
+
extern Datum window_lag(PG_FUNCTION_ARGS);
|
1819
|
+
extern Datum window_lag_with_offset(PG_FUNCTION_ARGS);
|
1820
|
+
extern Datum window_lag_with_offset_and_default(PG_FUNCTION_ARGS);
|
1821
|
+
extern Datum window_lead(PG_FUNCTION_ARGS);
|
1822
|
+
extern Datum window_lead_with_offset(PG_FUNCTION_ARGS);
|
1823
|
+
extern Datum window_lead_with_offset_and_default(PG_FUNCTION_ARGS);
|
1824
|
+
extern Datum window_first_value(PG_FUNCTION_ARGS);
|
1825
|
+
extern Datum window_last_value(PG_FUNCTION_ARGS);
|
1826
|
+
extern Datum window_nth_value(PG_FUNCTION_ARGS);
|
1827
|
+
extern Datum fdw_handler_in(PG_FUNCTION_ARGS);
|
1828
|
+
extern Datum fdw_handler_out(PG_FUNCTION_ARGS);
|
1829
|
+
extern Datum void_recv(PG_FUNCTION_ARGS);
|
1830
|
+
extern Datum void_send(PG_FUNCTION_ARGS);
|
1831
|
+
extern Datum btint2sortsupport(PG_FUNCTION_ARGS);
|
1832
|
+
extern Datum btint4sortsupport(PG_FUNCTION_ARGS);
|
1833
|
+
extern Datum btint8sortsupport(PG_FUNCTION_ARGS);
|
1834
|
+
extern Datum btfloat4sortsupport(PG_FUNCTION_ARGS);
|
1835
|
+
extern Datum btfloat8sortsupport(PG_FUNCTION_ARGS);
|
1836
|
+
extern Datum btoidsortsupport(PG_FUNCTION_ARGS);
|
1837
|
+
extern Datum btnamesortsupport(PG_FUNCTION_ARGS);
|
1838
|
+
extern Datum date_sortsupport(PG_FUNCTION_ARGS);
|
1839
|
+
extern Datum timestamp_sortsupport(PG_FUNCTION_ARGS);
|
1840
|
+
extern Datum has_type_privilege_name_name(PG_FUNCTION_ARGS);
|
1841
|
+
extern Datum has_type_privilege_name_id(PG_FUNCTION_ARGS);
|
1842
|
+
extern Datum has_type_privilege_id_name(PG_FUNCTION_ARGS);
|
1843
|
+
extern Datum has_type_privilege_id_id(PG_FUNCTION_ARGS);
|
1844
|
+
extern Datum has_type_privilege_name(PG_FUNCTION_ARGS);
|
1845
|
+
extern Datum has_type_privilege_id(PG_FUNCTION_ARGS);
|
1846
|
+
extern Datum macaddr_not(PG_FUNCTION_ARGS);
|
1847
|
+
extern Datum macaddr_and(PG_FUNCTION_ARGS);
|
1848
|
+
extern Datum macaddr_or(PG_FUNCTION_ARGS);
|
1849
|
+
extern Datum pg_stat_get_db_temp_files(PG_FUNCTION_ARGS);
|
1850
|
+
extern Datum pg_stat_get_db_temp_bytes(PG_FUNCTION_ARGS);
|
1851
|
+
extern Datum pg_stat_get_db_deadlocks(PG_FUNCTION_ARGS);
|
1852
|
+
extern Datum array_to_json(PG_FUNCTION_ARGS);
|
1853
|
+
extern Datum array_to_json_pretty(PG_FUNCTION_ARGS);
|
1854
|
+
extern Datum row_to_json(PG_FUNCTION_ARGS);
|
1855
|
+
extern Datum row_to_json_pretty(PG_FUNCTION_ARGS);
|
1856
|
+
extern Datum numeric_support(PG_FUNCTION_ARGS);
|
1857
|
+
extern Datum varbit_support(PG_FUNCTION_ARGS);
|
1858
|
+
extern Datum pg_get_viewdef_wrap(PG_FUNCTION_ARGS);
|
1859
|
+
extern Datum pg_stat_get_checkpoint_write_time(PG_FUNCTION_ARGS);
|
1860
|
+
extern Datum pg_stat_get_checkpoint_sync_time(PG_FUNCTION_ARGS);
|
1861
|
+
extern Datum pg_collation_for(PG_FUNCTION_ARGS);
|
1862
|
+
extern Datum pg_trigger_depth(PG_FUNCTION_ARGS);
|
1863
|
+
extern Datum pg_wal_lsn_diff(PG_FUNCTION_ARGS);
|
1864
|
+
extern Datum pg_size_pretty_numeric(PG_FUNCTION_ARGS);
|
1865
|
+
extern Datum array_remove(PG_FUNCTION_ARGS);
|
1866
|
+
extern Datum array_replace(PG_FUNCTION_ARGS);
|
1867
|
+
extern Datum rangesel(PG_FUNCTION_ARGS);
|
1868
|
+
extern Datum be_lo_lseek64(PG_FUNCTION_ARGS);
|
1869
|
+
extern Datum be_lo_tell64(PG_FUNCTION_ARGS);
|
1870
|
+
extern Datum be_lo_truncate64(PG_FUNCTION_ARGS);
|
1871
|
+
extern Datum json_agg_transfn(PG_FUNCTION_ARGS);
|
1872
|
+
extern Datum json_agg_finalfn(PG_FUNCTION_ARGS);
|
1873
|
+
extern Datum to_json(PG_FUNCTION_ARGS);
|
1874
|
+
extern Datum pg_stat_get_mod_since_analyze(PG_FUNCTION_ARGS);
|
1875
|
+
extern Datum numeric_sum(PG_FUNCTION_ARGS);
|
1876
|
+
extern Datum array_cardinality(PG_FUNCTION_ARGS);
|
1877
|
+
extern Datum json_object_agg_transfn(PG_FUNCTION_ARGS);
|
1878
|
+
extern Datum record_image_eq(PG_FUNCTION_ARGS);
|
1879
|
+
extern Datum record_image_ne(PG_FUNCTION_ARGS);
|
1880
|
+
extern Datum record_image_lt(PG_FUNCTION_ARGS);
|
1881
|
+
extern Datum record_image_gt(PG_FUNCTION_ARGS);
|
1882
|
+
extern Datum record_image_le(PG_FUNCTION_ARGS);
|
1883
|
+
extern Datum record_image_ge(PG_FUNCTION_ARGS);
|
1884
|
+
extern Datum btrecordimagecmp(PG_FUNCTION_ARGS);
|
1885
|
+
extern Datum pg_stat_get_archiver(PG_FUNCTION_ARGS);
|
1886
|
+
extern Datum json_object_agg_finalfn(PG_FUNCTION_ARGS);
|
1887
|
+
extern Datum json_build_array(PG_FUNCTION_ARGS);
|
1888
|
+
extern Datum json_build_array_noargs(PG_FUNCTION_ARGS);
|
1889
|
+
extern Datum json_build_object(PG_FUNCTION_ARGS);
|
1890
|
+
extern Datum json_build_object_noargs(PG_FUNCTION_ARGS);
|
1891
|
+
extern Datum json_object(PG_FUNCTION_ARGS);
|
1892
|
+
extern Datum json_object_two_arg(PG_FUNCTION_ARGS);
|
1893
|
+
extern Datum json_to_record(PG_FUNCTION_ARGS);
|
1894
|
+
extern Datum json_to_recordset(PG_FUNCTION_ARGS);
|
1895
|
+
extern Datum jsonb_array_length(PG_FUNCTION_ARGS);
|
1896
|
+
extern Datum jsonb_each(PG_FUNCTION_ARGS);
|
1897
|
+
extern Datum jsonb_populate_record(PG_FUNCTION_ARGS);
|
1898
|
+
extern Datum jsonb_typeof(PG_FUNCTION_ARGS);
|
1899
|
+
extern Datum jsonb_object_field_text(PG_FUNCTION_ARGS);
|
1900
|
+
extern Datum jsonb_array_element(PG_FUNCTION_ARGS);
|
1901
|
+
extern Datum jsonb_array_element_text(PG_FUNCTION_ARGS);
|
1902
|
+
extern Datum jsonb_extract_path(PG_FUNCTION_ARGS);
|
1903
|
+
extern Datum width_bucket_array(PG_FUNCTION_ARGS);
|
1904
|
+
extern Datum jsonb_array_elements(PG_FUNCTION_ARGS);
|
1905
|
+
extern Datum pg_lsn_in(PG_FUNCTION_ARGS);
|
1906
|
+
extern Datum pg_lsn_out(PG_FUNCTION_ARGS);
|
1907
|
+
extern Datum pg_lsn_lt(PG_FUNCTION_ARGS);
|
1908
|
+
extern Datum pg_lsn_le(PG_FUNCTION_ARGS);
|
1909
|
+
extern Datum pg_lsn_eq(PG_FUNCTION_ARGS);
|
1910
|
+
extern Datum pg_lsn_ge(PG_FUNCTION_ARGS);
|
1911
|
+
extern Datum pg_lsn_gt(PG_FUNCTION_ARGS);
|
1912
|
+
extern Datum pg_lsn_ne(PG_FUNCTION_ARGS);
|
1913
|
+
extern Datum pg_lsn_mi(PG_FUNCTION_ARGS);
|
1914
|
+
extern Datum pg_lsn_recv(PG_FUNCTION_ARGS);
|
1915
|
+
extern Datum pg_lsn_send(PG_FUNCTION_ARGS);
|
1916
|
+
extern Datum pg_lsn_cmp(PG_FUNCTION_ARGS);
|
1917
|
+
extern Datum pg_lsn_hash(PG_FUNCTION_ARGS);
|
1918
|
+
extern Datum bttextsortsupport(PG_FUNCTION_ARGS);
|
1919
|
+
extern Datum generate_series_step_numeric(PG_FUNCTION_ARGS);
|
1920
|
+
extern Datum generate_series_numeric(PG_FUNCTION_ARGS);
|
1921
|
+
extern Datum json_strip_nulls(PG_FUNCTION_ARGS);
|
1922
|
+
extern Datum jsonb_strip_nulls(PG_FUNCTION_ARGS);
|
1923
|
+
extern Datum jsonb_object(PG_FUNCTION_ARGS);
|
1924
|
+
extern Datum jsonb_object_two_arg(PG_FUNCTION_ARGS);
|
1925
|
+
extern Datum jsonb_agg_transfn(PG_FUNCTION_ARGS);
|
1926
|
+
extern Datum jsonb_agg_finalfn(PG_FUNCTION_ARGS);
|
1927
|
+
extern Datum jsonb_object_agg_transfn(PG_FUNCTION_ARGS);
|
1928
|
+
extern Datum jsonb_object_agg_finalfn(PG_FUNCTION_ARGS);
|
1929
|
+
extern Datum jsonb_build_array(PG_FUNCTION_ARGS);
|
1930
|
+
extern Datum jsonb_build_array_noargs(PG_FUNCTION_ARGS);
|
1931
|
+
extern Datum jsonb_build_object(PG_FUNCTION_ARGS);
|
1932
|
+
extern Datum jsonb_build_object_noargs(PG_FUNCTION_ARGS);
|
1933
|
+
extern Datum dist_ppoly(PG_FUNCTION_ARGS);
|
1934
|
+
extern Datum array_position(PG_FUNCTION_ARGS);
|
1935
|
+
extern Datum array_position_start(PG_FUNCTION_ARGS);
|
1936
|
+
extern Datum array_positions(PG_FUNCTION_ARGS);
|
1937
|
+
extern Datum gist_circle_distance(PG_FUNCTION_ARGS);
|
1938
|
+
extern Datum numeric_scale(PG_FUNCTION_ARGS);
|
1939
|
+
extern Datum gist_point_fetch(PG_FUNCTION_ARGS);
|
1940
|
+
extern Datum numeric_sortsupport(PG_FUNCTION_ARGS);
|
1941
|
+
extern Datum gist_poly_distance(PG_FUNCTION_ARGS);
|
1942
|
+
extern Datum dist_cpoint(PG_FUNCTION_ARGS);
|
1943
|
+
extern Datum dist_polyp(PG_FUNCTION_ARGS);
|
1944
|
+
extern Datum pg_read_file_v2(PG_FUNCTION_ARGS);
|
1945
|
+
extern Datum show_config_by_name_missing_ok(PG_FUNCTION_ARGS);
|
1946
|
+
extern Datum pg_read_binary_file(PG_FUNCTION_ARGS);
|
1947
|
+
extern Datum pg_notification_queue_usage(PG_FUNCTION_ARGS);
|
1948
|
+
extern Datum pg_ls_dir(PG_FUNCTION_ARGS);
|
1949
|
+
extern Datum row_security_active(PG_FUNCTION_ARGS);
|
1950
|
+
extern Datum row_security_active_name(PG_FUNCTION_ARGS);
|
1951
|
+
extern Datum uuid_sortsupport(PG_FUNCTION_ARGS);
|
1952
|
+
extern Datum jsonb_concat(PG_FUNCTION_ARGS);
|
1953
|
+
extern Datum jsonb_delete(PG_FUNCTION_ARGS);
|
1954
|
+
extern Datum jsonb_delete_idx(PG_FUNCTION_ARGS);
|
1955
|
+
extern Datum jsonb_delete_path(PG_FUNCTION_ARGS);
|
1956
|
+
extern Datum jsonb_set(PG_FUNCTION_ARGS);
|
1957
|
+
extern Datum jsonb_pretty(PG_FUNCTION_ARGS);
|
1958
|
+
extern Datum pg_stat_file(PG_FUNCTION_ARGS);
|
1959
|
+
extern Datum xidneq(PG_FUNCTION_ARGS);
|
1960
|
+
extern Datum tsm_handler_in(PG_FUNCTION_ARGS);
|
1961
|
+
extern Datum tsm_handler_out(PG_FUNCTION_ARGS);
|
1962
|
+
extern Datum tsm_bernoulli_handler(PG_FUNCTION_ARGS);
|
1963
|
+
extern Datum tsm_system_handler(PG_FUNCTION_ARGS);
|
1964
|
+
extern Datum pg_stat_get_wal_receiver(PG_FUNCTION_ARGS);
|
1965
|
+
extern Datum pg_stat_get_progress_info(PG_FUNCTION_ARGS);
|
1966
|
+
extern Datum tsvector_filter(PG_FUNCTION_ARGS);
|
1967
|
+
extern Datum tsvector_setweight_by_filter(PG_FUNCTION_ARGS);
|
1968
|
+
extern Datum tsvector_delete_str(PG_FUNCTION_ARGS);
|
1969
|
+
extern Datum tsvector_unnest(PG_FUNCTION_ARGS);
|
1970
|
+
extern Datum tsvector_delete_arr(PG_FUNCTION_ARGS);
|
1971
|
+
extern Datum int4_avg_combine(PG_FUNCTION_ARGS);
|
1972
|
+
extern Datum interval_combine(PG_FUNCTION_ARGS);
|
1973
|
+
extern Datum tsvector_to_array(PG_FUNCTION_ARGS);
|
1974
|
+
extern Datum array_to_tsvector(PG_FUNCTION_ARGS);
|
1975
|
+
extern Datum bpchar_sortsupport(PG_FUNCTION_ARGS);
|
1976
|
+
extern Datum show_all_file_settings(PG_FUNCTION_ARGS);
|
1977
|
+
extern Datum pg_current_wal_flush_lsn(PG_FUNCTION_ARGS);
|
1978
|
+
extern Datum bytea_sortsupport(PG_FUNCTION_ARGS);
|
1979
|
+
extern Datum bttext_pattern_sortsupport(PG_FUNCTION_ARGS);
|
1980
|
+
extern Datum btbpchar_pattern_sortsupport(PG_FUNCTION_ARGS);
|
1981
|
+
extern Datum pg_size_bytes(PG_FUNCTION_ARGS);
|
1982
|
+
extern Datum numeric_serialize(PG_FUNCTION_ARGS);
|
1983
|
+
extern Datum numeric_deserialize(PG_FUNCTION_ARGS);
|
1984
|
+
extern Datum numeric_avg_combine(PG_FUNCTION_ARGS);
|
1985
|
+
extern Datum numeric_poly_combine(PG_FUNCTION_ARGS);
|
1986
|
+
extern Datum numeric_poly_serialize(PG_FUNCTION_ARGS);
|
1987
|
+
extern Datum numeric_poly_deserialize(PG_FUNCTION_ARGS);
|
1988
|
+
extern Datum numeric_combine(PG_FUNCTION_ARGS);
|
1989
|
+
extern Datum float8_regr_combine(PG_FUNCTION_ARGS);
|
1990
|
+
extern Datum jsonb_delete_array(PG_FUNCTION_ARGS);
|
1991
|
+
extern Datum cash_mul_int8(PG_FUNCTION_ARGS);
|
1992
|
+
extern Datum cash_div_int8(PG_FUNCTION_ARGS);
|
1993
|
+
extern Datum pg_current_xact_id_if_assigned(PG_FUNCTION_ARGS);
|
1994
|
+
extern Datum pg_get_partkeydef(PG_FUNCTION_ARGS);
|
1995
|
+
extern Datum pg_ls_logdir(PG_FUNCTION_ARGS);
|
1996
|
+
extern Datum pg_ls_waldir(PG_FUNCTION_ARGS);
|
1997
|
+
extern Datum pg_ndistinct_in(PG_FUNCTION_ARGS);
|
1998
|
+
extern Datum pg_ndistinct_out(PG_FUNCTION_ARGS);
|
1999
|
+
extern Datum pg_ndistinct_recv(PG_FUNCTION_ARGS);
|
2000
|
+
extern Datum pg_ndistinct_send(PG_FUNCTION_ARGS);
|
2001
|
+
extern Datum macaddr_sortsupport(PG_FUNCTION_ARGS);
|
2002
|
+
extern Datum pg_xact_status(PG_FUNCTION_ARGS);
|
2003
|
+
extern Datum pg_safe_snapshot_blocking_pids(PG_FUNCTION_ARGS);
|
2004
|
+
extern Datum pg_isolation_test_session_is_blocked(PG_FUNCTION_ARGS);
|
2005
|
+
extern Datum pg_identify_object_as_address(PG_FUNCTION_ARGS);
|
2006
|
+
extern Datum brin_minmax_opcinfo(PG_FUNCTION_ARGS);
|
2007
|
+
extern Datum brin_minmax_add_value(PG_FUNCTION_ARGS);
|
2008
|
+
extern Datum brin_minmax_consistent(PG_FUNCTION_ARGS);
|
2009
|
+
extern Datum brin_minmax_union(PG_FUNCTION_ARGS);
|
2010
|
+
extern Datum int8_avg_accum_inv(PG_FUNCTION_ARGS);
|
2011
|
+
extern Datum numeric_poly_sum(PG_FUNCTION_ARGS);
|
2012
|
+
extern Datum numeric_poly_avg(PG_FUNCTION_ARGS);
|
2013
|
+
extern Datum numeric_poly_var_pop(PG_FUNCTION_ARGS);
|
2014
|
+
extern Datum numeric_poly_var_samp(PG_FUNCTION_ARGS);
|
2015
|
+
extern Datum numeric_poly_stddev_pop(PG_FUNCTION_ARGS);
|
2016
|
+
extern Datum numeric_poly_stddev_samp(PG_FUNCTION_ARGS);
|
2017
|
+
extern Datum regexp_match_no_flags(PG_FUNCTION_ARGS);
|
2018
|
+
extern Datum regexp_match(PG_FUNCTION_ARGS);
|
2019
|
+
extern Datum int8_mul_cash(PG_FUNCTION_ARGS);
|
2020
|
+
extern Datum pg_config(PG_FUNCTION_ARGS);
|
2021
|
+
extern Datum pg_hba_file_rules(PG_FUNCTION_ARGS);
|
2022
|
+
extern Datum pg_statistics_obj_is_visible(PG_FUNCTION_ARGS);
|
2023
|
+
extern Datum pg_dependencies_in(PG_FUNCTION_ARGS);
|
2024
|
+
extern Datum pg_dependencies_out(PG_FUNCTION_ARGS);
|
2025
|
+
extern Datum pg_dependencies_recv(PG_FUNCTION_ARGS);
|
2026
|
+
extern Datum pg_dependencies_send(PG_FUNCTION_ARGS);
|
2027
|
+
extern Datum pg_get_partition_constraintdef(PG_FUNCTION_ARGS);
|
2028
|
+
extern Datum time_hash_extended(PG_FUNCTION_ARGS);
|
2029
|
+
extern Datum timetz_hash_extended(PG_FUNCTION_ARGS);
|
2030
|
+
extern Datum timestamp_hash_extended(PG_FUNCTION_ARGS);
|
2031
|
+
extern Datum uuid_hash_extended(PG_FUNCTION_ARGS);
|
2032
|
+
extern Datum pg_lsn_hash_extended(PG_FUNCTION_ARGS);
|
2033
|
+
extern Datum hashenumextended(PG_FUNCTION_ARGS);
|
2034
|
+
extern Datum pg_get_statisticsobjdef(PG_FUNCTION_ARGS);
|
2035
|
+
extern Datum jsonb_hash_extended(PG_FUNCTION_ARGS);
|
2036
|
+
extern Datum hash_range_extended(PG_FUNCTION_ARGS);
|
2037
|
+
extern Datum interval_hash_extended(PG_FUNCTION_ARGS);
|
2038
|
+
extern Datum sha224_bytea(PG_FUNCTION_ARGS);
|
2039
|
+
extern Datum sha256_bytea(PG_FUNCTION_ARGS);
|
2040
|
+
extern Datum sha384_bytea(PG_FUNCTION_ARGS);
|
2041
|
+
extern Datum sha512_bytea(PG_FUNCTION_ARGS);
|
2042
|
+
extern Datum pg_partition_tree(PG_FUNCTION_ARGS);
|
2043
|
+
extern Datum pg_partition_root(PG_FUNCTION_ARGS);
|
2044
|
+
extern Datum pg_partition_ancestors(PG_FUNCTION_ARGS);
|
2045
|
+
extern Datum pg_stat_get_db_checksum_failures(PG_FUNCTION_ARGS);
|
2046
|
+
extern Datum pg_stats_ext_mcvlist_items(PG_FUNCTION_ARGS);
|
2047
|
+
extern Datum pg_stat_get_db_checksum_last_failure(PG_FUNCTION_ARGS);
|
2048
|
+
extern Datum gen_random_uuid(PG_FUNCTION_ARGS);
|
2049
|
+
extern Datum gtsvector_options(PG_FUNCTION_ARGS);
|
2050
|
+
extern Datum pg_promote(PG_FUNCTION_ARGS);
|
2051
|
+
extern Datum prefixsel(PG_FUNCTION_ARGS);
|
2052
|
+
extern Datum prefixjoinsel(PG_FUNCTION_ARGS);
|
2053
|
+
extern Datum pg_control_system(PG_FUNCTION_ARGS);
|
2054
|
+
extern Datum pg_control_checkpoint(PG_FUNCTION_ARGS);
|
2055
|
+
extern Datum pg_control_recovery(PG_FUNCTION_ARGS);
|
2056
|
+
extern Datum pg_control_init(PG_FUNCTION_ARGS);
|
2057
|
+
extern Datum pg_import_system_collations(PG_FUNCTION_ARGS);
|
2058
|
+
extern Datum macaddr8_recv(PG_FUNCTION_ARGS);
|
2059
|
+
extern Datum macaddr8_send(PG_FUNCTION_ARGS);
|
2060
|
+
extern Datum pg_collation_actual_version(PG_FUNCTION_ARGS);
|
2061
|
+
extern Datum jsonb_numeric(PG_FUNCTION_ARGS);
|
2062
|
+
extern Datum jsonb_int2(PG_FUNCTION_ARGS);
|
2063
|
+
extern Datum jsonb_int4(PG_FUNCTION_ARGS);
|
2064
|
+
extern Datum jsonb_int8(PG_FUNCTION_ARGS);
|
2065
|
+
extern Datum jsonb_float4(PG_FUNCTION_ARGS);
|
2066
|
+
extern Datum pg_filenode_relation(PG_FUNCTION_ARGS);
|
2067
|
+
extern Datum be_lo_from_bytea(PG_FUNCTION_ARGS);
|
2068
|
+
extern Datum be_lo_get(PG_FUNCTION_ARGS);
|
2069
|
+
extern Datum be_lo_get_fragment(PG_FUNCTION_ARGS);
|
2070
|
+
extern Datum be_lo_put(PG_FUNCTION_ARGS);
|
2071
|
+
extern Datum make_timestamp(PG_FUNCTION_ARGS);
|
2072
|
+
extern Datum make_timestamptz(PG_FUNCTION_ARGS);
|
2073
|
+
extern Datum make_timestamptz_at_timezone(PG_FUNCTION_ARGS);
|
2074
|
+
extern Datum make_interval(PG_FUNCTION_ARGS);
|
2075
|
+
extern Datum jsonb_array_elements_text(PG_FUNCTION_ARGS);
|
2076
|
+
extern Datum spg_range_quad_config(PG_FUNCTION_ARGS);
|
2077
|
+
extern Datum spg_range_quad_choose(PG_FUNCTION_ARGS);
|
2078
|
+
extern Datum spg_range_quad_picksplit(PG_FUNCTION_ARGS);
|
2079
|
+
extern Datum spg_range_quad_inner_consistent(PG_FUNCTION_ARGS);
|
2080
|
+
extern Datum spg_range_quad_leaf_consistent(PG_FUNCTION_ARGS);
|
2081
|
+
extern Datum jsonb_populate_recordset(PG_FUNCTION_ARGS);
|
2082
|
+
extern Datum to_regoperator(PG_FUNCTION_ARGS);
|
2083
|
+
extern Datum jsonb_object_field(PG_FUNCTION_ARGS);
|
2084
|
+
extern Datum to_regprocedure(PG_FUNCTION_ARGS);
|
2085
|
+
extern Datum gin_compare_jsonb(PG_FUNCTION_ARGS);
|
2086
|
+
extern Datum gin_extract_jsonb(PG_FUNCTION_ARGS);
|
2087
|
+
extern Datum gin_extract_jsonb_query(PG_FUNCTION_ARGS);
|
2088
|
+
extern Datum gin_consistent_jsonb(PG_FUNCTION_ARGS);
|
2089
|
+
extern Datum gin_extract_jsonb_path(PG_FUNCTION_ARGS);
|
2090
|
+
extern Datum gin_extract_jsonb_query_path(PG_FUNCTION_ARGS);
|
2091
|
+
extern Datum gin_consistent_jsonb_path(PG_FUNCTION_ARGS);
|
2092
|
+
extern Datum gin_triconsistent_jsonb(PG_FUNCTION_ARGS);
|
2093
|
+
extern Datum gin_triconsistent_jsonb_path(PG_FUNCTION_ARGS);
|
2094
|
+
extern Datum jsonb_to_record(PG_FUNCTION_ARGS);
|
2095
|
+
extern Datum jsonb_to_recordset(PG_FUNCTION_ARGS);
|
2096
|
+
extern Datum to_regoper(PG_FUNCTION_ARGS);
|
2097
|
+
extern Datum to_regtype(PG_FUNCTION_ARGS);
|
2098
|
+
extern Datum to_regproc(PG_FUNCTION_ARGS);
|
2099
|
+
extern Datum to_regclass(PG_FUNCTION_ARGS);
|
2100
|
+
extern Datum bool_accum(PG_FUNCTION_ARGS);
|
2101
|
+
extern Datum bool_accum_inv(PG_FUNCTION_ARGS);
|
2102
|
+
extern Datum bool_alltrue(PG_FUNCTION_ARGS);
|
2103
|
+
extern Datum bool_anytrue(PG_FUNCTION_ARGS);
|
2104
|
+
extern Datum anyenum_in(PG_FUNCTION_ARGS);
|
2105
|
+
extern Datum anyenum_out(PG_FUNCTION_ARGS);
|
2106
|
+
extern Datum enum_in(PG_FUNCTION_ARGS);
|
2107
|
+
extern Datum enum_out(PG_FUNCTION_ARGS);
|
2108
|
+
extern Datum enum_eq(PG_FUNCTION_ARGS);
|
2109
|
+
extern Datum enum_ne(PG_FUNCTION_ARGS);
|
2110
|
+
extern Datum enum_lt(PG_FUNCTION_ARGS);
|
2111
|
+
extern Datum enum_gt(PG_FUNCTION_ARGS);
|
2112
|
+
extern Datum enum_le(PG_FUNCTION_ARGS);
|
2113
|
+
extern Datum enum_ge(PG_FUNCTION_ARGS);
|
2114
|
+
extern Datum enum_cmp(PG_FUNCTION_ARGS);
|
2115
|
+
extern Datum hashenum(PG_FUNCTION_ARGS);
|
2116
|
+
extern Datum enum_smaller(PG_FUNCTION_ARGS);
|
2117
|
+
extern Datum enum_larger(PG_FUNCTION_ARGS);
|
2118
|
+
extern Datum enum_first(PG_FUNCTION_ARGS);
|
2119
|
+
extern Datum enum_last(PG_FUNCTION_ARGS);
|
2120
|
+
extern Datum enum_range_bounds(PG_FUNCTION_ARGS);
|
2121
|
+
extern Datum enum_range_all(PG_FUNCTION_ARGS);
|
2122
|
+
extern Datum enum_recv(PG_FUNCTION_ARGS);
|
2123
|
+
extern Datum enum_send(PG_FUNCTION_ARGS);
|
2124
|
+
extern Datum string_agg_transfn(PG_FUNCTION_ARGS);
|
2125
|
+
extern Datum string_agg_finalfn(PG_FUNCTION_ARGS);
|
2126
|
+
extern Datum pg_describe_object(PG_FUNCTION_ARGS);
|
2127
|
+
extern Datum text_format(PG_FUNCTION_ARGS);
|
2128
|
+
extern Datum text_format_nv(PG_FUNCTION_ARGS);
|
2129
|
+
extern Datum bytea_string_agg_transfn(PG_FUNCTION_ARGS);
|
2130
|
+
extern Datum bytea_string_agg_finalfn(PG_FUNCTION_ARGS);
|
2131
|
+
extern Datum int8dec(PG_FUNCTION_ARGS);
|
2132
|
+
extern Datum int8dec_any(PG_FUNCTION_ARGS);
|
2133
|
+
extern Datum numeric_accum_inv(PG_FUNCTION_ARGS);
|
2134
|
+
extern Datum interval_accum_inv(PG_FUNCTION_ARGS);
|
2135
|
+
extern Datum network_overlap(PG_FUNCTION_ARGS);
|
2136
|
+
extern Datum inet_gist_consistent(PG_FUNCTION_ARGS);
|
2137
|
+
extern Datum inet_gist_union(PG_FUNCTION_ARGS);
|
2138
|
+
extern Datum inet_gist_compress(PG_FUNCTION_ARGS);
|
2139
|
+
extern Datum jsonb_bool(PG_FUNCTION_ARGS);
|
2140
|
+
extern Datum inet_gist_penalty(PG_FUNCTION_ARGS);
|
2141
|
+
extern Datum inet_gist_picksplit(PG_FUNCTION_ARGS);
|
2142
|
+
extern Datum inet_gist_same(PG_FUNCTION_ARGS);
|
2143
|
+
extern Datum networksel(PG_FUNCTION_ARGS);
|
2144
|
+
extern Datum networkjoinsel(PG_FUNCTION_ARGS);
|
2145
|
+
extern Datum network_larger(PG_FUNCTION_ARGS);
|
2146
|
+
extern Datum network_smaller(PG_FUNCTION_ARGS);
|
2147
|
+
extern Datum pg_event_trigger_dropped_objects(PG_FUNCTION_ARGS);
|
2148
|
+
extern Datum int2_accum_inv(PG_FUNCTION_ARGS);
|
2149
|
+
extern Datum int4_accum_inv(PG_FUNCTION_ARGS);
|
2150
|
+
extern Datum int8_accum_inv(PG_FUNCTION_ARGS);
|
2151
|
+
extern Datum int2_avg_accum_inv(PG_FUNCTION_ARGS);
|
2152
|
+
extern Datum int4_avg_accum_inv(PG_FUNCTION_ARGS);
|
2153
|
+
extern Datum int2int4_sum(PG_FUNCTION_ARGS);
|
2154
|
+
extern Datum inet_gist_fetch(PG_FUNCTION_ARGS);
|
2155
|
+
extern Datum pg_logical_emit_message_text(PG_FUNCTION_ARGS);
|
2156
|
+
extern Datum pg_logical_emit_message_bytea(PG_FUNCTION_ARGS);
|
2157
|
+
extern Datum jsonb_insert(PG_FUNCTION_ARGS);
|
2158
|
+
extern Datum pg_xact_commit_timestamp(PG_FUNCTION_ARGS);
|
2159
|
+
extern Datum binary_upgrade_set_next_pg_type_oid(PG_FUNCTION_ARGS);
|
2160
|
+
extern Datum pg_last_committed_xact(PG_FUNCTION_ARGS);
|
2161
|
+
extern Datum binary_upgrade_set_next_array_pg_type_oid(PG_FUNCTION_ARGS);
|
2162
|
+
extern Datum binary_upgrade_set_next_toast_pg_type_oid(PG_FUNCTION_ARGS);
|
2163
|
+
extern Datum binary_upgrade_set_next_heap_pg_class_oid(PG_FUNCTION_ARGS);
|
2164
|
+
extern Datum binary_upgrade_set_next_index_pg_class_oid(PG_FUNCTION_ARGS);
|
2165
|
+
extern Datum binary_upgrade_set_next_toast_pg_class_oid(PG_FUNCTION_ARGS);
|
2166
|
+
extern Datum binary_upgrade_set_next_pg_enum_oid(PG_FUNCTION_ARGS);
|
2167
|
+
extern Datum binary_upgrade_set_next_pg_authid_oid(PG_FUNCTION_ARGS);
|
2168
|
+
extern Datum binary_upgrade_create_empty_extension(PG_FUNCTION_ARGS);
|
2169
|
+
extern Datum event_trigger_in(PG_FUNCTION_ARGS);
|
2170
|
+
extern Datum event_trigger_out(PG_FUNCTION_ARGS);
|
2171
|
+
extern Datum tsvectorin(PG_FUNCTION_ARGS);
|
2172
|
+
extern Datum tsvectorout(PG_FUNCTION_ARGS);
|
2173
|
+
extern Datum tsqueryin(PG_FUNCTION_ARGS);
|
2174
|
+
extern Datum tsqueryout(PG_FUNCTION_ARGS);
|
2175
|
+
extern Datum tsvector_lt(PG_FUNCTION_ARGS);
|
2176
|
+
extern Datum tsvector_le(PG_FUNCTION_ARGS);
|
2177
|
+
extern Datum tsvector_eq(PG_FUNCTION_ARGS);
|
2178
|
+
extern Datum tsvector_ne(PG_FUNCTION_ARGS);
|
2179
|
+
extern Datum tsvector_ge(PG_FUNCTION_ARGS);
|
2180
|
+
extern Datum tsvector_gt(PG_FUNCTION_ARGS);
|
2181
|
+
extern Datum tsvector_cmp(PG_FUNCTION_ARGS);
|
2182
|
+
extern Datum tsvector_strip(PG_FUNCTION_ARGS);
|
2183
|
+
extern Datum tsvector_setweight(PG_FUNCTION_ARGS);
|
2184
|
+
extern Datum tsvector_concat(PG_FUNCTION_ARGS);
|
2185
|
+
extern Datum ts_match_vq(PG_FUNCTION_ARGS);
|
2186
|
+
extern Datum ts_match_qv(PG_FUNCTION_ARGS);
|
2187
|
+
extern Datum tsvectorsend(PG_FUNCTION_ARGS);
|
2188
|
+
extern Datum tsvectorrecv(PG_FUNCTION_ARGS);
|
2189
|
+
extern Datum tsquerysend(PG_FUNCTION_ARGS);
|
2190
|
+
extern Datum tsqueryrecv(PG_FUNCTION_ARGS);
|
2191
|
+
extern Datum gtsvectorin(PG_FUNCTION_ARGS);
|
2192
|
+
extern Datum gtsvectorout(PG_FUNCTION_ARGS);
|
2193
|
+
extern Datum gtsvector_compress(PG_FUNCTION_ARGS);
|
2194
|
+
extern Datum gtsvector_decompress(PG_FUNCTION_ARGS);
|
2195
|
+
extern Datum gtsvector_picksplit(PG_FUNCTION_ARGS);
|
2196
|
+
extern Datum gtsvector_union(PG_FUNCTION_ARGS);
|
2197
|
+
extern Datum gtsvector_same(PG_FUNCTION_ARGS);
|
2198
|
+
extern Datum gtsvector_penalty(PG_FUNCTION_ARGS);
|
2199
|
+
extern Datum gtsvector_consistent(PG_FUNCTION_ARGS);
|
2200
|
+
extern Datum gin_extract_tsvector(PG_FUNCTION_ARGS);
|
2201
|
+
extern Datum gin_extract_tsquery(PG_FUNCTION_ARGS);
|
2202
|
+
extern Datum gin_tsquery_consistent(PG_FUNCTION_ARGS);
|
2203
|
+
extern Datum tsquery_lt(PG_FUNCTION_ARGS);
|
2204
|
+
extern Datum tsquery_le(PG_FUNCTION_ARGS);
|
2205
|
+
extern Datum tsquery_eq(PG_FUNCTION_ARGS);
|
2206
|
+
extern Datum tsquery_ne(PG_FUNCTION_ARGS);
|
2207
|
+
extern Datum tsquery_ge(PG_FUNCTION_ARGS);
|
2208
|
+
extern Datum tsquery_gt(PG_FUNCTION_ARGS);
|
2209
|
+
extern Datum tsquery_cmp(PG_FUNCTION_ARGS);
|
2210
|
+
extern Datum tsquery_and(PG_FUNCTION_ARGS);
|
2211
|
+
extern Datum tsquery_or(PG_FUNCTION_ARGS);
|
2212
|
+
extern Datum tsquery_not(PG_FUNCTION_ARGS);
|
2213
|
+
extern Datum tsquery_numnode(PG_FUNCTION_ARGS);
|
2214
|
+
extern Datum tsquerytree(PG_FUNCTION_ARGS);
|
2215
|
+
extern Datum tsquery_rewrite(PG_FUNCTION_ARGS);
|
2216
|
+
extern Datum tsquery_rewrite_query(PG_FUNCTION_ARGS);
|
2217
|
+
extern Datum tsmatchsel(PG_FUNCTION_ARGS);
|
2218
|
+
extern Datum tsmatchjoinsel(PG_FUNCTION_ARGS);
|
2219
|
+
extern Datum ts_typanalyze(PG_FUNCTION_ARGS);
|
2220
|
+
extern Datum ts_stat1(PG_FUNCTION_ARGS);
|
2221
|
+
extern Datum ts_stat2(PG_FUNCTION_ARGS);
|
2222
|
+
extern Datum tsq_mcontains(PG_FUNCTION_ARGS);
|
2223
|
+
extern Datum tsq_mcontained(PG_FUNCTION_ARGS);
|
2224
|
+
extern Datum gtsquery_compress(PG_FUNCTION_ARGS);
|
2225
|
+
extern Datum text_starts_with(PG_FUNCTION_ARGS);
|
2226
|
+
extern Datum gtsquery_picksplit(PG_FUNCTION_ARGS);
|
2227
|
+
extern Datum gtsquery_union(PG_FUNCTION_ARGS);
|
2228
|
+
extern Datum gtsquery_same(PG_FUNCTION_ARGS);
|
2229
|
+
extern Datum gtsquery_penalty(PG_FUNCTION_ARGS);
|
2230
|
+
extern Datum gtsquery_consistent(PG_FUNCTION_ARGS);
|
2231
|
+
extern Datum ts_rank_wttf(PG_FUNCTION_ARGS);
|
2232
|
+
extern Datum ts_rank_wtt(PG_FUNCTION_ARGS);
|
2233
|
+
extern Datum ts_rank_ttf(PG_FUNCTION_ARGS);
|
2234
|
+
extern Datum ts_rank_tt(PG_FUNCTION_ARGS);
|
2235
|
+
extern Datum ts_rankcd_wttf(PG_FUNCTION_ARGS);
|
2236
|
+
extern Datum ts_rankcd_wtt(PG_FUNCTION_ARGS);
|
2237
|
+
extern Datum ts_rankcd_ttf(PG_FUNCTION_ARGS);
|
2238
|
+
extern Datum ts_rankcd_tt(PG_FUNCTION_ARGS);
|
2239
|
+
extern Datum tsvector_length(PG_FUNCTION_ARGS);
|
2240
|
+
extern Datum ts_token_type_byid(PG_FUNCTION_ARGS);
|
2241
|
+
extern Datum ts_token_type_byname(PG_FUNCTION_ARGS);
|
2242
|
+
extern Datum ts_parse_byid(PG_FUNCTION_ARGS);
|
2243
|
+
extern Datum ts_parse_byname(PG_FUNCTION_ARGS);
|
2244
|
+
extern Datum prsd_start(PG_FUNCTION_ARGS);
|
2245
|
+
extern Datum prsd_nexttoken(PG_FUNCTION_ARGS);
|
2246
|
+
extern Datum prsd_end(PG_FUNCTION_ARGS);
|
2247
|
+
extern Datum prsd_headline(PG_FUNCTION_ARGS);
|
2248
|
+
extern Datum prsd_lextype(PG_FUNCTION_ARGS);
|
2249
|
+
extern Datum ts_lexize(PG_FUNCTION_ARGS);
|
2250
|
+
extern Datum gin_cmp_tslexeme(PG_FUNCTION_ARGS);
|
2251
|
+
extern Datum dsimple_init(PG_FUNCTION_ARGS);
|
2252
|
+
extern Datum dsimple_lexize(PG_FUNCTION_ARGS);
|
2253
|
+
extern Datum dsynonym_init(PG_FUNCTION_ARGS);
|
2254
|
+
extern Datum dsynonym_lexize(PG_FUNCTION_ARGS);
|
2255
|
+
extern Datum dispell_init(PG_FUNCTION_ARGS);
|
2256
|
+
extern Datum dispell_lexize(PG_FUNCTION_ARGS);
|
2257
|
+
extern Datum regconfigin(PG_FUNCTION_ARGS);
|
2258
|
+
extern Datum regconfigout(PG_FUNCTION_ARGS);
|
2259
|
+
extern Datum regconfigrecv(PG_FUNCTION_ARGS);
|
2260
|
+
extern Datum regconfigsend(PG_FUNCTION_ARGS);
|
2261
|
+
extern Datum thesaurus_init(PG_FUNCTION_ARGS);
|
2262
|
+
extern Datum thesaurus_lexize(PG_FUNCTION_ARGS);
|
2263
|
+
extern Datum ts_headline_byid_opt(PG_FUNCTION_ARGS);
|
2264
|
+
extern Datum ts_headline_byid(PG_FUNCTION_ARGS);
|
2265
|
+
extern Datum to_tsvector_byid(PG_FUNCTION_ARGS);
|
2266
|
+
extern Datum to_tsquery_byid(PG_FUNCTION_ARGS);
|
2267
|
+
extern Datum plainto_tsquery_byid(PG_FUNCTION_ARGS);
|
2268
|
+
extern Datum to_tsvector(PG_FUNCTION_ARGS);
|
2269
|
+
extern Datum to_tsquery(PG_FUNCTION_ARGS);
|
2270
|
+
extern Datum plainto_tsquery(PG_FUNCTION_ARGS);
|
2271
|
+
extern Datum tsvector_update_trigger_byid(PG_FUNCTION_ARGS);
|
2272
|
+
extern Datum tsvector_update_trigger_bycolumn(PG_FUNCTION_ARGS);
|
2273
|
+
extern Datum ts_headline_opt(PG_FUNCTION_ARGS);
|
2274
|
+
extern Datum ts_headline(PG_FUNCTION_ARGS);
|
2275
|
+
extern Datum pg_ts_parser_is_visible(PG_FUNCTION_ARGS);
|
2276
|
+
extern Datum pg_ts_dict_is_visible(PG_FUNCTION_ARGS);
|
2277
|
+
extern Datum pg_ts_config_is_visible(PG_FUNCTION_ARGS);
|
2278
|
+
extern Datum get_current_ts_config(PG_FUNCTION_ARGS);
|
2279
|
+
extern Datum ts_match_tt(PG_FUNCTION_ARGS);
|
2280
|
+
extern Datum ts_match_tq(PG_FUNCTION_ARGS);
|
2281
|
+
extern Datum pg_ts_template_is_visible(PG_FUNCTION_ARGS);
|
2282
|
+
extern Datum regdictionaryin(PG_FUNCTION_ARGS);
|
2283
|
+
extern Datum regdictionaryout(PG_FUNCTION_ARGS);
|
2284
|
+
extern Datum regdictionaryrecv(PG_FUNCTION_ARGS);
|
2285
|
+
extern Datum regdictionarysend(PG_FUNCTION_ARGS);
|
2286
|
+
extern Datum pg_stat_reset_shared(PG_FUNCTION_ARGS);
|
2287
|
+
extern Datum pg_stat_reset_single_table_counters(PG_FUNCTION_ARGS);
|
2288
|
+
extern Datum pg_stat_reset_single_function_counters(PG_FUNCTION_ARGS);
|
2289
|
+
extern Datum pg_tablespace_location(PG_FUNCTION_ARGS);
|
2290
|
+
extern Datum pg_create_physical_replication_slot(PG_FUNCTION_ARGS);
|
2291
|
+
extern Datum pg_drop_replication_slot(PG_FUNCTION_ARGS);
|
2292
|
+
extern Datum pg_get_replication_slots(PG_FUNCTION_ARGS);
|
2293
|
+
extern Datum pg_logical_slot_get_changes(PG_FUNCTION_ARGS);
|
2294
|
+
extern Datum pg_logical_slot_get_binary_changes(PG_FUNCTION_ARGS);
|
2295
|
+
extern Datum pg_logical_slot_peek_changes(PG_FUNCTION_ARGS);
|
2296
|
+
extern Datum pg_logical_slot_peek_binary_changes(PG_FUNCTION_ARGS);
|
2297
|
+
extern Datum pg_create_logical_replication_slot(PG_FUNCTION_ARGS);
|
2298
|
+
extern Datum to_jsonb(PG_FUNCTION_ARGS);
|
2299
|
+
extern Datum pg_stat_get_snapshot_timestamp(PG_FUNCTION_ARGS);
|
2300
|
+
extern Datum gin_clean_pending_list(PG_FUNCTION_ARGS);
|
2301
|
+
extern Datum gtsvector_consistent_oldsig(PG_FUNCTION_ARGS);
|
2302
|
+
extern Datum gin_extract_tsquery_oldsig(PG_FUNCTION_ARGS);
|
2303
|
+
extern Datum gin_tsquery_consistent_oldsig(PG_FUNCTION_ARGS);
|
2304
|
+
extern Datum gtsquery_consistent_oldsig(PG_FUNCTION_ARGS);
|
2305
|
+
extern Datum inet_spg_config(PG_FUNCTION_ARGS);
|
2306
|
+
extern Datum inet_spg_choose(PG_FUNCTION_ARGS);
|
2307
|
+
extern Datum inet_spg_picksplit(PG_FUNCTION_ARGS);
|
2308
|
+
extern Datum inet_spg_inner_consistent(PG_FUNCTION_ARGS);
|
2309
|
+
extern Datum inet_spg_leaf_consistent(PG_FUNCTION_ARGS);
|
2310
|
+
extern Datum pg_current_logfile(PG_FUNCTION_ARGS);
|
2311
|
+
extern Datum pg_current_logfile_1arg(PG_FUNCTION_ARGS);
|
2312
|
+
extern Datum jsonb_send(PG_FUNCTION_ARGS);
|
2313
|
+
extern Datum jsonb_out(PG_FUNCTION_ARGS);
|
2314
|
+
extern Datum jsonb_recv(PG_FUNCTION_ARGS);
|
2315
|
+
extern Datum jsonb_in(PG_FUNCTION_ARGS);
|
2316
|
+
extern Datum pg_get_function_arg_default(PG_FUNCTION_ARGS);
|
2317
|
+
extern Datum pg_export_snapshot(PG_FUNCTION_ARGS);
|
2318
|
+
extern Datum pg_is_in_recovery(PG_FUNCTION_ARGS);
|
2319
|
+
extern Datum int4_cash(PG_FUNCTION_ARGS);
|
2320
|
+
extern Datum int8_cash(PG_FUNCTION_ARGS);
|
2321
|
+
extern Datum pg_is_in_backup(PG_FUNCTION_ARGS);
|
2322
|
+
extern Datum pg_backup_start_time(PG_FUNCTION_ARGS);
|
2323
|
+
extern Datum pg_collation_is_visible(PG_FUNCTION_ARGS);
|
2324
|
+
extern Datum array_typanalyze(PG_FUNCTION_ARGS);
|
2325
|
+
extern Datum arraycontsel(PG_FUNCTION_ARGS);
|
2326
|
+
extern Datum arraycontjoinsel(PG_FUNCTION_ARGS);
|
2327
|
+
extern Datum pg_get_multixact_members(PG_FUNCTION_ARGS);
|
2328
|
+
extern Datum pg_last_wal_receive_lsn(PG_FUNCTION_ARGS);
|
2329
|
+
extern Datum pg_last_wal_replay_lsn(PG_FUNCTION_ARGS);
|
2330
|
+
extern Datum cash_div_cash(PG_FUNCTION_ARGS);
|
2331
|
+
extern Datum cash_numeric(PG_FUNCTION_ARGS);
|
2332
|
+
extern Datum numeric_cash(PG_FUNCTION_ARGS);
|
2333
|
+
extern Datum pg_read_file_all(PG_FUNCTION_ARGS);
|
2334
|
+
extern Datum pg_read_binary_file_off_len(PG_FUNCTION_ARGS);
|
2335
|
+
extern Datum pg_read_binary_file_all(PG_FUNCTION_ARGS);
|
2336
|
+
extern Datum pg_opfamily_is_visible(PG_FUNCTION_ARGS);
|
2337
|
+
extern Datum pg_last_xact_replay_timestamp(PG_FUNCTION_ARGS);
|
2338
|
+
extern Datum anyrange_in(PG_FUNCTION_ARGS);
|
2339
|
+
extern Datum anyrange_out(PG_FUNCTION_ARGS);
|
2340
|
+
extern Datum range_in(PG_FUNCTION_ARGS);
|
2341
|
+
extern Datum range_out(PG_FUNCTION_ARGS);
|
2342
|
+
extern Datum range_recv(PG_FUNCTION_ARGS);
|
2343
|
+
extern Datum range_send(PG_FUNCTION_ARGS);
|
2344
|
+
extern Datum pg_identify_object(PG_FUNCTION_ARGS);
|
2345
|
+
extern Datum range_constructor2(PG_FUNCTION_ARGS);
|
2346
|
+
extern Datum range_constructor3(PG_FUNCTION_ARGS);
|
2347
|
+
extern Datum pg_relation_is_updatable(PG_FUNCTION_ARGS);
|
2348
|
+
extern Datum pg_column_is_updatable(PG_FUNCTION_ARGS);
|
2349
|
+
extern Datum make_date(PG_FUNCTION_ARGS);
|
2350
|
+
extern Datum make_time(PG_FUNCTION_ARGS);
|
2351
|
+
extern Datum range_lower(PG_FUNCTION_ARGS);
|
2352
|
+
extern Datum range_upper(PG_FUNCTION_ARGS);
|
2353
|
+
extern Datum range_empty(PG_FUNCTION_ARGS);
|
2354
|
+
extern Datum range_lower_inc(PG_FUNCTION_ARGS);
|
2355
|
+
extern Datum range_upper_inc(PG_FUNCTION_ARGS);
|
2356
|
+
extern Datum range_lower_inf(PG_FUNCTION_ARGS);
|
2357
|
+
extern Datum range_upper_inf(PG_FUNCTION_ARGS);
|
2358
|
+
extern Datum range_eq(PG_FUNCTION_ARGS);
|
2359
|
+
extern Datum range_ne(PG_FUNCTION_ARGS);
|
2360
|
+
extern Datum range_overlaps(PG_FUNCTION_ARGS);
|
2361
|
+
extern Datum range_contains_elem(PG_FUNCTION_ARGS);
|
2362
|
+
extern Datum range_contains(PG_FUNCTION_ARGS);
|
2363
|
+
extern Datum elem_contained_by_range(PG_FUNCTION_ARGS);
|
2364
|
+
extern Datum range_contained_by(PG_FUNCTION_ARGS);
|
2365
|
+
extern Datum range_adjacent(PG_FUNCTION_ARGS);
|
2366
|
+
extern Datum range_before(PG_FUNCTION_ARGS);
|
2367
|
+
extern Datum range_after(PG_FUNCTION_ARGS);
|
2368
|
+
extern Datum range_overleft(PG_FUNCTION_ARGS);
|
2369
|
+
extern Datum range_overright(PG_FUNCTION_ARGS);
|
2370
|
+
extern Datum range_union(PG_FUNCTION_ARGS);
|
2371
|
+
extern Datum range_intersect(PG_FUNCTION_ARGS);
|
2372
|
+
extern Datum range_minus(PG_FUNCTION_ARGS);
|
2373
|
+
extern Datum range_cmp(PG_FUNCTION_ARGS);
|
2374
|
+
extern Datum range_lt(PG_FUNCTION_ARGS);
|
2375
|
+
extern Datum range_le(PG_FUNCTION_ARGS);
|
2376
|
+
extern Datum range_ge(PG_FUNCTION_ARGS);
|
2377
|
+
extern Datum range_gt(PG_FUNCTION_ARGS);
|
2378
|
+
extern Datum range_gist_consistent(PG_FUNCTION_ARGS);
|
2379
|
+
extern Datum range_gist_union(PG_FUNCTION_ARGS);
|
2380
|
+
extern Datum pg_replication_slot_advance(PG_FUNCTION_ARGS);
|
2381
|
+
extern Datum range_gist_penalty(PG_FUNCTION_ARGS);
|
2382
|
+
extern Datum range_gist_picksplit(PG_FUNCTION_ARGS);
|
2383
|
+
extern Datum range_gist_same(PG_FUNCTION_ARGS);
|
2384
|
+
extern Datum hash_range(PG_FUNCTION_ARGS);
|
2385
|
+
extern Datum int4range_canonical(PG_FUNCTION_ARGS);
|
2386
|
+
extern Datum daterange_canonical(PG_FUNCTION_ARGS);
|
2387
|
+
extern Datum range_typanalyze(PG_FUNCTION_ARGS);
|
2388
|
+
extern Datum timestamp_support(PG_FUNCTION_ARGS);
|
2389
|
+
extern Datum interval_support(PG_FUNCTION_ARGS);
|
2390
|
+
extern Datum ginarraytriconsistent(PG_FUNCTION_ARGS);
|
2391
|
+
extern Datum gin_tsquery_triconsistent(PG_FUNCTION_ARGS);
|
2392
|
+
extern Datum int4range_subdiff(PG_FUNCTION_ARGS);
|
2393
|
+
extern Datum int8range_subdiff(PG_FUNCTION_ARGS);
|
2394
|
+
extern Datum numrange_subdiff(PG_FUNCTION_ARGS);
|
2395
|
+
extern Datum daterange_subdiff(PG_FUNCTION_ARGS);
|
2396
|
+
extern Datum int8range_canonical(PG_FUNCTION_ARGS);
|
2397
|
+
extern Datum tsrange_subdiff(PG_FUNCTION_ARGS);
|
2398
|
+
extern Datum tstzrange_subdiff(PG_FUNCTION_ARGS);
|
2399
|
+
extern Datum jsonb_object_keys(PG_FUNCTION_ARGS);
|
2400
|
+
extern Datum jsonb_each_text(PG_FUNCTION_ARGS);
|
2401
|
+
extern Datum mxid_age(PG_FUNCTION_ARGS);
|
2402
|
+
extern Datum jsonb_extract_path_text(PG_FUNCTION_ARGS);
|
2403
|
+
extern Datum acldefault_sql(PG_FUNCTION_ARGS);
|
2404
|
+
extern Datum time_support(PG_FUNCTION_ARGS);
|
2405
|
+
extern Datum json_object_field(PG_FUNCTION_ARGS);
|
2406
|
+
extern Datum json_object_field_text(PG_FUNCTION_ARGS);
|
2407
|
+
extern Datum json_array_element(PG_FUNCTION_ARGS);
|
2408
|
+
extern Datum json_array_element_text(PG_FUNCTION_ARGS);
|
2409
|
+
extern Datum json_extract_path(PG_FUNCTION_ARGS);
|
2410
|
+
extern Datum brin_summarize_new_values(PG_FUNCTION_ARGS);
|
2411
|
+
extern Datum json_extract_path_text(PG_FUNCTION_ARGS);
|
2412
|
+
extern Datum pg_get_object_address(PG_FUNCTION_ARGS);
|
2413
|
+
extern Datum json_array_elements(PG_FUNCTION_ARGS);
|
2414
|
+
extern Datum json_array_length(PG_FUNCTION_ARGS);
|
2415
|
+
extern Datum json_object_keys(PG_FUNCTION_ARGS);
|
2416
|
+
extern Datum json_each(PG_FUNCTION_ARGS);
|
2417
|
+
extern Datum json_each_text(PG_FUNCTION_ARGS);
|
2418
|
+
extern Datum json_populate_record(PG_FUNCTION_ARGS);
|
2419
|
+
extern Datum json_populate_recordset(PG_FUNCTION_ARGS);
|
2420
|
+
extern Datum json_typeof(PG_FUNCTION_ARGS);
|
2421
|
+
extern Datum json_array_elements_text(PG_FUNCTION_ARGS);
|
2422
|
+
extern Datum ordered_set_transition(PG_FUNCTION_ARGS);
|
2423
|
+
extern Datum ordered_set_transition_multi(PG_FUNCTION_ARGS);
|
2424
|
+
extern Datum percentile_disc_final(PG_FUNCTION_ARGS);
|
2425
|
+
extern Datum percentile_cont_float8_final(PG_FUNCTION_ARGS);
|
2426
|
+
extern Datum percentile_cont_interval_final(PG_FUNCTION_ARGS);
|
2427
|
+
extern Datum percentile_disc_multi_final(PG_FUNCTION_ARGS);
|
2428
|
+
extern Datum percentile_cont_float8_multi_final(PG_FUNCTION_ARGS);
|
2429
|
+
extern Datum percentile_cont_interval_multi_final(PG_FUNCTION_ARGS);
|
2430
|
+
extern Datum mode_final(PG_FUNCTION_ARGS);
|
2431
|
+
extern Datum hypothetical_rank_final(PG_FUNCTION_ARGS);
|
2432
|
+
extern Datum hypothetical_percent_rank_final(PG_FUNCTION_ARGS);
|
2433
|
+
extern Datum hypothetical_cume_dist_final(PG_FUNCTION_ARGS);
|
2434
|
+
extern Datum hypothetical_dense_rank_final(PG_FUNCTION_ARGS);
|
2435
|
+
extern Datum generate_series_int4_support(PG_FUNCTION_ARGS);
|
2436
|
+
extern Datum generate_series_int8_support(PG_FUNCTION_ARGS);
|
2437
|
+
extern Datum array_unnest_support(PG_FUNCTION_ARGS);
|
2438
|
+
extern Datum gist_box_distance(PG_FUNCTION_ARGS);
|
2439
|
+
extern Datum brin_summarize_range(PG_FUNCTION_ARGS);
|
2440
|
+
extern Datum jsonpath_in(PG_FUNCTION_ARGS);
|
2441
|
+
extern Datum jsonpath_recv(PG_FUNCTION_ARGS);
|
2442
|
+
extern Datum jsonpath_out(PG_FUNCTION_ARGS);
|
2443
|
+
extern Datum jsonpath_send(PG_FUNCTION_ARGS);
|
2444
|
+
extern Datum jsonb_path_exists(PG_FUNCTION_ARGS);
|
2445
|
+
extern Datum jsonb_path_query(PG_FUNCTION_ARGS);
|
2446
|
+
extern Datum jsonb_path_query_array(PG_FUNCTION_ARGS);
|
2447
|
+
extern Datum jsonb_path_query_first(PG_FUNCTION_ARGS);
|
2448
|
+
extern Datum jsonb_path_match(PG_FUNCTION_ARGS);
|
2449
|
+
extern Datum jsonb_path_exists_opr(PG_FUNCTION_ARGS);
|
2450
|
+
extern Datum jsonb_path_match_opr(PG_FUNCTION_ARGS);
|
2451
|
+
extern Datum brin_desummarize_range(PG_FUNCTION_ARGS);
|
2452
|
+
extern Datum spg_quad_config(PG_FUNCTION_ARGS);
|
2453
|
+
extern Datum spg_quad_choose(PG_FUNCTION_ARGS);
|
2454
|
+
extern Datum spg_quad_picksplit(PG_FUNCTION_ARGS);
|
2455
|
+
extern Datum spg_quad_inner_consistent(PG_FUNCTION_ARGS);
|
2456
|
+
extern Datum spg_quad_leaf_consistent(PG_FUNCTION_ARGS);
|
2457
|
+
extern Datum spg_kd_config(PG_FUNCTION_ARGS);
|
2458
|
+
extern Datum spg_kd_choose(PG_FUNCTION_ARGS);
|
2459
|
+
extern Datum spg_kd_picksplit(PG_FUNCTION_ARGS);
|
2460
|
+
extern Datum spg_kd_inner_consistent(PG_FUNCTION_ARGS);
|
2461
|
+
extern Datum spg_text_config(PG_FUNCTION_ARGS);
|
2462
|
+
extern Datum spg_text_choose(PG_FUNCTION_ARGS);
|
2463
|
+
extern Datum spg_text_picksplit(PG_FUNCTION_ARGS);
|
2464
|
+
extern Datum spg_text_inner_consistent(PG_FUNCTION_ARGS);
|
2465
|
+
extern Datum spg_text_leaf_consistent(PG_FUNCTION_ARGS);
|
2466
|
+
extern Datum pg_sequence_last_value(PG_FUNCTION_ARGS);
|
2467
|
+
extern Datum jsonb_ne(PG_FUNCTION_ARGS);
|
2468
|
+
extern Datum jsonb_lt(PG_FUNCTION_ARGS);
|
2469
|
+
extern Datum jsonb_gt(PG_FUNCTION_ARGS);
|
2470
|
+
extern Datum jsonb_le(PG_FUNCTION_ARGS);
|
2471
|
+
extern Datum jsonb_ge(PG_FUNCTION_ARGS);
|
2472
|
+
extern Datum jsonb_eq(PG_FUNCTION_ARGS);
|
2473
|
+
extern Datum jsonb_cmp(PG_FUNCTION_ARGS);
|
2474
|
+
extern Datum jsonb_hash(PG_FUNCTION_ARGS);
|
2475
|
+
extern Datum jsonb_contains(PG_FUNCTION_ARGS);
|
2476
|
+
extern Datum jsonb_exists(PG_FUNCTION_ARGS);
|
2477
|
+
extern Datum jsonb_exists_any(PG_FUNCTION_ARGS);
|
2478
|
+
extern Datum jsonb_exists_all(PG_FUNCTION_ARGS);
|
2479
|
+
extern Datum jsonb_contained(PG_FUNCTION_ARGS);
|
2480
|
+
extern Datum array_agg_array_transfn(PG_FUNCTION_ARGS);
|
2481
|
+
extern Datum array_agg_array_finalfn(PG_FUNCTION_ARGS);
|
2482
|
+
extern Datum range_merge(PG_FUNCTION_ARGS);
|
2483
|
+
extern Datum inet_merge(PG_FUNCTION_ARGS);
|
2484
|
+
extern Datum boxes_bound_box(PG_FUNCTION_ARGS);
|
2485
|
+
extern Datum inet_same_family(PG_FUNCTION_ARGS);
|
2486
|
+
extern Datum binary_upgrade_set_record_init_privs(PG_FUNCTION_ARGS);
|
2487
|
+
extern Datum regnamespacein(PG_FUNCTION_ARGS);
|
2488
|
+
extern Datum regnamespaceout(PG_FUNCTION_ARGS);
|
2489
|
+
extern Datum to_regnamespace(PG_FUNCTION_ARGS);
|
2490
|
+
extern Datum regnamespacerecv(PG_FUNCTION_ARGS);
|
2491
|
+
extern Datum regnamespacesend(PG_FUNCTION_ARGS);
|
2492
|
+
extern Datum point_box(PG_FUNCTION_ARGS);
|
2493
|
+
extern Datum regroleout(PG_FUNCTION_ARGS);
|
2494
|
+
extern Datum to_regrole(PG_FUNCTION_ARGS);
|
2495
|
+
extern Datum regrolerecv(PG_FUNCTION_ARGS);
|
2496
|
+
extern Datum regrolesend(PG_FUNCTION_ARGS);
|
2497
|
+
extern Datum regrolein(PG_FUNCTION_ARGS);
|
2498
|
+
extern Datum pg_rotate_logfile(PG_FUNCTION_ARGS);
|
2499
|
+
extern Datum pg_read_file(PG_FUNCTION_ARGS);
|
2500
|
+
extern Datum binary_upgrade_set_missing_value(PG_FUNCTION_ARGS);
|
2501
|
+
extern Datum brin_inclusion_opcinfo(PG_FUNCTION_ARGS);
|
2502
|
+
extern Datum brin_inclusion_add_value(PG_FUNCTION_ARGS);
|
2503
|
+
extern Datum brin_inclusion_consistent(PG_FUNCTION_ARGS);
|
2504
|
+
extern Datum brin_inclusion_union(PG_FUNCTION_ARGS);
|
2505
|
+
extern Datum macaddr8_in(PG_FUNCTION_ARGS);
|
2506
|
+
extern Datum macaddr8_out(PG_FUNCTION_ARGS);
|
2507
|
+
extern Datum macaddr8_trunc(PG_FUNCTION_ARGS);
|
2508
|
+
extern Datum macaddr8_eq(PG_FUNCTION_ARGS);
|
2509
|
+
extern Datum macaddr8_lt(PG_FUNCTION_ARGS);
|
2510
|
+
extern Datum macaddr8_le(PG_FUNCTION_ARGS);
|
2511
|
+
extern Datum macaddr8_gt(PG_FUNCTION_ARGS);
|
2512
|
+
extern Datum macaddr8_ge(PG_FUNCTION_ARGS);
|
2513
|
+
extern Datum macaddr8_ne(PG_FUNCTION_ARGS);
|
2514
|
+
extern Datum macaddr8_cmp(PG_FUNCTION_ARGS);
|
2515
|
+
extern Datum macaddr8_not(PG_FUNCTION_ARGS);
|
2516
|
+
extern Datum macaddr8_and(PG_FUNCTION_ARGS);
|
2517
|
+
extern Datum macaddr8_or(PG_FUNCTION_ARGS);
|
2518
|
+
extern Datum macaddrtomacaddr8(PG_FUNCTION_ARGS);
|
2519
|
+
extern Datum macaddr8tomacaddr(PG_FUNCTION_ARGS);
|
2520
|
+
extern Datum macaddr8_set7bit(PG_FUNCTION_ARGS);
|
2521
|
+
extern Datum in_range_int8_int8(PG_FUNCTION_ARGS);
|
2522
|
+
extern Datum in_range_int4_int8(PG_FUNCTION_ARGS);
|
2523
|
+
extern Datum in_range_int4_int4(PG_FUNCTION_ARGS);
|
2524
|
+
extern Datum in_range_int4_int2(PG_FUNCTION_ARGS);
|
2525
|
+
extern Datum in_range_int2_int8(PG_FUNCTION_ARGS);
|
2526
|
+
extern Datum in_range_int2_int4(PG_FUNCTION_ARGS);
|
2527
|
+
extern Datum in_range_int2_int2(PG_FUNCTION_ARGS);
|
2528
|
+
extern Datum in_range_date_interval(PG_FUNCTION_ARGS);
|
2529
|
+
extern Datum in_range_timestamp_interval(PG_FUNCTION_ARGS);
|
2530
|
+
extern Datum in_range_timestamptz_interval(PG_FUNCTION_ARGS);
|
2531
|
+
extern Datum in_range_interval_interval(PG_FUNCTION_ARGS);
|
2532
|
+
extern Datum in_range_time_interval(PG_FUNCTION_ARGS);
|
2533
|
+
extern Datum in_range_timetz_interval(PG_FUNCTION_ARGS);
|
2534
|
+
extern Datum in_range_float8_float8(PG_FUNCTION_ARGS);
|
2535
|
+
extern Datum in_range_float4_float8(PG_FUNCTION_ARGS);
|
2536
|
+
extern Datum in_range_numeric_numeric(PG_FUNCTION_ARGS);
|
2537
|
+
extern Datum pg_lsn_larger(PG_FUNCTION_ARGS);
|
2538
|
+
extern Datum pg_lsn_smaller(PG_FUNCTION_ARGS);
|
2539
|
+
extern Datum regcollationin(PG_FUNCTION_ARGS);
|
2540
|
+
extern Datum regcollationout(PG_FUNCTION_ARGS);
|
2541
|
+
extern Datum to_regcollation(PG_FUNCTION_ARGS);
|
2542
|
+
extern Datum regcollationrecv(PG_FUNCTION_ARGS);
|
2543
|
+
extern Datum regcollationsend(PG_FUNCTION_ARGS);
|
2544
|
+
extern Datum ts_headline_jsonb_byid_opt(PG_FUNCTION_ARGS);
|
2545
|
+
extern Datum ts_headline_jsonb_byid(PG_FUNCTION_ARGS);
|
2546
|
+
extern Datum ts_headline_jsonb_opt(PG_FUNCTION_ARGS);
|
2547
|
+
extern Datum ts_headline_jsonb(PG_FUNCTION_ARGS);
|
2548
|
+
extern Datum ts_headline_json_byid_opt(PG_FUNCTION_ARGS);
|
2549
|
+
extern Datum ts_headline_json_byid(PG_FUNCTION_ARGS);
|
2550
|
+
extern Datum ts_headline_json_opt(PG_FUNCTION_ARGS);
|
2551
|
+
extern Datum ts_headline_json(PG_FUNCTION_ARGS);
|
2552
|
+
extern Datum jsonb_string_to_tsvector(PG_FUNCTION_ARGS);
|
2553
|
+
extern Datum json_string_to_tsvector(PG_FUNCTION_ARGS);
|
2554
|
+
extern Datum jsonb_string_to_tsvector_byid(PG_FUNCTION_ARGS);
|
2555
|
+
extern Datum json_string_to_tsvector_byid(PG_FUNCTION_ARGS);
|
2556
|
+
extern Datum jsonb_to_tsvector(PG_FUNCTION_ARGS);
|
2557
|
+
extern Datum jsonb_to_tsvector_byid(PG_FUNCTION_ARGS);
|
2558
|
+
extern Datum json_to_tsvector(PG_FUNCTION_ARGS);
|
2559
|
+
extern Datum json_to_tsvector_byid(PG_FUNCTION_ARGS);
|
2560
|
+
extern Datum pg_copy_physical_replication_slot_a(PG_FUNCTION_ARGS);
|
2561
|
+
extern Datum pg_copy_physical_replication_slot_b(PG_FUNCTION_ARGS);
|
2562
|
+
extern Datum pg_copy_logical_replication_slot_a(PG_FUNCTION_ARGS);
|
2563
|
+
extern Datum pg_copy_logical_replication_slot_b(PG_FUNCTION_ARGS);
|
2564
|
+
extern Datum pg_copy_logical_replication_slot_c(PG_FUNCTION_ARGS);
|
2565
|
+
extern Datum unicode_normalize_func(PG_FUNCTION_ARGS);
|
2566
|
+
extern Datum unicode_is_normalized(PG_FUNCTION_ARGS);
|
2567
|
+
extern Datum pg_event_trigger_table_rewrite_oid(PG_FUNCTION_ARGS);
|
2568
|
+
extern Datum pg_event_trigger_table_rewrite_reason(PG_FUNCTION_ARGS);
|
2569
|
+
extern Datum pg_event_trigger_ddl_commands(PG_FUNCTION_ARGS);
|
2570
|
+
extern Datum phraseto_tsquery(PG_FUNCTION_ARGS);
|
2571
|
+
extern Datum tsquery_phrase(PG_FUNCTION_ARGS);
|
2572
|
+
extern Datum tsquery_phrase_distance(PG_FUNCTION_ARGS);
|
2573
|
+
extern Datum phraseto_tsquery_byid(PG_FUNCTION_ARGS);
|
2574
|
+
extern Datum websearch_to_tsquery_byid(PG_FUNCTION_ARGS);
|
2575
|
+
extern Datum websearch_to_tsquery(PG_FUNCTION_ARGS);
|
2576
|
+
extern Datum spg_bbox_quad_config(PG_FUNCTION_ARGS);
|
2577
|
+
extern Datum spg_poly_quad_compress(PG_FUNCTION_ARGS);
|
2578
|
+
extern Datum spg_box_quad_config(PG_FUNCTION_ARGS);
|
2579
|
+
extern Datum spg_box_quad_choose(PG_FUNCTION_ARGS);
|
2580
|
+
extern Datum spg_box_quad_picksplit(PG_FUNCTION_ARGS);
|
2581
|
+
extern Datum spg_box_quad_inner_consistent(PG_FUNCTION_ARGS);
|
2582
|
+
extern Datum spg_box_quad_leaf_consistent(PG_FUNCTION_ARGS);
|
2583
|
+
extern Datum pg_mcv_list_in(PG_FUNCTION_ARGS);
|
2584
|
+
extern Datum pg_mcv_list_out(PG_FUNCTION_ARGS);
|
2585
|
+
extern Datum pg_mcv_list_recv(PG_FUNCTION_ARGS);
|
2586
|
+
extern Datum pg_mcv_list_send(PG_FUNCTION_ARGS);
|
2587
|
+
extern Datum satisfies_hash_partition(PG_FUNCTION_ARGS);
|
2588
|
+
extern Datum pg_ls_tmpdir_noargs(PG_FUNCTION_ARGS);
|
2589
|
+
extern Datum pg_ls_tmpdir_1arg(PG_FUNCTION_ARGS);
|
2590
|
+
extern Datum pg_ls_archive_statusdir(PG_FUNCTION_ARGS);
|
2591
|
+
extern Datum network_sortsupport(PG_FUNCTION_ARGS);
|
2592
|
+
extern Datum xid8lt(PG_FUNCTION_ARGS);
|
2593
|
+
extern Datum xid8gt(PG_FUNCTION_ARGS);
|
2594
|
+
extern Datum xid8le(PG_FUNCTION_ARGS);
|
2595
|
+
extern Datum xid8ge(PG_FUNCTION_ARGS);
|
2596
|
+
extern Datum matchingsel(PG_FUNCTION_ARGS);
|
2597
|
+
extern Datum matchingjoinsel(PG_FUNCTION_ARGS);
|
2598
|
+
extern Datum numeric_min_scale(PG_FUNCTION_ARGS);
|
2599
|
+
extern Datum numeric_trim_scale(PG_FUNCTION_ARGS);
|
2600
|
+
extern Datum int4gcd(PG_FUNCTION_ARGS);
|
2601
|
+
extern Datum int8gcd(PG_FUNCTION_ARGS);
|
2602
|
+
extern Datum int4lcm(PG_FUNCTION_ARGS);
|
2603
|
+
extern Datum int8lcm(PG_FUNCTION_ARGS);
|
2604
|
+
extern Datum numeric_gcd(PG_FUNCTION_ARGS);
|
2605
|
+
extern Datum numeric_lcm(PG_FUNCTION_ARGS);
|
2606
|
+
extern Datum btvarstrequalimage(PG_FUNCTION_ARGS);
|
2607
|
+
extern Datum btequalimage(PG_FUNCTION_ARGS);
|
2608
|
+
extern Datum pg_get_shmem_allocations(PG_FUNCTION_ARGS);
|
2609
|
+
extern Datum pg_stat_get_ins_since_vacuum(PG_FUNCTION_ARGS);
|
2610
|
+
extern Datum jsonb_set_lax(PG_FUNCTION_ARGS);
|
2611
|
+
extern Datum xid8in(PG_FUNCTION_ARGS);
|
2612
|
+
extern Datum xid8toxid(PG_FUNCTION_ARGS);
|
2613
|
+
extern Datum xid8out(PG_FUNCTION_ARGS);
|
2614
|
+
extern Datum xid8recv(PG_FUNCTION_ARGS);
|
2615
|
+
extern Datum xid8send(PG_FUNCTION_ARGS);
|
2616
|
+
extern Datum xid8eq(PG_FUNCTION_ARGS);
|
2617
|
+
extern Datum xid8ne(PG_FUNCTION_ARGS);
|
2618
|
+
extern Datum anycompatible_in(PG_FUNCTION_ARGS);
|
2619
|
+
extern Datum anycompatible_out(PG_FUNCTION_ARGS);
|
2620
|
+
extern Datum anycompatiblearray_in(PG_FUNCTION_ARGS);
|
2621
|
+
extern Datum anycompatiblearray_out(PG_FUNCTION_ARGS);
|
2622
|
+
extern Datum anycompatiblearray_recv(PG_FUNCTION_ARGS);
|
2623
|
+
extern Datum anycompatiblearray_send(PG_FUNCTION_ARGS);
|
2624
|
+
extern Datum anycompatiblenonarray_in(PG_FUNCTION_ARGS);
|
2625
|
+
extern Datum anycompatiblenonarray_out(PG_FUNCTION_ARGS);
|
2626
|
+
extern Datum anycompatiblerange_in(PG_FUNCTION_ARGS);
|
2627
|
+
extern Datum anycompatiblerange_out(PG_FUNCTION_ARGS);
|
2628
|
+
extern Datum xid8cmp(PG_FUNCTION_ARGS);
|
2629
|
+
extern Datum pg_replication_origin_create(PG_FUNCTION_ARGS);
|
2630
|
+
extern Datum pg_replication_origin_drop(PG_FUNCTION_ARGS);
|
2631
|
+
extern Datum pg_replication_origin_oid(PG_FUNCTION_ARGS);
|
2632
|
+
extern Datum pg_replication_origin_session_setup(PG_FUNCTION_ARGS);
|
2633
|
+
extern Datum pg_replication_origin_session_reset(PG_FUNCTION_ARGS);
|
2634
|
+
extern Datum pg_replication_origin_session_is_setup(PG_FUNCTION_ARGS);
|
2635
|
+
extern Datum pg_replication_origin_session_progress(PG_FUNCTION_ARGS);
|
2636
|
+
extern Datum pg_replication_origin_xact_setup(PG_FUNCTION_ARGS);
|
2637
|
+
extern Datum pg_replication_origin_xact_reset(PG_FUNCTION_ARGS);
|
2638
|
+
extern Datum pg_replication_origin_advance(PG_FUNCTION_ARGS);
|
2639
|
+
extern Datum pg_replication_origin_progress(PG_FUNCTION_ARGS);
|
2640
|
+
extern Datum pg_show_replication_origin_status(PG_FUNCTION_ARGS);
|
2641
|
+
extern Datum pg_stat_get_subscription(PG_FUNCTION_ARGS);
|
2642
|
+
extern Datum pg_get_publication_tables(PG_FUNCTION_ARGS);
|
2643
|
+
extern Datum pg_get_replica_identity_index(PG_FUNCTION_ARGS);
|
2644
|
+
extern Datum pg_relation_is_publishable(PG_FUNCTION_ARGS);
|
2645
|
+
|
2646
|
+
#endif /* FMGRPROTOS_H */
|