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