diff --git a/ansible/tasks/setup-postgres.yml b/ansible/tasks/setup-postgres.yml index 61034c751..7ef095873 100644 --- a/ansible/tasks/setup-postgres.yml +++ b/ansible/tasks/setup-postgres.yml @@ -116,6 +116,7 @@ with_items: - '/etc/postgresql' - '/etc/postgresql-custom' + - '/etc/postgresql-custom/conf.d' when: debpkg_mode or nixpkg_mode - name: create placeholder config files diff --git a/ansible/tasks/setup-wal-g.yml b/ansible/tasks/setup-wal-g.yml index 71f91fa52..162667e8d 100644 --- a/ansible/tasks/setup-wal-g.yml +++ b/ansible/tasks/setup-wal-g.yml @@ -62,7 +62,7 @@ - name: Move custom wal-g.conf file to /etc/postgresql-custom/conf.d/wal-g.conf copy: - src: "files/postgresql_config/conf.d/walg.conf" + src: "files/postgresql_config/conf.d/wal-g.conf" dest: /etc/postgresql-custom/conf.d/wal-g.conf mode: 0664 owner: postgres diff --git a/migrations/tests/extensions/01-postgis.sql b/migrations/tests/extensions/01-postgis.sql index 6c3e154e3..703e892b4 100644 --- a/migrations/tests/extensions/01-postgis.sql +++ b/migrations/tests/extensions/01-postgis.sql @@ -2,6 +2,10 @@ begin; do $_$ begin if not exists (select 1 from pg_extension where extname = 'orioledb') then + -- create address_standardizer and dependencies first to ensure correct schema placement + create extension if not exists address_standardizer with schema extensions; + create extension if not exists address_standardizer_data_us with schema extensions; + -- create postgis tiger as supabase_admin create extension if not exists postgis_tiger_geocoder cascade; diff --git a/nix/checks.nix b/nix/checks.nix index 74b50a84f..dfaa07858 100644 --- a/nix/checks.nix +++ b/nix/checks.nix @@ -295,7 +295,7 @@ fi done - if ! psql -p ${pgPort} -h ${self.supabase.defaults.host} --no-password --username=supabase_admin -d postgres -v ON_ERROR_STOP=1 -Xf ${./tests/prime.sql}; then + if ! psql -p ${pgPort} -h ${self.supabase.defaults.host} --no-password --username=supabase_admin -d postgres -v ON_ERROR_STOP=1 -Xf ${./tests/prime-production.sql}; then echo "Error executing SQL file" exit 1 fi diff --git a/nix/packages/lib.nix b/nix/packages/lib.nix index 1d710ce58..523418dce 100644 --- a/nix/packages/lib.nix +++ b/nix/packages/lib.nix @@ -64,6 +64,11 @@ else "${pkgs.glibcLocales}/lib/locale/locale-archive"; + postgresqlConfigBaseDir = builtins.path { + name = "postgresql_config"; + path = ../../ansible/files/postgresql_config; + }; + substitutions = { SHELL_PATH = "${pkgs.bash}/bin/bash"; PGSQL_DEFAULT_PORT = "${defaults.port}"; @@ -71,6 +76,7 @@ PSQL15_BINDIR = "${psql_15}"; PSQL17_BINDIR = "${psql_17}"; PSQL_CONF_FILE = "${paths.pgconfigFile}"; + POSTGRESQL_CONFIG_DIR = "${postgresqlConfigBaseDir}"; PSQLORIOLEDB17_BINDIR = "${psql_orioledb-17}"; PGSODIUM_GETKEY = "${paths.getkeyScript}"; PG_HBA = "${paths.pgHbaConfigFile}"; @@ -96,17 +102,7 @@ ; } '' - mkdir -p $out/bin $out/etc/postgresql-custom $out/etc/postgresql $out/extension-custom-scripts - - # Copy config files with error handling - cp -r ${paths.configConfDir} $out/etc/postgresql-custom/|| { echo "Failed to copy conf.d"; exit 1; } - cp ${paths.pgconfigFile} $out/etc/postgresql/postgresql.conf || { echo "Failed to copy postgresql.conf"; exit 1; } - cp ${paths.pgHbaConfigFile} $out/etc/postgresql/pg_hba.conf || { echo "Failed to copy pg_hba.conf"; exit 1; } - cp ${paths.pgIdentConfigFile} $out/etc/postgresql/pg_ident.conf || { echo "Failed to copy pg_ident.conf"; exit 1; } - cp -r ${paths.postgresqlExtensionCustomScriptsPath}/* $out/extension-custom-scripts/ || { echo "Failed to copy custom scripts"; exit 1; } - - echo "Copy operation completed" - chmod 644 $out/etc/postgresql-custom/conf.d/supautils.conf $out/etc/postgresql/postgresql.conf $out/etc/postgresql-custom/conf.d/logging.conf $out/etc/postgresql/pg_hba.conf + mkdir -p $out/bin substitute ${../tools/run-server.sh.in} $out/bin/start-postgres-server \ ${ diff --git a/nix/tests/expected/evtrigs.out b/nix/tests/expected/evtrigs.out index 3e3f523fc..fa155774c 100644 --- a/nix/tests/expected/evtrigs.out +++ b/nix/tests/expected/evtrigs.out @@ -1,3 +1,5 @@ +BEGIN; +set client_min_messages = warning; select e.evtname, e.evtowner::regrole as evtowner, @@ -10,19 +12,19 @@ join pg_proc p join pg_namespace n_func on p.pronamespace = n_func.oid where p.prorettype = 'event_trigger'::regtype; - evtname | evtowner | evtfunction_schema | evtfunction | function_owner -----------------------------------------+----------------+--------------------+------------------------------------+---------------- - issue_pg_graphql_access | supabase_admin | extensions | grant_pg_graphql_access | supabase_admin - issue_graphql_placeholder | supabase_admin | extensions | set_graphql_placeholder | supabase_admin - pgrst_ddl_watch | supabase_admin | extensions | pgrst_ddl_watch | supabase_admin - pgrst_drop_watch | supabase_admin | extensions | pgrst_drop_watch | supabase_admin - graphql_watch_ddl | supabase_admin | graphql | graphql.increment_schema_version | supabase_admin - graphql_watch_drop | supabase_admin | graphql | graphql.increment_schema_version | supabase_admin - issue_pg_cron_access | supabase_admin | extensions | grant_pg_cron_access | supabase_admin - issue_pg_net_access | supabase_admin | extensions | grant_pg_net_access | supabase_admin - pg_tle_event_trigger_for_drop_function | supabase_admin | pgtle | pgtle.pg_tle_feature_info_sql_drop | supabase_admin - pgaudit_ddl_command_end | supabase_admin | public | pgaudit_ddl_command_end | supabase_admin - pgaudit_sql_drop | supabase_admin | public | pgaudit_sql_drop | supabase_admin - pgsodium_trg_mask_update | supabase_admin | pgsodium | pgsodium.trg_mask_update | supabase_admin -(12 rows) + evtname | evtowner | evtfunction_schema | evtfunction | function_owner +---------------------------+----------------+--------------------+----------------------------------+---------------- + issue_pg_graphql_access | supabase_admin | extensions | grant_pg_graphql_access | supabase_admin + issue_graphql_placeholder | supabase_admin | extensions | set_graphql_placeholder | supabase_admin + pgrst_ddl_watch | supabase_admin | extensions | pgrst_ddl_watch | supabase_admin + pgrst_drop_watch | supabase_admin | extensions | pgrst_drop_watch | supabase_admin + graphql_watch_ddl | supabase_admin | graphql | graphql.increment_schema_version | supabase_admin + graphql_watch_drop | supabase_admin | graphql | graphql.increment_schema_version | supabase_admin + issue_pg_cron_access | supabase_admin | extensions | grant_pg_cron_access | supabase_admin + issue_pg_net_access | supabase_admin | extensions | grant_pg_net_access | supabase_admin + pgaudit_ddl_command_end | supabase_admin | extensions | pgaudit_ddl_command_end | supabase_admin + pgaudit_sql_drop | supabase_admin | extensions | pgaudit_sql_drop | supabase_admin + pgsodium_trg_mask_update | supabase_admin | pgsodium | pgsodium.trg_mask_update | supabase_admin +(11 rows) +ROLLBACK; diff --git a/nix/tests/expected/extensions_schema.out b/nix/tests/expected/extensions_schema.out index 7d3dffa95..483f543f2 100644 --- a/nix/tests/expected/extensions_schema.out +++ b/nix/tests/expected/extensions_schema.out @@ -1,3 +1,5 @@ +BEGIN; +set client_min_messages = warning; -- all default extensions are installed in a schema "extensions" -- we don't include the version as that will break often, we only care about -- ensuring these extensions are present @@ -15,8 +17,13 @@ order by e.extname; extension_name | schema_name | extension_owner --------------------+-------------+----------------- + dblink | extensions | supabase_admin + pg_repack | extensions | supabase_admin pg_stat_statements | extensions | supabase_admin + pgaudit | extensions | supabase_admin pgcrypto | extensions | supabase_admin + postgis | extensions | supabase_admin uuid-ossp | extensions | supabase_admin -(3 rows) +(7 rows) +ROLLBACK; diff --git a/nix/tests/expected/http.out b/nix/tests/expected/http.out index d83488006..1550966c0 100644 --- a/nix/tests/expected/http.out +++ b/nix/tests/expected/http.out @@ -1,5 +1,8 @@ -- Test for http extension -- Basic HTTP functionality tests +BEGIN; +set client_min_messages = warning; +create extension if not exists http with schema extensions; -- Test basic HTTP GET request SELECT status FROM http_get('http://localhost:' || (SELECT value FROM test_config WHERE key = 'http_mock_port') || '/get'); status @@ -103,3 +106,4 @@ SELECT status FROM http_get('http://localhost:' || (SELECT value FROM test_confi 200 (1 row) +ROLLBACK; diff --git a/nix/tests/expected/hypopg.out b/nix/tests/expected/hypopg.out index 35c8a5b2d..48bd03deb 100644 --- a/nix/tests/expected/hypopg.out +++ b/nix/tests/expected/hypopg.out @@ -1,3 +1,6 @@ +BEGIN; +set client_min_messages = warning; +create extension if not exists hypopg with schema extensions; create schema v; create table v.samp( id int @@ -11,4 +14,4 @@ $$); (1 row) drop schema v cascade; -NOTICE: drop cascades to table v.samp +ROLLBACK; diff --git a/nix/tests/expected/index_advisor.out b/nix/tests/expected/index_advisor.out index 5a269ba54..0bb29e29b 100644 --- a/nix/tests/expected/index_advisor.out +++ b/nix/tests/expected/index_advisor.out @@ -1,3 +1,7 @@ +BEGIN; +set client_min_messages = warning; +create extension if not exists hypopg with schema extensions; +create extension if not exists index_advisor with schema extensions; create schema v; create table v.book( id int primary key, @@ -13,4 +17,4 @@ from (1 row) drop schema v cascade; -NOTICE: drop cascades to table v.book +ROLLBACK; diff --git a/nix/tests/expected/pg_hashids.out b/nix/tests/expected/pg_hashids.out index 393218e93..a572fcc6c 100644 --- a/nix/tests/expected/pg_hashids.out +++ b/nix/tests/expected/pg_hashids.out @@ -1,3 +1,6 @@ +BEGIN; +set client_min_messages = warning; +create extension if not exists pg_hashids with schema extensions; select id_encode(1001); -- Result: jNl id_encode ----------- @@ -34,3 +37,4 @@ select id_decode('3GJ956J9B9', 'This is my salt', 10, 'abcdefghijABCDxFGHIJ12345 {1234567} (1 row) +ROLLBACK; diff --git a/nix/tests/expected/pg_jsonschema.out b/nix/tests/expected/pg_jsonschema.out index c291141ac..4870d9fab 100644 --- a/nix/tests/expected/pg_jsonschema.out +++ b/nix/tests/expected/pg_jsonschema.out @@ -1,4 +1,6 @@ begin; +set client_min_messages = warning; +create extension if not exists pg_jsonschema with schema extensions; -- Test json_matches_schema create table customer( id serial primary key, diff --git a/nix/tests/expected/pg_net.out b/nix/tests/expected/pg_net.out index 6b3ca5b4b..0c5b52982 100644 --- a/nix/tests/expected/pg_net.out +++ b/nix/tests/expected/pg_net.out @@ -1,3 +1,6 @@ +BEGIN; +set client_min_messages = warning; +create extension if not exists pg_net with schema extensions; -- This is a very basic test because you can't get the value returned -- by a pg_net request in the same transaction that created it; select @@ -9,3 +12,4 @@ select 1 (1 row) +ROLLBACK; diff --git a/nix/tests/expected/pg_tle.out b/nix/tests/expected/pg_tle.out index 387e63e03..724084a3f 100644 --- a/nix/tests/expected/pg_tle.out +++ b/nix/tests/expected/pg_tle.out @@ -1,4 +1,7 @@ +BEGIN; set client_min_messages = warning; +create schema if not exists pgtle; +create extension if not exists pg_tle with schema pgtle; select pgtle.install_extension( 'pg_distance', @@ -87,6 +90,4 @@ select t (1 row) --- Restore original state if any of the above fails -drop extension pg_tle cascade; -create extension pg_tle; +ROLLBACK; diff --git a/nix/tests/expected/pgmq.out b/nix/tests/expected/pgmq.out index c2d5d3eec..d9a14d2f9 100644 --- a/nix/tests/expected/pgmq.out +++ b/nix/tests/expected/pgmq.out @@ -1,3 +1,6 @@ +BEGIN; +set client_min_messages = warning; +create extension if not exists pgmq; -- pgmq is non-relocatable (schema = 'pgmq') -- Test the standard flow select pgmq.create('Foo'); @@ -121,24 +124,33 @@ select ); */ -- Make sure SQLI enabling characters are blocked +-- Use savepoints to test error conditions without aborting the transaction +SAVEPOINT test_invalid_names_1; select pgmq.create('F--oo'); ERROR: queue name contains invalid characters: $, ;, --, or \' CONTEXT: PL/pgSQL function pgmq.format_table_name(text,text) line 5 at RAISE PL/pgSQL function pgmq.create_non_partitioned(text) line 3 during statement block local variable initialization SQL statement "SELECT pgmq.create_non_partitioned(queue_name)" PL/pgSQL function pgmq."create"(text) line 3 at PERFORM +ROLLBACK TO SAVEPOINT test_invalid_names_1; +SAVEPOINT test_invalid_names_2; select pgmq.create('F$oo'); ERROR: queue name contains invalid characters: $, ;, --, or \' CONTEXT: PL/pgSQL function pgmq.format_table_name(text,text) line 5 at RAISE +SQL expression "pgmq.format_table_name(queue_name, 'q')" PL/pgSQL function pgmq.create_non_partitioned(text) line 3 during statement block local variable initialization SQL statement "SELECT pgmq.create_non_partitioned(queue_name)" PL/pgSQL function pgmq."create"(text) line 3 at PERFORM +ROLLBACK TO SAVEPOINT test_invalid_names_2; +SAVEPOINT test_invalid_names_3; select pgmq.create($$F'oo$$); ERROR: queue name contains invalid characters: $, ;, --, or \' CONTEXT: PL/pgSQL function pgmq.format_table_name(text,text) line 5 at RAISE +SQL expression "pgmq.format_table_name(queue_name, 'q')" PL/pgSQL function pgmq.create_non_partitioned(text) line 3 during statement block local variable initialization SQL statement "SELECT pgmq.create_non_partitioned(queue_name)" PL/pgSQL function pgmq."create"(text) line 3 at PERFORM +ROLLBACK TO SAVEPOINT test_invalid_names_3; \echo -- pgmq schema functions with owners (ownership is modified on ansible/files/postgresql_extension_custom_scripts/pgmq/after-create.sql) @@ -200,3 +212,4 @@ order by pgmq | validate_queue_name | postgres (40 rows) +ROLLBACK; diff --git a/nix/tests/expected/pgrouting.out b/nix/tests/expected/pgrouting.out index 2362a72ed..cf7a012e5 100644 --- a/nix/tests/expected/pgrouting.out +++ b/nix/tests/expected/pgrouting.out @@ -1,3 +1,7 @@ +BEGIN; +set client_min_messages = warning; +create extension if not exists pgrouting with schema extensions; +create extension if not exists postgis with schema extensions; create schema v; -- create the roads table create table v.roads ( @@ -28,4 +32,4 @@ select * from pgr_dijkstra( (4 rows) drop schema v cascade; -NOTICE: drop cascades to table v.roads +ROLLBACK; diff --git a/nix/tests/expected/pgtap.out b/nix/tests/expected/pgtap.out index 272d8387d..ad5fc1890 100644 --- a/nix/tests/expected/pgtap.out +++ b/nix/tests/expected/pgtap.out @@ -1,4 +1,6 @@ begin; +set client_min_messages = warning; +create extension if not exists pgtap with schema extensions; select plan(1); plan ------ diff --git a/nix/tests/expected/plpgsql-check.out b/nix/tests/expected/plpgsql-check.out index 2b5bf8287..120128ae0 100644 --- a/nix/tests/expected/plpgsql-check.out +++ b/nix/tests/expected/plpgsql-check.out @@ -1,3 +1,6 @@ +BEGIN; +set client_min_messages = warning; +create extension if not exists plpgsql_check with schema extensions; create schema v; create table v.t1( a int, @@ -30,6 +33,4 @@ select * from plpgsql_check_function('v.f1()'); (2 rows) drop schema v cascade; -NOTICE: drop cascades to 2 other objects -DETAIL: drop cascades to table v.t1 -drop cascades to function v.f1() +ROLLBACK; diff --git a/nix/tests/expected/roles.out b/nix/tests/expected/roles.out index 9c5a47a71..3fef8e2a0 100644 --- a/nix/tests/expected/roles.out +++ b/nix/tests/expected/roles.out @@ -41,17 +41,15 @@ order by rolname; pgsodium_keyholder | f | f | f | t | f | f | -1 | f | pgsodium_keyiduser | f | f | f | t | f | f | -1 | f | pgsodium_keymaker | f | f | f | t | f | f | -1 | f | - pgtle_admin | f | f | f | t | f | f | -1 | f | postgres | t | t | f | t | t | t | -1 | t | service_role | f | f | f | t | f | f | -1 | t | supabase_admin | t | t | t | t | t | t | -1 | t | supabase_auth_admin | t | t | f | f | f | f | -1 | f | supabase_etl_admin | f | t | f | t | f | t | -1 | f | - supabase_functions_admin | t | t | f | f | f | f | -1 | f | supabase_read_only_user | f | t | f | t | f | f | -1 | t | supabase_replication_admin | f | t | f | t | f | t | -1 | f | supabase_storage_admin | t | t | f | f | f | f | -1 | f | -(30 rows) +(28 rows) select rolname, @@ -81,17 +79,15 @@ order by rolname; pgsodium_keyholder | pgsodium_keyiduser | pgsodium_keymaker | - pgtle_admin | postgres | {"search_path=\"\\$user\", public, extensions"} service_role | supabase_admin | {"search_path=\"$user\", public, auth, extensions",log_statement=none} supabase_auth_admin | {search_path=auth,idle_in_transaction_session_timeout=60000,log_statement=none} supabase_etl_admin | - supabase_functions_admin | supabase_read_only_user | {default_transaction_read_only=on} supabase_replication_admin | supabase_storage_admin | {search_path=storage,log_statement=none} -(30 rows) +(28 rows) -- Check all privileges of the roles on the schemas select schema_name, privilege_type, grantee, default_for @@ -130,398 +126,380 @@ from ( a.privilege_type in ('CREATE', 'USAGE') ) sub order by schema_order, schema_name, privilege_type, grantee, default_for; - schema_name | privilege_type | grantee | default_for ---------------------+----------------+--------------------------+--------------------- - public | CREATE | pg_database_owner | pg_database_owner - public | DELETE | anon | supabase_admin - public | DELETE | anon | postgres - public | DELETE | authenticated | supabase_admin - public | DELETE | authenticated | postgres - public | DELETE | postgres | supabase_admin - public | DELETE | postgres | postgres - public | DELETE | service_role | supabase_admin - public | DELETE | service_role | postgres - public | EXECUTE | anon | supabase_admin - public | EXECUTE | anon | postgres - public | EXECUTE | authenticated | supabase_admin - public | EXECUTE | authenticated | postgres - public | EXECUTE | postgres | supabase_admin - public | EXECUTE | postgres | postgres - public | EXECUTE | service_role | supabase_admin - public | EXECUTE | service_role | postgres - public | INSERT | anon | supabase_admin - public | INSERT | anon | postgres - public | INSERT | authenticated | supabase_admin - public | INSERT | authenticated | postgres - public | INSERT | postgres | supabase_admin - public | INSERT | postgres | postgres - public | INSERT | service_role | supabase_admin - public | INSERT | service_role | postgres - public | REFERENCES | anon | supabase_admin - public | REFERENCES | anon | postgres - public | REFERENCES | authenticated | supabase_admin - public | REFERENCES | authenticated | postgres - public | REFERENCES | postgres | supabase_admin - public | REFERENCES | postgres | postgres - public | REFERENCES | service_role | supabase_admin - public | REFERENCES | service_role | postgres - public | SELECT | anon | supabase_admin - public | SELECT | anon | supabase_admin - public | SELECT | anon | postgres - public | SELECT | anon | postgres - public | SELECT | authenticated | supabase_admin - public | SELECT | authenticated | supabase_admin - public | SELECT | authenticated | postgres - public | SELECT | authenticated | postgres - public | SELECT | postgres | supabase_admin - public | SELECT | postgres | supabase_admin - public | SELECT | postgres | postgres - public | SELECT | postgres | postgres - public | SELECT | service_role | supabase_admin - public | SELECT | service_role | supabase_admin - public | SELECT | service_role | postgres - public | SELECT | service_role | postgres - public | TRIGGER | anon | supabase_admin - public | TRIGGER | anon | postgres - public | TRIGGER | authenticated | supabase_admin - public | TRIGGER | authenticated | postgres - public | TRIGGER | postgres | supabase_admin - public | TRIGGER | postgres | postgres - public | TRIGGER | service_role | supabase_admin - public | TRIGGER | service_role | postgres - public | TRUNCATE | anon | supabase_admin - public | TRUNCATE | anon | postgres - public | TRUNCATE | authenticated | supabase_admin - public | TRUNCATE | authenticated | postgres - public | TRUNCATE | postgres | supabase_admin - public | TRUNCATE | postgres | postgres - public | TRUNCATE | service_role | supabase_admin - public | TRUNCATE | service_role | postgres - public | UPDATE | anon | supabase_admin - public | UPDATE | anon | supabase_admin - public | UPDATE | anon | postgres - public | UPDATE | anon | postgres - public | UPDATE | authenticated | supabase_admin - public | UPDATE | authenticated | supabase_admin - public | UPDATE | authenticated | postgres - public | UPDATE | authenticated | postgres - public | UPDATE | postgres | supabase_admin - public | UPDATE | postgres | supabase_admin - public | UPDATE | postgres | postgres - public | UPDATE | postgres | postgres - public | UPDATE | service_role | supabase_admin - public | UPDATE | service_role | supabase_admin - public | UPDATE | service_role | postgres - public | UPDATE | service_role | postgres - public | USAGE | anon | supabase_admin - public | USAGE | anon | pg_database_owner - public | USAGE | anon | postgres - public | USAGE | authenticated | supabase_admin - public | USAGE | authenticated | pg_database_owner - public | USAGE | authenticated | postgres - public | USAGE | pg_database_owner | pg_database_owner - public | USAGE | postgres | supabase_admin - public | USAGE | postgres | pg_database_owner - public | USAGE | postgres | postgres - public | USAGE | service_role | supabase_admin - public | USAGE | service_role | pg_database_owner - public | USAGE | service_role | postgres - auth | CREATE | dashboard_user | supabase_admin - auth | CREATE | supabase_admin | supabase_admin - auth | CREATE | supabase_auth_admin | supabase_admin - auth | DELETE | dashboard_user | supabase_auth_admin - auth | DELETE | postgres | supabase_auth_admin - auth | EXECUTE | dashboard_user | supabase_auth_admin - auth | EXECUTE | postgres | supabase_auth_admin - auth | INSERT | dashboard_user | supabase_auth_admin - auth | INSERT | postgres | supabase_auth_admin - auth | REFERENCES | dashboard_user | supabase_auth_admin - auth | REFERENCES | postgres | supabase_auth_admin - auth | SELECT | dashboard_user | supabase_auth_admin - auth | SELECT | dashboard_user | supabase_auth_admin - auth | SELECT | postgres | supabase_auth_admin - auth | SELECT | postgres | supabase_auth_admin - auth | TRIGGER | dashboard_user | supabase_auth_admin - auth | TRIGGER | postgres | supabase_auth_admin - auth | TRUNCATE | dashboard_user | supabase_auth_admin - auth | TRUNCATE | postgres | supabase_auth_admin - auth | UPDATE | dashboard_user | supabase_auth_admin - auth | UPDATE | dashboard_user | supabase_auth_admin - auth | UPDATE | postgres | supabase_auth_admin - auth | UPDATE | postgres | supabase_auth_admin - auth | USAGE | anon | supabase_admin - auth | USAGE | authenticated | supabase_admin - auth | USAGE | dashboard_user | supabase_admin - auth | USAGE | dashboard_user | supabase_auth_admin - auth | USAGE | postgres | supabase_admin - auth | USAGE | postgres | supabase_auth_admin - auth | USAGE | service_role | supabase_admin - auth | USAGE | supabase_admin | supabase_admin - auth | USAGE | supabase_auth_admin | supabase_admin - extensions | CREATE | dashboard_user | postgres - extensions | CREATE | postgres | postgres - extensions | DELETE | postgres | supabase_admin - extensions | EXECUTE | postgres | supabase_admin - extensions | INSERT | postgres | supabase_admin - extensions | REFERENCES | postgres | supabase_admin - extensions | SELECT | postgres | supabase_admin - extensions | SELECT | postgres | supabase_admin - extensions | TRIGGER | postgres | supabase_admin - extensions | TRUNCATE | postgres | supabase_admin - extensions | UPDATE | postgres | supabase_admin - extensions | UPDATE | postgres | supabase_admin - extensions | USAGE | anon | postgres - extensions | USAGE | authenticated | postgres - extensions | USAGE | dashboard_user | postgres - extensions | USAGE | postgres | supabase_admin - extensions | USAGE | postgres | postgres - extensions | USAGE | service_role | postgres - graphql | CREATE | supabase_admin | supabase_admin - graphql | DELETE | anon | supabase_admin - graphql | DELETE | authenticated | supabase_admin - graphql | DELETE | postgres | supabase_admin - graphql | DELETE | service_role | supabase_admin - graphql | EXECUTE | anon | supabase_admin - graphql | EXECUTE | authenticated | supabase_admin - graphql | EXECUTE | postgres | supabase_admin - graphql | EXECUTE | service_role | supabase_admin - graphql | INSERT | anon | supabase_admin - graphql | INSERT | authenticated | supabase_admin - graphql | INSERT | postgres | supabase_admin - graphql | INSERT | service_role | supabase_admin - graphql | REFERENCES | anon | supabase_admin - graphql | REFERENCES | authenticated | supabase_admin - graphql | REFERENCES | postgres | supabase_admin - graphql | REFERENCES | service_role | supabase_admin - graphql | SELECT | anon | supabase_admin - graphql | SELECT | anon | supabase_admin - graphql | SELECT | authenticated | supabase_admin - graphql | SELECT | authenticated | supabase_admin - graphql | SELECT | postgres | supabase_admin - graphql | SELECT | postgres | supabase_admin - graphql | SELECT | service_role | supabase_admin - graphql | SELECT | service_role | supabase_admin - graphql | TRIGGER | anon | supabase_admin - graphql | TRIGGER | authenticated | supabase_admin - graphql | TRIGGER | postgres | supabase_admin - graphql | TRIGGER | service_role | supabase_admin - graphql | TRUNCATE | anon | supabase_admin - graphql | TRUNCATE | authenticated | supabase_admin - graphql | TRUNCATE | postgres | supabase_admin - graphql | TRUNCATE | service_role | supabase_admin - graphql | UPDATE | anon | supabase_admin - graphql | UPDATE | anon | supabase_admin - graphql | UPDATE | authenticated | supabase_admin - graphql | UPDATE | authenticated | supabase_admin - graphql | UPDATE | postgres | supabase_admin - graphql | UPDATE | postgres | supabase_admin - graphql | UPDATE | service_role | supabase_admin - graphql | UPDATE | service_role | supabase_admin - graphql | USAGE | anon | supabase_admin - graphql | USAGE | anon | supabase_admin - graphql | USAGE | authenticated | supabase_admin - graphql | USAGE | authenticated | supabase_admin - graphql | USAGE | postgres | supabase_admin - graphql | USAGE | postgres | supabase_admin - graphql | USAGE | service_role | supabase_admin - graphql | USAGE | service_role | supabase_admin - graphql | USAGE | supabase_admin | supabase_admin - graphql_public | CREATE | supabase_admin | supabase_admin - graphql_public | DELETE | anon | supabase_admin - graphql_public | DELETE | authenticated | supabase_admin - graphql_public | DELETE | postgres | supabase_admin - graphql_public | DELETE | service_role | supabase_admin - graphql_public | EXECUTE | anon | supabase_admin - graphql_public | EXECUTE | authenticated | supabase_admin - graphql_public | EXECUTE | postgres | supabase_admin - graphql_public | EXECUTE | service_role | supabase_admin - graphql_public | INSERT | anon | supabase_admin - graphql_public | INSERT | authenticated | supabase_admin - graphql_public | INSERT | postgres | supabase_admin - graphql_public | INSERT | service_role | supabase_admin - graphql_public | REFERENCES | anon | supabase_admin - graphql_public | REFERENCES | authenticated | supabase_admin - graphql_public | REFERENCES | postgres | supabase_admin - graphql_public | REFERENCES | service_role | supabase_admin - graphql_public | SELECT | anon | supabase_admin - graphql_public | SELECT | anon | supabase_admin - graphql_public | SELECT | authenticated | supabase_admin - graphql_public | SELECT | authenticated | supabase_admin - graphql_public | SELECT | postgres | supabase_admin - graphql_public | SELECT | postgres | supabase_admin - graphql_public | SELECT | service_role | supabase_admin - graphql_public | SELECT | service_role | supabase_admin - graphql_public | TRIGGER | anon | supabase_admin - graphql_public | TRIGGER | authenticated | supabase_admin - graphql_public | TRIGGER | postgres | supabase_admin - graphql_public | TRIGGER | service_role | supabase_admin - graphql_public | TRUNCATE | anon | supabase_admin - graphql_public | TRUNCATE | authenticated | supabase_admin - graphql_public | TRUNCATE | postgres | supabase_admin - graphql_public | TRUNCATE | service_role | supabase_admin - graphql_public | UPDATE | anon | supabase_admin - graphql_public | UPDATE | anon | supabase_admin - graphql_public | UPDATE | authenticated | supabase_admin - graphql_public | UPDATE | authenticated | supabase_admin - graphql_public | UPDATE | postgres | supabase_admin - graphql_public | UPDATE | postgres | supabase_admin - graphql_public | UPDATE | service_role | supabase_admin - graphql_public | UPDATE | service_role | supabase_admin - graphql_public | USAGE | anon | supabase_admin - graphql_public | USAGE | anon | supabase_admin - graphql_public | USAGE | authenticated | supabase_admin - graphql_public | USAGE | authenticated | supabase_admin - graphql_public | USAGE | postgres | supabase_admin - graphql_public | USAGE | postgres | supabase_admin - graphql_public | USAGE | service_role | supabase_admin - graphql_public | USAGE | service_role | supabase_admin - graphql_public | USAGE | supabase_admin | supabase_admin - information_schema | CREATE | supabase_admin | supabase_admin - information_schema | USAGE | supabase_admin | supabase_admin - net | CREATE | supabase_admin | supabase_admin - net | USAGE | anon | supabase_admin - net | USAGE | authenticated | supabase_admin - net | USAGE | postgres | supabase_admin - net | USAGE | service_role | supabase_admin - net | USAGE | supabase_admin | supabase_admin - net | USAGE | supabase_functions_admin | supabase_admin - pg_catalog | CREATE | supabase_admin | supabase_admin - pg_catalog | USAGE | supabase_admin | supabase_admin - pgmq | CREATE | supabase_admin | supabase_admin - pgmq | SELECT | pg_monitor | supabase_admin - pgmq | SELECT | pg_monitor | supabase_admin - pgmq | USAGE | pg_monitor | supabase_admin - pgmq | USAGE | supabase_admin | supabase_admin - pgsodium | CREATE | supabase_admin | supabase_admin - pgsodium | DELETE | pgsodium_keyholder | supabase_admin - pgsodium | INSERT | pgsodium_keyholder | supabase_admin - pgsodium | REFERENCES | pgsodium_keyholder | supabase_admin - pgsodium | SELECT | pgsodium_keyholder | supabase_admin - pgsodium | SELECT | pgsodium_keyholder | supabase_admin - pgsodium | TRIGGER | pgsodium_keyholder | supabase_admin - pgsodium | TRUNCATE | pgsodium_keyholder | supabase_admin - pgsodium | UPDATE | pgsodium_keyholder | supabase_admin - pgsodium | UPDATE | pgsodium_keyholder | supabase_admin - pgsodium | USAGE | pgsodium_keyholder | supabase_admin - pgsodium | USAGE | supabase_admin | supabase_admin - pgsodium_masks | CREATE | supabase_admin | supabase_admin - pgsodium_masks | DELETE | pgsodium_keyiduser | supabase_admin - pgsodium_masks | EXECUTE | pgsodium_keyiduser | supabase_admin - pgsodium_masks | INSERT | pgsodium_keyiduser | supabase_admin - pgsodium_masks | REFERENCES | pgsodium_keyiduser | supabase_admin - pgsodium_masks | SELECT | pgsodium_keyiduser | supabase_admin - pgsodium_masks | SELECT | pgsodium_keyiduser | supabase_admin - pgsodium_masks | TRIGGER | pgsodium_keyiduser | supabase_admin - pgsodium_masks | TRUNCATE | pgsodium_keyiduser | supabase_admin - pgsodium_masks | UPDATE | pgsodium_keyiduser | supabase_admin - pgsodium_masks | UPDATE | pgsodium_keyiduser | supabase_admin - pgsodium_masks | USAGE | pgsodium_keyiduser | supabase_admin - pgsodium_masks | USAGE | pgsodium_keyiduser | supabase_admin - pgsodium_masks | USAGE | supabase_admin | supabase_admin - pgtle | CREATE | pgtle_admin | supabase_admin - pgtle | CREATE | supabase_admin | supabase_admin - pgtle | USAGE | pgtle_admin | supabase_admin - pgtle | USAGE | supabase_admin | supabase_admin - realtime | CREATE | supabase_admin | supabase_admin - realtime | DELETE | dashboard_user | supabase_admin - realtime | DELETE | postgres | supabase_admin - realtime | EXECUTE | dashboard_user | supabase_admin - realtime | EXECUTE | postgres | supabase_admin - realtime | INSERT | dashboard_user | supabase_admin - realtime | INSERT | postgres | supabase_admin - realtime | REFERENCES | dashboard_user | supabase_admin - realtime | REFERENCES | postgres | supabase_admin - realtime | SELECT | dashboard_user | supabase_admin - realtime | SELECT | dashboard_user | supabase_admin - realtime | SELECT | postgres | supabase_admin - realtime | SELECT | postgres | supabase_admin - realtime | TRIGGER | dashboard_user | supabase_admin - realtime | TRIGGER | postgres | supabase_admin - realtime | TRUNCATE | dashboard_user | supabase_admin - realtime | TRUNCATE | postgres | supabase_admin - realtime | UPDATE | dashboard_user | supabase_admin - realtime | UPDATE | dashboard_user | supabase_admin - realtime | UPDATE | postgres | supabase_admin - realtime | UPDATE | postgres | supabase_admin - realtime | USAGE | dashboard_user | supabase_admin - realtime | USAGE | postgres | supabase_admin - realtime | USAGE | postgres | supabase_admin - realtime | USAGE | supabase_admin | supabase_admin - repack | CREATE | postgres | supabase_admin - repack | CREATE | supabase_admin | supabase_admin - repack | DELETE | postgres | supabase_admin - repack | INSERT | postgres | supabase_admin - repack | REFERENCES | postgres | supabase_admin - repack | SELECT | postgres | supabase_admin - repack | SELECT | postgres | supabase_admin - repack | TRIGGER | postgres | supabase_admin - repack | TRUNCATE | postgres | supabase_admin - repack | UPDATE | postgres | supabase_admin - repack | UPDATE | postgres | supabase_admin - repack | USAGE | postgres | supabase_admin - repack | USAGE | postgres | supabase_admin - repack | USAGE | supabase_admin | supabase_admin - storage | CREATE | dashboard_user | supabase_admin - storage | CREATE | supabase_admin | supabase_admin - storage | CREATE | supabase_storage_admin | supabase_admin - storage | DELETE | anon | postgres - storage | DELETE | authenticated | postgres - storage | DELETE | postgres | postgres - storage | DELETE | service_role | postgres - storage | EXECUTE | anon | postgres - storage | EXECUTE | authenticated | postgres - storage | EXECUTE | postgres | postgres - storage | EXECUTE | service_role | postgres - storage | INSERT | anon | postgres - storage | INSERT | authenticated | postgres - storage | INSERT | postgres | postgres - storage | INSERT | service_role | postgres - storage | REFERENCES | anon | postgres - storage | REFERENCES | authenticated | postgres - storage | REFERENCES | postgres | postgres - storage | REFERENCES | service_role | postgres - storage | SELECT | anon | postgres - storage | SELECT | anon | postgres - storage | SELECT | authenticated | postgres - storage | SELECT | authenticated | postgres - storage | SELECT | postgres | postgres - storage | SELECT | postgres | postgres - storage | SELECT | service_role | postgres - storage | SELECT | service_role | postgres - storage | TRIGGER | anon | postgres - storage | TRIGGER | authenticated | postgres - storage | TRIGGER | postgres | postgres - storage | TRIGGER | service_role | postgres - storage | TRUNCATE | anon | postgres - storage | TRUNCATE | authenticated | postgres - storage | TRUNCATE | postgres | postgres - storage | TRUNCATE | service_role | postgres - storage | UPDATE | anon | postgres - storage | UPDATE | anon | postgres - storage | UPDATE | authenticated | postgres - storage | UPDATE | authenticated | postgres - storage | UPDATE | postgres | postgres - storage | UPDATE | postgres | postgres - storage | UPDATE | service_role | postgres - storage | UPDATE | service_role | postgres - storage | USAGE | anon | supabase_admin - storage | USAGE | anon | postgres - storage | USAGE | authenticated | supabase_admin - storage | USAGE | authenticated | postgres - storage | USAGE | dashboard_user | supabase_admin - storage | USAGE | postgres | supabase_admin - storage | USAGE | postgres | postgres - storage | USAGE | service_role | supabase_admin - storage | USAGE | service_role | postgres - storage | USAGE | supabase_admin | supabase_admin - storage | USAGE | supabase_storage_admin | supabase_admin - topology | CREATE | supabase_admin | supabase_admin - topology | USAGE | supabase_admin | supabase_admin - vault | CREATE | supabase_admin | supabase_admin - vault | USAGE | postgres | supabase_admin - vault | USAGE | service_role | supabase_admin - vault | USAGE | supabase_admin | supabase_admin -(389 rows) + schema_name | privilege_type | grantee | default_for +--------------------+----------------+------------------------+--------------------- + public | CREATE | pg_database_owner | pg_database_owner + public | DELETE | anon | supabase_admin + public | DELETE | anon | postgres + public | DELETE | authenticated | supabase_admin + public | DELETE | authenticated | postgres + public | DELETE | postgres | supabase_admin + public | DELETE | postgres | postgres + public | DELETE | service_role | supabase_admin + public | DELETE | service_role | postgres + public | EXECUTE | anon | supabase_admin + public | EXECUTE | anon | postgres + public | EXECUTE | authenticated | supabase_admin + public | EXECUTE | authenticated | postgres + public | EXECUTE | postgres | supabase_admin + public | EXECUTE | postgres | postgres + public | EXECUTE | service_role | supabase_admin + public | EXECUTE | service_role | postgres + public | INSERT | anon | supabase_admin + public | INSERT | anon | postgres + public | INSERT | authenticated | supabase_admin + public | INSERT | authenticated | postgres + public | INSERT | postgres | supabase_admin + public | INSERT | postgres | postgres + public | INSERT | service_role | supabase_admin + public | INSERT | service_role | postgres + public | REFERENCES | anon | supabase_admin + public | REFERENCES | anon | postgres + public | REFERENCES | authenticated | supabase_admin + public | REFERENCES | authenticated | postgres + public | REFERENCES | postgres | supabase_admin + public | REFERENCES | postgres | postgres + public | REFERENCES | service_role | supabase_admin + public | REFERENCES | service_role | postgres + public | SELECT | anon | supabase_admin + public | SELECT | anon | supabase_admin + public | SELECT | anon | postgres + public | SELECT | anon | postgres + public | SELECT | authenticated | supabase_admin + public | SELECT | authenticated | supabase_admin + public | SELECT | authenticated | postgres + public | SELECT | authenticated | postgres + public | SELECT | postgres | supabase_admin + public | SELECT | postgres | supabase_admin + public | SELECT | postgres | postgres + public | SELECT | postgres | postgres + public | SELECT | service_role | supabase_admin + public | SELECT | service_role | supabase_admin + public | SELECT | service_role | postgres + public | SELECT | service_role | postgres + public | TRIGGER | anon | supabase_admin + public | TRIGGER | anon | postgres + public | TRIGGER | authenticated | supabase_admin + public | TRIGGER | authenticated | postgres + public | TRIGGER | postgres | supabase_admin + public | TRIGGER | postgres | postgres + public | TRIGGER | service_role | supabase_admin + public | TRIGGER | service_role | postgres + public | TRUNCATE | anon | supabase_admin + public | TRUNCATE | anon | postgres + public | TRUNCATE | authenticated | supabase_admin + public | TRUNCATE | authenticated | postgres + public | TRUNCATE | postgres | supabase_admin + public | TRUNCATE | postgres | postgres + public | TRUNCATE | service_role | supabase_admin + public | TRUNCATE | service_role | postgres + public | UPDATE | anon | supabase_admin + public | UPDATE | anon | supabase_admin + public | UPDATE | anon | postgres + public | UPDATE | anon | postgres + public | UPDATE | authenticated | supabase_admin + public | UPDATE | authenticated | supabase_admin + public | UPDATE | authenticated | postgres + public | UPDATE | authenticated | postgres + public | UPDATE | postgres | supabase_admin + public | UPDATE | postgres | supabase_admin + public | UPDATE | postgres | postgres + public | UPDATE | postgres | postgres + public | UPDATE | service_role | supabase_admin + public | UPDATE | service_role | supabase_admin + public | UPDATE | service_role | postgres + public | UPDATE | service_role | postgres + public | USAGE | anon | supabase_admin + public | USAGE | anon | pg_database_owner + public | USAGE | anon | postgres + public | USAGE | authenticated | supabase_admin + public | USAGE | authenticated | pg_database_owner + public | USAGE | authenticated | postgres + public | USAGE | pg_database_owner | pg_database_owner + public | USAGE | postgres | supabase_admin + public | USAGE | postgres | pg_database_owner + public | USAGE | postgres | postgres + public | USAGE | service_role | supabase_admin + public | USAGE | service_role | pg_database_owner + public | USAGE | service_role | postgres + auth | CREATE | dashboard_user | supabase_admin + auth | CREATE | supabase_admin | supabase_admin + auth | CREATE | supabase_auth_admin | supabase_admin + auth | DELETE | dashboard_user | supabase_auth_admin + auth | DELETE | postgres | supabase_auth_admin + auth | EXECUTE | dashboard_user | supabase_auth_admin + auth | EXECUTE | postgres | supabase_auth_admin + auth | INSERT | dashboard_user | supabase_auth_admin + auth | INSERT | postgres | supabase_auth_admin + auth | REFERENCES | dashboard_user | supabase_auth_admin + auth | REFERENCES | postgres | supabase_auth_admin + auth | SELECT | dashboard_user | supabase_auth_admin + auth | SELECT | dashboard_user | supabase_auth_admin + auth | SELECT | postgres | supabase_auth_admin + auth | SELECT | postgres | supabase_auth_admin + auth | TRIGGER | dashboard_user | supabase_auth_admin + auth | TRIGGER | postgres | supabase_auth_admin + auth | TRUNCATE | dashboard_user | supabase_auth_admin + auth | TRUNCATE | postgres | supabase_auth_admin + auth | UPDATE | dashboard_user | supabase_auth_admin + auth | UPDATE | dashboard_user | supabase_auth_admin + auth | UPDATE | postgres | supabase_auth_admin + auth | UPDATE | postgres | supabase_auth_admin + auth | USAGE | anon | supabase_admin + auth | USAGE | authenticated | supabase_admin + auth | USAGE | dashboard_user | supabase_admin + auth | USAGE | dashboard_user | supabase_auth_admin + auth | USAGE | postgres | supabase_admin + auth | USAGE | postgres | supabase_auth_admin + auth | USAGE | service_role | supabase_admin + auth | USAGE | supabase_admin | supabase_admin + auth | USAGE | supabase_auth_admin | supabase_admin + extensions | CREATE | dashboard_user | postgres + extensions | CREATE | postgres | postgres + extensions | DELETE | postgres | supabase_admin + extensions | EXECUTE | postgres | supabase_admin + extensions | INSERT | postgres | supabase_admin + extensions | REFERENCES | postgres | supabase_admin + extensions | SELECT | postgres | supabase_admin + extensions | SELECT | postgres | supabase_admin + extensions | TRIGGER | postgres | supabase_admin + extensions | TRUNCATE | postgres | supabase_admin + extensions | UPDATE | postgres | supabase_admin + extensions | UPDATE | postgres | supabase_admin + extensions | USAGE | anon | postgres + extensions | USAGE | authenticated | postgres + extensions | USAGE | dashboard_user | postgres + extensions | USAGE | postgres | supabase_admin + extensions | USAGE | postgres | postgres + extensions | USAGE | service_role | postgres + graphql | CREATE | supabase_admin | supabase_admin + graphql | DELETE | anon | supabase_admin + graphql | DELETE | authenticated | supabase_admin + graphql | DELETE | postgres | supabase_admin + graphql | DELETE | service_role | supabase_admin + graphql | EXECUTE | anon | supabase_admin + graphql | EXECUTE | authenticated | supabase_admin + graphql | EXECUTE | postgres | supabase_admin + graphql | EXECUTE | service_role | supabase_admin + graphql | INSERT | anon | supabase_admin + graphql | INSERT | authenticated | supabase_admin + graphql | INSERT | postgres | supabase_admin + graphql | INSERT | service_role | supabase_admin + graphql | REFERENCES | anon | supabase_admin + graphql | REFERENCES | authenticated | supabase_admin + graphql | REFERENCES | postgres | supabase_admin + graphql | REFERENCES | service_role | supabase_admin + graphql | SELECT | anon | supabase_admin + graphql | SELECT | anon | supabase_admin + graphql | SELECT | authenticated | supabase_admin + graphql | SELECT | authenticated | supabase_admin + graphql | SELECT | postgres | supabase_admin + graphql | SELECT | postgres | supabase_admin + graphql | SELECT | service_role | supabase_admin + graphql | SELECT | service_role | supabase_admin + graphql | TRIGGER | anon | supabase_admin + graphql | TRIGGER | authenticated | supabase_admin + graphql | TRIGGER | postgres | supabase_admin + graphql | TRIGGER | service_role | supabase_admin + graphql | TRUNCATE | anon | supabase_admin + graphql | TRUNCATE | authenticated | supabase_admin + graphql | TRUNCATE | postgres | supabase_admin + graphql | TRUNCATE | service_role | supabase_admin + graphql | UPDATE | anon | supabase_admin + graphql | UPDATE | anon | supabase_admin + graphql | UPDATE | authenticated | supabase_admin + graphql | UPDATE | authenticated | supabase_admin + graphql | UPDATE | postgres | supabase_admin + graphql | UPDATE | postgres | supabase_admin + graphql | UPDATE | service_role | supabase_admin + graphql | UPDATE | service_role | supabase_admin + graphql | USAGE | anon | supabase_admin + graphql | USAGE | anon | supabase_admin + graphql | USAGE | authenticated | supabase_admin + graphql | USAGE | authenticated | supabase_admin + graphql | USAGE | postgres | supabase_admin + graphql | USAGE | postgres | supabase_admin + graphql | USAGE | service_role | supabase_admin + graphql | USAGE | service_role | supabase_admin + graphql | USAGE | supabase_admin | supabase_admin + graphql_public | CREATE | supabase_admin | supabase_admin + graphql_public | DELETE | anon | supabase_admin + graphql_public | DELETE | authenticated | supabase_admin + graphql_public | DELETE | postgres | supabase_admin + graphql_public | DELETE | service_role | supabase_admin + graphql_public | EXECUTE | anon | supabase_admin + graphql_public | EXECUTE | authenticated | supabase_admin + graphql_public | EXECUTE | postgres | supabase_admin + graphql_public | EXECUTE | service_role | supabase_admin + graphql_public | INSERT | anon | supabase_admin + graphql_public | INSERT | authenticated | supabase_admin + graphql_public | INSERT | postgres | supabase_admin + graphql_public | INSERT | service_role | supabase_admin + graphql_public | REFERENCES | anon | supabase_admin + graphql_public | REFERENCES | authenticated | supabase_admin + graphql_public | REFERENCES | postgres | supabase_admin + graphql_public | REFERENCES | service_role | supabase_admin + graphql_public | SELECT | anon | supabase_admin + graphql_public | SELECT | anon | supabase_admin + graphql_public | SELECT | authenticated | supabase_admin + graphql_public | SELECT | authenticated | supabase_admin + graphql_public | SELECT | postgres | supabase_admin + graphql_public | SELECT | postgres | supabase_admin + graphql_public | SELECT | service_role | supabase_admin + graphql_public | SELECT | service_role | supabase_admin + graphql_public | TRIGGER | anon | supabase_admin + graphql_public | TRIGGER | authenticated | supabase_admin + graphql_public | TRIGGER | postgres | supabase_admin + graphql_public | TRIGGER | service_role | supabase_admin + graphql_public | TRUNCATE | anon | supabase_admin + graphql_public | TRUNCATE | authenticated | supabase_admin + graphql_public | TRUNCATE | postgres | supabase_admin + graphql_public | TRUNCATE | service_role | supabase_admin + graphql_public | UPDATE | anon | supabase_admin + graphql_public | UPDATE | anon | supabase_admin + graphql_public | UPDATE | authenticated | supabase_admin + graphql_public | UPDATE | authenticated | supabase_admin + graphql_public | UPDATE | postgres | supabase_admin + graphql_public | UPDATE | postgres | supabase_admin + graphql_public | UPDATE | service_role | supabase_admin + graphql_public | UPDATE | service_role | supabase_admin + graphql_public | USAGE | anon | supabase_admin + graphql_public | USAGE | anon | supabase_admin + graphql_public | USAGE | authenticated | supabase_admin + graphql_public | USAGE | authenticated | supabase_admin + graphql_public | USAGE | postgres | supabase_admin + graphql_public | USAGE | postgres | supabase_admin + graphql_public | USAGE | service_role | supabase_admin + graphql_public | USAGE | service_role | supabase_admin + graphql_public | USAGE | supabase_admin | supabase_admin + information_schema | CREATE | supabase_admin | supabase_admin + information_schema | USAGE | supabase_admin | supabase_admin + pg_catalog | CREATE | supabase_admin | supabase_admin + pg_catalog | USAGE | supabase_admin | supabase_admin + pgsodium | CREATE | supabase_admin | supabase_admin + pgsodium | DELETE | pgsodium_keyholder | supabase_admin + pgsodium | INSERT | pgsodium_keyholder | supabase_admin + pgsodium | REFERENCES | pgsodium_keyholder | supabase_admin + pgsodium | SELECT | pgsodium_keyholder | supabase_admin + pgsodium | SELECT | pgsodium_keyholder | supabase_admin + pgsodium | TRIGGER | pgsodium_keyholder | supabase_admin + pgsodium | TRUNCATE | pgsodium_keyholder | supabase_admin + pgsodium | UPDATE | pgsodium_keyholder | supabase_admin + pgsodium | UPDATE | pgsodium_keyholder | supabase_admin + pgsodium | USAGE | pgsodium_keyholder | supabase_admin + pgsodium | USAGE | supabase_admin | supabase_admin + pgsodium_masks | CREATE | supabase_admin | supabase_admin + pgsodium_masks | DELETE | pgsodium_keyiduser | supabase_admin + pgsodium_masks | EXECUTE | pgsodium_keyiduser | supabase_admin + pgsodium_masks | INSERT | pgsodium_keyiduser | supabase_admin + pgsodium_masks | REFERENCES | pgsodium_keyiduser | supabase_admin + pgsodium_masks | SELECT | pgsodium_keyiduser | supabase_admin + pgsodium_masks | SELECT | pgsodium_keyiduser | supabase_admin + pgsodium_masks | TRIGGER | pgsodium_keyiduser | supabase_admin + pgsodium_masks | TRUNCATE | pgsodium_keyiduser | supabase_admin + pgsodium_masks | UPDATE | pgsodium_keyiduser | supabase_admin + pgsodium_masks | UPDATE | pgsodium_keyiduser | supabase_admin + pgsodium_masks | USAGE | pgsodium_keyiduser | supabase_admin + pgsodium_masks | USAGE | pgsodium_keyiduser | supabase_admin + pgsodium_masks | USAGE | supabase_admin | supabase_admin + realtime | CREATE | supabase_admin | supabase_admin + realtime | DELETE | dashboard_user | supabase_admin + realtime | DELETE | postgres | supabase_admin + realtime | EXECUTE | dashboard_user | supabase_admin + realtime | EXECUTE | postgres | supabase_admin + realtime | INSERT | dashboard_user | supabase_admin + realtime | INSERT | postgres | supabase_admin + realtime | REFERENCES | dashboard_user | supabase_admin + realtime | REFERENCES | postgres | supabase_admin + realtime | SELECT | dashboard_user | supabase_admin + realtime | SELECT | dashboard_user | supabase_admin + realtime | SELECT | postgres | supabase_admin + realtime | SELECT | postgres | supabase_admin + realtime | TRIGGER | dashboard_user | supabase_admin + realtime | TRIGGER | postgres | supabase_admin + realtime | TRUNCATE | dashboard_user | supabase_admin + realtime | TRUNCATE | postgres | supabase_admin + realtime | UPDATE | dashboard_user | supabase_admin + realtime | UPDATE | dashboard_user | supabase_admin + realtime | UPDATE | postgres | supabase_admin + realtime | UPDATE | postgres | supabase_admin + realtime | USAGE | dashboard_user | supabase_admin + realtime | USAGE | postgres | supabase_admin + realtime | USAGE | postgres | supabase_admin + realtime | USAGE | supabase_admin | supabase_admin + repack | CREATE | postgres | supabase_admin + repack | CREATE | supabase_admin | supabase_admin + repack | DELETE | postgres | supabase_admin + repack | INSERT | postgres | supabase_admin + repack | REFERENCES | postgres | supabase_admin + repack | SELECT | postgres | supabase_admin + repack | SELECT | postgres | supabase_admin + repack | TRIGGER | postgres | supabase_admin + repack | TRUNCATE | postgres | supabase_admin + repack | UPDATE | postgres | supabase_admin + repack | UPDATE | postgres | supabase_admin + repack | USAGE | postgres | supabase_admin + repack | USAGE | postgres | supabase_admin + repack | USAGE | supabase_admin | supabase_admin + storage | CREATE | dashboard_user | supabase_admin + storage | CREATE | supabase_admin | supabase_admin + storage | CREATE | supabase_storage_admin | supabase_admin + storage | DELETE | anon | postgres + storage | DELETE | authenticated | postgres + storage | DELETE | postgres | postgres + storage | DELETE | service_role | postgres + storage | EXECUTE | anon | postgres + storage | EXECUTE | authenticated | postgres + storage | EXECUTE | postgres | postgres + storage | EXECUTE | service_role | postgres + storage | INSERT | anon | postgres + storage | INSERT | authenticated | postgres + storage | INSERT | postgres | postgres + storage | INSERT | service_role | postgres + storage | REFERENCES | anon | postgres + storage | REFERENCES | authenticated | postgres + storage | REFERENCES | postgres | postgres + storage | REFERENCES | service_role | postgres + storage | SELECT | anon | postgres + storage | SELECT | anon | postgres + storage | SELECT | authenticated | postgres + storage | SELECT | authenticated | postgres + storage | SELECT | postgres | postgres + storage | SELECT | postgres | postgres + storage | SELECT | service_role | postgres + storage | SELECT | service_role | postgres + storage | TRIGGER | anon | postgres + storage | TRIGGER | authenticated | postgres + storage | TRIGGER | postgres | postgres + storage | TRIGGER | service_role | postgres + storage | TRUNCATE | anon | postgres + storage | TRUNCATE | authenticated | postgres + storage | TRUNCATE | postgres | postgres + storage | TRUNCATE | service_role | postgres + storage | UPDATE | anon | postgres + storage | UPDATE | anon | postgres + storage | UPDATE | authenticated | postgres + storage | UPDATE | authenticated | postgres + storage | UPDATE | postgres | postgres + storage | UPDATE | postgres | postgres + storage | UPDATE | service_role | postgres + storage | UPDATE | service_role | postgres + storage | USAGE | anon | supabase_admin + storage | USAGE | anon | postgres + storage | USAGE | authenticated | supabase_admin + storage | USAGE | authenticated | postgres + storage | USAGE | dashboard_user | supabase_admin + storage | USAGE | postgres | supabase_admin + storage | USAGE | postgres | postgres + storage | USAGE | service_role | supabase_admin + storage | USAGE | service_role | postgres + storage | USAGE | supabase_admin | supabase_admin + storage | USAGE | supabase_storage_admin | supabase_admin + vault | CREATE | supabase_admin | supabase_admin + vault | USAGE | postgres | supabase_admin + vault | USAGE | service_role | supabase_admin + vault | USAGE | supabase_admin | supabase_admin +(371 rows) -- postgres can alter API roles' timeout set role postgres; diff --git a/nix/tests/expected/security.out b/nix/tests/expected/security.out index 81b6b8705..5ee79170b 100644 --- a/nix/tests/expected/security.out +++ b/nix/tests/expected/security.out @@ -7,27 +7,27 @@ from pg_catalog.pg_proc p where p.proowner = (select oid from pg_catalog.pg_roles where rolname = 'supabase_admin') and p.prosecdef = true order by 1,2; - nspname | proname ------------+-------------------------------- - graphql | get_schema_version - graphql | increment_schema_version - pgbouncer | get_auth - pgsodium | disable_security_label_trigger - pgsodium | enable_security_label_trigger - pgsodium | get_key_by_id - pgsodium | get_key_by_name - pgsodium | get_named_keys - pgsodium | mask_role - pgsodium | update_mask - public | dblink_connect_u - public | dblink_connect_u - public | pgaudit_ddl_command_end - public | pgaudit_sql_drop - public | st_estimatedextent - public | st_estimatedextent - public | st_estimatedextent - repack | repack_trigger - vault | create_secret - vault | update_secret + nspname | proname +------------+-------------------------------- + extensions | dblink_connect_u + extensions | dblink_connect_u + extensions | pgaudit_ddl_command_end + extensions | pgaudit_sql_drop + extensions | st_estimatedextent + extensions | st_estimatedextent + extensions | st_estimatedextent + graphql | get_schema_version + graphql | increment_schema_version + pgbouncer | get_auth + pgsodium | disable_security_label_trigger + pgsodium | enable_security_label_trigger + pgsodium | get_key_by_id + pgsodium | get_key_by_name + pgsodium | get_named_keys + pgsodium | mask_role + pgsodium | update_mask + repack | repack_trigger + vault | create_secret + vault | update_secret (20 rows) diff --git a/nix/tests/expected/z_15_ext_interface.out b/nix/tests/expected/z_15_ext_interface.out index a0db07837..5db6c0207 100644 --- a/nix/tests/expected/z_15_ext_interface.out +++ b/nix/tests/expected/z_15_ext_interface.out @@ -5,20 +5,113 @@ by Postgres extensions so we have to manually review/approve any difference that emerge as versions change. */ +-- Create all extensions within a transaction +-- This matches production behavior where users create extensions as needed +-- Supautils will automatically enforce schema rules and run after-create scripts +BEGIN; +-- disable notice messages because they differ between 15 and 17 +set client_min_messages = warning; +-- Create required schemas for relocatable extensions +-- Non-relocatable extensions (pg_tle, pgsodium, supabase_vault, pg_graphql) +-- automatically create their own schemas +create schema if not exists extensions; +create schema if not exists topology; +create schema if not exists tiger; +-- Privileged extensions -> extensions schema (enforced by supautils) +create extension if not exists address_standardizer with schema extensions; +create extension if not exists address_standardizer_data_us with schema extensions; +create extension if not exists autoinc with schema extensions; +create extension if not exists bloom with schema extensions; +create extension if not exists btree_gin with schema extensions; +create extension if not exists btree_gist with schema extensions; +create extension if not exists citext with schema extensions; +create extension if not exists cube with schema extensions; +create extension if not exists dblink with schema extensions; +create extension if not exists dict_int with schema extensions; +create extension if not exists dict_xsyn with schema extensions; +create extension if not exists earthdistance with schema extensions; +create extension if not exists fuzzystrmatch with schema extensions; +create extension if not exists http with schema extensions; +create extension if not exists hstore with schema extensions; +create extension if not exists hypopg with schema extensions; +create extension if not exists index_advisor with schema extensions; +create extension if not exists insert_username with schema extensions; +create extension if not exists intarray with schema extensions; +create extension if not exists isn with schema extensions; +create extension if not exists ltree with schema extensions; +create extension if not exists moddatetime with schema extensions; +create extension if not exists pg_buffercache with schema extensions; +create extension if not exists pg_net with schema extensions; +create extension if not exists pg_hashids with schema extensions; +create extension if not exists pg_prewarm with schema extensions; +create extension if not exists pg_jsonschema with schema extensions; +create extension if not exists pg_repack with schema extensions; +create extension if not exists pg_stat_monitor with schema extensions; +create extension if not exists pg_tle; +create extension if not exists pg_trgm with schema extensions; +create extension if not exists pg_walinspect with schema extensions; +create extension if not exists pgaudit with schema extensions; +create extension if not exists pgtap with schema extensions; +create extension if not exists pgroonga with schema extensions; +create extension if not exists pgroonga_database with schema extensions; +create extension if not exists pgsodium; +create extension if not exists pgrowlocks with schema extensions; +create extension if not exists pgstattuple with schema extensions; +create extension if not exists plpgsql_check with schema extensions; +create extension if not exists postgis with schema extensions; +create extension if not exists postgis_raster with schema extensions; +create extension if not exists postgis_sfcgal with schema extensions; +create extension if not exists postgis_topology with schema topology; +create extension if not exists pgrouting with schema extensions; +create extension if not exists postgres_fdw with schema extensions; +create extension if not exists rum with schema extensions; +create extension if not exists refint with schema extensions; +create extension if not exists seg with schema extensions; +create extension if not exists sslinfo with schema extensions; +create extension if not exists supabase_vault; +create extension if not exists tablefunc with schema extensions; +create extension if not exists tcn with schema extensions; +create extension if not exists tsm_system_rows with schema extensions; +create extension if not exists unaccent with schema extensions; +create extension if not exists vector with schema extensions; +create extension if not exists wrappers with schema extensions; +-- Non-privileged extensions (use their natural default schemas) +create extension if not exists amcheck; +create extension if not exists file_fdw; +create extension if not exists intagg; +create extension if not exists lo; +create extension if not exists pageinspect; +create extension if not exists pg_freespacemap; +create extension if not exists pgmq; +create extension if not exists pg_surgery with schema pg_catalog; -- non-relocatable +create extension if not exists pg_visibility; +ERROR: no schema has been selected to create in +create extension if not exists xml2; +ERROR: current transaction is aborted, commands ignored until end of transaction block +-- PG15-specific extensions +create extension if not exists adminpack; +ERROR: current transaction is aborted, commands ignored until end of transaction block +create extension if not exists plv8; -- plv8 is non-relocatable (schema = 'pg_catalog') +ERROR: current transaction is aborted, commands ignored until end of transaction block +create extension if not exists plcoffee; -- plcoffee is non-relocatable (schema = 'pg_catalog') +ERROR: current transaction is aborted, commands ignored until end of transaction block +create extension if not exists plls; -- plls is non-relocatable (schema = 'pg_catalog') +ERROR: current transaction is aborted, commands ignored until end of transaction block +create extension if not exists old_snapshot; +ERROR: current transaction is aborted, commands ignored until end of transaction block +create extension if not exists timescaledb with schema extensions; +ERROR: current transaction is aborted, commands ignored until end of transaction block +create extension if not exists postgis_tiger_geocoder with schema tiger; +ERROR: current transaction is aborted, commands ignored until end of transaction block +create extension if not exists pgjwt with schema extensions; +ERROR: current transaction is aborted, commands ignored until end of transaction block /* List all extensions that are not enabled If a new entry shows up in this list, that means a new extension has been -added and you should `create extension ...` to enable it in ./nix/tests/prime +added and you should create extension above */ -create extension if not exists adminpack; -create extension if not exists plv8; -create extension if not exists plcoffee; -create extension if not exists plls; -create extension if not exists old_snapshot; -create extension if not exists timescaledb; -create extension if not exists postgis_tiger_geocoder; select name from @@ -27,13 +120,7 @@ where installed_version is null order by name asc; - name ------------------ - pg_cron - pgjwt - tsm_system_time -(3 rows) - +ERROR: current transaction is aborted, commands ignored until end of transaction block /* Monitor relocatability and config of each extension @@ -47,89 +134,7 @@ from pg_extension order by extname asc; - extension_name | is_relocatable -------------------------------+---------------- - address_standardizer | t - address_standardizer_data_us | t - adminpack | f - amcheck | t - autoinc | t - bloom | t - btree_gin | t - btree_gist | t - citext | t - cube | t - dblink | t - dict_int | t - dict_xsyn | t - earthdistance | t - file_fdw | t - fuzzystrmatch | t - hstore | t - http | f - hypopg | t - index_advisor | t - insert_username | t - intagg | t - intarray | t - isn | t - lo | t - ltree | t - moddatetime | t - old_snapshot | t - pageinspect | t - pg_buffercache | t - pg_freespacemap | t - pg_graphql | f - pg_hashids | t - pg_jsonschema | f - pg_net | f - pg_prewarm | t - pg_repack | f - pg_stat_monitor | t - pg_stat_statements | t - pg_surgery | t - pg_tle | f - pg_trgm | t - pg_visibility | t - pg_walinspect | t - pgaudit | t - pgcrypto | t - pgmq | f - pgroonga | f - pgroonga_database | f - pgrouting | t - pgrowlocks | t - pgsodium | f - pgstattuple | t - pgtap | t - plcoffee | f - plls | f - plpgsql | f - plpgsql_check | f - plv8 | f - postgis | f - postgis_raster | f - postgis_sfcgal | t - postgis_tiger_geocoder | f - postgis_topology | f - postgres_fdw | t - refint | t - rum | t - seg | t - sslinfo | t - supabase_vault | f - tablefunc | t - tcn | t - timescaledb | f - tsm_system_rows | t - unaccent | t - uuid-ossp | t - vector | t - wrappers | t - xml2 | f -(79 rows) - +ERROR: current transaction is aborted, commands ignored until end of transaction block /* Monitor extension public function interface @@ -168,5081 +173,7 @@ order by n.nspname, p.proname, md5(pg_catalog.pg_get_function_identity_arguments(p.oid)); - extension_name | schema_name | function_name | argument_types | return_type -------------------------+--------------------------+--------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - address_standardizer | public | parse_address | text, OUT num text, OUT street text, OUT street2 text, OUT address1 text, OUT city text, OUT state text, OUT zip text, OUT zipplus text, OUT country text | record - address_standardizer | public | standardize_address | lextab text, gaztab text, rultab text, address text | stdaddr - address_standardizer | public | standardize_address | lextab text, gaztab text, rultab text, micro text, macro text | stdaddr - adminpack | pg_catalog | pg_file_rename | text, text | boolean - adminpack | pg_catalog | pg_file_rename | text, text, text | boolean - adminpack | pg_catalog | pg_file_sync | text | void - adminpack | pg_catalog | pg_file_unlink | text | boolean - adminpack | pg_catalog | pg_file_write | text, text, boolean | bigint - adminpack | pg_catalog | pg_logdir_ls | | SETOF record - amcheck | public | bt_index_check | index regclass | void - amcheck | public | bt_index_check | index regclass, heapallindexed boolean | void - amcheck | public | bt_index_parent_check | index regclass | void - amcheck | public | bt_index_parent_check | index regclass, heapallindexed boolean | void - amcheck | public | bt_index_parent_check | index regclass, heapallindexed boolean, rootdescend boolean | void - amcheck | public | verify_heapam | relation regclass, on_error_stop boolean, check_toast boolean, skip text, startblock bigint, endblock bigint, OUT blkno bigint, OUT offnum integer, OUT attnum integer, OUT msg text | SETOF record - autoinc | public | autoinc | | trigger - bloom | public | blhandler | internal | index_am_handler - btree_gin | public | gin_btree_consistent | internal, smallint, anyelement, integer, internal, internal | boolean - btree_gin | public | gin_compare_prefix_anyenum | anyenum, anyenum, smallint, internal | integer - btree_gin | public | gin_compare_prefix_bit | bit, bit, smallint, internal | integer - btree_gin | public | gin_compare_prefix_bool | boolean, boolean, smallint, internal | integer - btree_gin | public | gin_compare_prefix_bpchar | character, character, smallint, internal | integer - btree_gin | public | gin_compare_prefix_bytea | bytea, bytea, smallint, internal | integer - btree_gin | public | gin_compare_prefix_char | "char", "char", smallint, internal | integer - btree_gin | public | gin_compare_prefix_cidr | cidr, cidr, smallint, internal | integer - btree_gin | public | gin_compare_prefix_date | date, date, smallint, internal | integer - btree_gin | public | gin_compare_prefix_float4 | real, real, smallint, internal | integer - btree_gin | public | gin_compare_prefix_float8 | double precision, double precision, smallint, internal | integer - btree_gin | public | gin_compare_prefix_inet | inet, inet, smallint, internal | integer - btree_gin | public | gin_compare_prefix_int2 | smallint, smallint, smallint, internal | integer - btree_gin | public | gin_compare_prefix_int4 | integer, integer, smallint, internal | integer - btree_gin | public | gin_compare_prefix_int8 | bigint, bigint, smallint, internal | integer - btree_gin | public | gin_compare_prefix_interval | interval, interval, smallint, internal | integer - btree_gin | public | gin_compare_prefix_macaddr | macaddr, macaddr, smallint, internal | integer - btree_gin | public | gin_compare_prefix_macaddr8 | macaddr8, macaddr8, smallint, internal | integer - btree_gin | public | gin_compare_prefix_money | money, money, smallint, internal | integer - btree_gin | public | gin_compare_prefix_name | name, name, smallint, internal | integer - btree_gin | public | gin_compare_prefix_numeric | numeric, numeric, smallint, internal | integer - btree_gin | public | gin_compare_prefix_oid | oid, oid, smallint, internal | integer - btree_gin | public | gin_compare_prefix_text | text, text, smallint, internal | integer - btree_gin | public | gin_compare_prefix_time | time without time zone, time without time zone, smallint, internal | integer - btree_gin | public | gin_compare_prefix_timestamp | timestamp without time zone, timestamp without time zone, smallint, internal | integer - btree_gin | public | gin_compare_prefix_timestamptz | timestamp with time zone, timestamp with time zone, smallint, internal | integer - btree_gin | public | gin_compare_prefix_timetz | time with time zone, time with time zone, smallint, internal | integer - btree_gin | public | gin_compare_prefix_uuid | uuid, uuid, smallint, internal | integer - btree_gin | public | gin_compare_prefix_varbit | bit varying, bit varying, smallint, internal | integer - btree_gin | public | gin_enum_cmp | anyenum, anyenum | integer - btree_gin | public | gin_extract_query_anyenum | anyenum, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_bit | bit, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_bool | boolean, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_bpchar | character, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_bytea | bytea, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_char | "char", internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_cidr | cidr, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_date | date, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_float4 | real, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_float8 | double precision, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_inet | inet, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_int2 | smallint, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_int4 | integer, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_int8 | bigint, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_interval | interval, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_macaddr | macaddr, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_macaddr8 | macaddr8, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_money | money, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_name | name, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_numeric | numeric, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_oid | oid, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_text | text, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_time | time without time zone, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_timestamp | timestamp without time zone, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_timestamptz | timestamp with time zone, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_timetz | time with time zone, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_uuid | uuid, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_varbit | bit varying, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_value_anyenum | anyenum, internal | internal - btree_gin | public | gin_extract_value_bit | bit, internal | internal - btree_gin | public | gin_extract_value_bool | boolean, internal | internal - btree_gin | public | gin_extract_value_bpchar | character, internal | internal - btree_gin | public | gin_extract_value_bytea | bytea, internal | internal - btree_gin | public | gin_extract_value_char | "char", internal | internal - btree_gin | public | gin_extract_value_cidr | cidr, internal | internal - btree_gin | public | gin_extract_value_date | date, internal | internal - btree_gin | public | gin_extract_value_float4 | real, internal | internal - btree_gin | public | gin_extract_value_float8 | double precision, internal | internal - btree_gin | public | gin_extract_value_inet | inet, internal | internal - btree_gin | public | gin_extract_value_int2 | smallint, internal | internal - btree_gin | public | gin_extract_value_int4 | integer, internal | internal - btree_gin | public | gin_extract_value_int8 | bigint, internal | internal - btree_gin | public | gin_extract_value_interval | interval, internal | internal - btree_gin | public | gin_extract_value_macaddr | macaddr, internal | internal - btree_gin | public | gin_extract_value_macaddr8 | macaddr8, internal | internal - btree_gin | public | gin_extract_value_money | money, internal | internal - btree_gin | public | gin_extract_value_name | name, internal | internal - btree_gin | public | gin_extract_value_numeric | numeric, internal | internal - btree_gin | public | gin_extract_value_oid | oid, internal | internal - btree_gin | public | gin_extract_value_text | text, internal | internal - btree_gin | public | gin_extract_value_time | time without time zone, internal | internal - btree_gin | public | gin_extract_value_timestamp | timestamp without time zone, internal | internal - btree_gin | public | gin_extract_value_timestamptz | timestamp with time zone, internal | internal - btree_gin | public | gin_extract_value_timetz | time with time zone, internal | internal - btree_gin | public | gin_extract_value_uuid | uuid, internal | internal - btree_gin | public | gin_extract_value_varbit | bit varying, internal | internal - btree_gin | public | gin_numeric_cmp | numeric, numeric | integer - btree_gist | public | cash_dist | money, money | money - btree_gist | public | date_dist | date, date | integer - btree_gist | public | float4_dist | real, real | real - btree_gist | public | float8_dist | double precision, double precision | double precision - btree_gist | public | gbt_bit_compress | internal | internal - btree_gist | public | gbt_bit_consistent | internal, bit, smallint, oid, internal | boolean - btree_gist | public | gbt_bit_penalty | internal, internal, internal | internal - btree_gist | public | gbt_bit_picksplit | internal, internal | internal - btree_gist | public | gbt_bit_same | gbtreekey_var, gbtreekey_var, internal | internal - btree_gist | public | gbt_bit_union | internal, internal | gbtreekey_var - btree_gist | public | gbt_bool_compress | internal | internal - btree_gist | public | gbt_bool_consistent | internal, boolean, smallint, oid, internal | boolean - btree_gist | public | gbt_bool_fetch | internal | internal - btree_gist | public | gbt_bool_penalty | internal, internal, internal | internal - btree_gist | public | gbt_bool_picksplit | internal, internal | internal - btree_gist | public | gbt_bool_same | gbtreekey2, gbtreekey2, internal | internal - btree_gist | public | gbt_bool_union | internal, internal | gbtreekey2 - btree_gist | public | gbt_bpchar_compress | internal | internal - btree_gist | public | gbt_bpchar_consistent | internal, character, smallint, oid, internal | boolean - btree_gist | public | gbt_bytea_compress | internal | internal - btree_gist | public | gbt_bytea_consistent | internal, bytea, smallint, oid, internal | boolean - btree_gist | public | gbt_bytea_penalty | internal, internal, internal | internal - btree_gist | public | gbt_bytea_picksplit | internal, internal | internal - btree_gist | public | gbt_bytea_same | gbtreekey_var, gbtreekey_var, internal | internal - btree_gist | public | gbt_bytea_union | internal, internal | gbtreekey_var - btree_gist | public | gbt_cash_compress | internal | internal - btree_gist | public | gbt_cash_consistent | internal, money, smallint, oid, internal | boolean - btree_gist | public | gbt_cash_distance | internal, money, smallint, oid, internal | double precision - btree_gist | public | gbt_cash_fetch | internal | internal - btree_gist | public | gbt_cash_penalty | internal, internal, internal | internal - btree_gist | public | gbt_cash_picksplit | internal, internal | internal - btree_gist | public | gbt_cash_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_cash_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_date_compress | internal | internal - btree_gist | public | gbt_date_consistent | internal, date, smallint, oid, internal | boolean - btree_gist | public | gbt_date_distance | internal, date, smallint, oid, internal | double precision - btree_gist | public | gbt_date_fetch | internal | internal - btree_gist | public | gbt_date_penalty | internal, internal, internal | internal - btree_gist | public | gbt_date_picksplit | internal, internal | internal - btree_gist | public | gbt_date_same | gbtreekey8, gbtreekey8, internal | internal - btree_gist | public | gbt_date_union | internal, internal | gbtreekey8 - btree_gist | public | gbt_decompress | internal | internal - btree_gist | public | gbt_enum_compress | internal | internal - btree_gist | public | gbt_enum_consistent | internal, anyenum, smallint, oid, internal | boolean - btree_gist | public | gbt_enum_fetch | internal | internal - btree_gist | public | gbt_enum_penalty | internal, internal, internal | internal - btree_gist | public | gbt_enum_picksplit | internal, internal | internal - btree_gist | public | gbt_enum_same | gbtreekey8, gbtreekey8, internal | internal - btree_gist | public | gbt_enum_union | internal, internal | gbtreekey8 - btree_gist | public | gbt_float4_compress | internal | internal - btree_gist | public | gbt_float4_consistent | internal, real, smallint, oid, internal | boolean - btree_gist | public | gbt_float4_distance | internal, real, smallint, oid, internal | double precision - btree_gist | public | gbt_float4_fetch | internal | internal - btree_gist | public | gbt_float4_penalty | internal, internal, internal | internal - btree_gist | public | gbt_float4_picksplit | internal, internal | internal - btree_gist | public | gbt_float4_same | gbtreekey8, gbtreekey8, internal | internal - btree_gist | public | gbt_float4_union | internal, internal | gbtreekey8 - btree_gist | public | gbt_float8_compress | internal | internal - btree_gist | public | gbt_float8_consistent | internal, double precision, smallint, oid, internal | boolean - btree_gist | public | gbt_float8_distance | internal, double precision, smallint, oid, internal | double precision - btree_gist | public | gbt_float8_fetch | internal | internal - btree_gist | public | gbt_float8_penalty | internal, internal, internal | internal - btree_gist | public | gbt_float8_picksplit | internal, internal | internal - btree_gist | public | gbt_float8_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_float8_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_inet_compress | internal | internal - btree_gist | public | gbt_inet_consistent | internal, inet, smallint, oid, internal | boolean - btree_gist | public | gbt_inet_penalty | internal, internal, internal | internal - btree_gist | public | gbt_inet_picksplit | internal, internal | internal - btree_gist | public | gbt_inet_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_inet_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_int2_compress | internal | internal - btree_gist | public | gbt_int2_consistent | internal, smallint, smallint, oid, internal | boolean - btree_gist | public | gbt_int2_distance | internal, smallint, smallint, oid, internal | double precision - btree_gist | public | gbt_int2_fetch | internal | internal - btree_gist | public | gbt_int2_penalty | internal, internal, internal | internal - btree_gist | public | gbt_int2_picksplit | internal, internal | internal - btree_gist | public | gbt_int2_same | gbtreekey4, gbtreekey4, internal | internal - btree_gist | public | gbt_int2_union | internal, internal | gbtreekey4 - btree_gist | public | gbt_int4_compress | internal | internal - btree_gist | public | gbt_int4_consistent | internal, integer, smallint, oid, internal | boolean - btree_gist | public | gbt_int4_distance | internal, integer, smallint, oid, internal | double precision - btree_gist | public | gbt_int4_fetch | internal | internal - btree_gist | public | gbt_int4_penalty | internal, internal, internal | internal - btree_gist | public | gbt_int4_picksplit | internal, internal | internal - btree_gist | public | gbt_int4_same | gbtreekey8, gbtreekey8, internal | internal - btree_gist | public | gbt_int4_union | internal, internal | gbtreekey8 - btree_gist | public | gbt_int8_compress | internal | internal - btree_gist | public | gbt_int8_consistent | internal, bigint, smallint, oid, internal | boolean - btree_gist | public | gbt_int8_distance | internal, bigint, smallint, oid, internal | double precision - btree_gist | public | gbt_int8_fetch | internal | internal - btree_gist | public | gbt_int8_penalty | internal, internal, internal | internal - btree_gist | public | gbt_int8_picksplit | internal, internal | internal - btree_gist | public | gbt_int8_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_int8_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_intv_compress | internal | internal - btree_gist | public | gbt_intv_consistent | internal, interval, smallint, oid, internal | boolean - btree_gist | public | gbt_intv_decompress | internal | internal - btree_gist | public | gbt_intv_distance | internal, interval, smallint, oid, internal | double precision - btree_gist | public | gbt_intv_fetch | internal | internal - btree_gist | public | gbt_intv_penalty | internal, internal, internal | internal - btree_gist | public | gbt_intv_picksplit | internal, internal | internal - btree_gist | public | gbt_intv_same | gbtreekey32, gbtreekey32, internal | internal - btree_gist | public | gbt_intv_union | internal, internal | gbtreekey32 - btree_gist | public | gbt_macad8_compress | internal | internal - btree_gist | public | gbt_macad8_consistent | internal, macaddr8, smallint, oid, internal | boolean - btree_gist | public | gbt_macad8_fetch | internal | internal - btree_gist | public | gbt_macad8_penalty | internal, internal, internal | internal - btree_gist | public | gbt_macad8_picksplit | internal, internal | internal - btree_gist | public | gbt_macad8_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_macad8_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_macad_compress | internal | internal - btree_gist | public | gbt_macad_consistent | internal, macaddr, smallint, oid, internal | boolean - btree_gist | public | gbt_macad_fetch | internal | internal - btree_gist | public | gbt_macad_penalty | internal, internal, internal | internal - btree_gist | public | gbt_macad_picksplit | internal, internal | internal - btree_gist | public | gbt_macad_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_macad_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_numeric_compress | internal | internal - btree_gist | public | gbt_numeric_consistent | internal, numeric, smallint, oid, internal | boolean - btree_gist | public | gbt_numeric_penalty | internal, internal, internal | internal - btree_gist | public | gbt_numeric_picksplit | internal, internal | internal - btree_gist | public | gbt_numeric_same | gbtreekey_var, gbtreekey_var, internal | internal - btree_gist | public | gbt_numeric_union | internal, internal | gbtreekey_var - btree_gist | public | gbt_oid_compress | internal | internal - btree_gist | public | gbt_oid_consistent | internal, oid, smallint, oid, internal | boolean - btree_gist | public | gbt_oid_distance | internal, oid, smallint, oid, internal | double precision - btree_gist | public | gbt_oid_fetch | internal | internal - btree_gist | public | gbt_oid_penalty | internal, internal, internal | internal - btree_gist | public | gbt_oid_picksplit | internal, internal | internal - btree_gist | public | gbt_oid_same | gbtreekey8, gbtreekey8, internal | internal - btree_gist | public | gbt_oid_union | internal, internal | gbtreekey8 - btree_gist | public | gbt_text_compress | internal | internal - btree_gist | public | gbt_text_consistent | internal, text, smallint, oid, internal | boolean - btree_gist | public | gbt_text_penalty | internal, internal, internal | internal - btree_gist | public | gbt_text_picksplit | internal, internal | internal - btree_gist | public | gbt_text_same | gbtreekey_var, gbtreekey_var, internal | internal - btree_gist | public | gbt_text_union | internal, internal | gbtreekey_var - btree_gist | public | gbt_time_compress | internal | internal - btree_gist | public | gbt_time_consistent | internal, time without time zone, smallint, oid, internal | boolean - btree_gist | public | gbt_time_distance | internal, time without time zone, smallint, oid, internal | double precision - btree_gist | public | gbt_time_fetch | internal | internal - btree_gist | public | gbt_time_penalty | internal, internal, internal | internal - btree_gist | public | gbt_time_picksplit | internal, internal | internal - btree_gist | public | gbt_time_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_time_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_timetz_compress | internal | internal - btree_gist | public | gbt_timetz_consistent | internal, time with time zone, smallint, oid, internal | boolean - btree_gist | public | gbt_ts_compress | internal | internal - btree_gist | public | gbt_ts_consistent | internal, timestamp without time zone, smallint, oid, internal | boolean - btree_gist | public | gbt_ts_distance | internal, timestamp without time zone, smallint, oid, internal | double precision - btree_gist | public | gbt_ts_fetch | internal | internal - btree_gist | public | gbt_ts_penalty | internal, internal, internal | internal - btree_gist | public | gbt_ts_picksplit | internal, internal | internal - btree_gist | public | gbt_ts_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_ts_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_tstz_compress | internal | internal - btree_gist | public | gbt_tstz_consistent | internal, timestamp with time zone, smallint, oid, internal | boolean - btree_gist | public | gbt_tstz_distance | internal, timestamp with time zone, smallint, oid, internal | double precision - btree_gist | public | gbt_uuid_compress | internal | internal - btree_gist | public | gbt_uuid_consistent | internal, uuid, smallint, oid, internal | boolean - btree_gist | public | gbt_uuid_fetch | internal | internal - btree_gist | public | gbt_uuid_penalty | internal, internal, internal | internal - btree_gist | public | gbt_uuid_picksplit | internal, internal | internal - btree_gist | public | gbt_uuid_same | gbtreekey32, gbtreekey32, internal | internal - btree_gist | public | gbt_uuid_union | internal, internal | gbtreekey32 - btree_gist | public | gbt_var_decompress | internal | internal - btree_gist | public | gbt_var_fetch | internal | internal - btree_gist | public | gbtreekey16_in | cstring | gbtreekey16 - btree_gist | public | gbtreekey16_out | gbtreekey16 | cstring - btree_gist | public | gbtreekey2_in | cstring | gbtreekey2 - btree_gist | public | gbtreekey2_out | gbtreekey2 | cstring - btree_gist | public | gbtreekey32_in | cstring | gbtreekey32 - btree_gist | public | gbtreekey32_out | gbtreekey32 | cstring - btree_gist | public | gbtreekey4_in | cstring | gbtreekey4 - btree_gist | public | gbtreekey4_out | gbtreekey4 | cstring - btree_gist | public | gbtreekey8_in | cstring | gbtreekey8 - btree_gist | public | gbtreekey8_out | gbtreekey8 | cstring - btree_gist | public | gbtreekey_var_in | cstring | gbtreekey_var - btree_gist | public | gbtreekey_var_out | gbtreekey_var | cstring - btree_gist | public | int2_dist | smallint, smallint | smallint - btree_gist | public | int4_dist | integer, integer | integer - btree_gist | public | int8_dist | bigint, bigint | bigint - btree_gist | public | interval_dist | interval, interval | interval - btree_gist | public | oid_dist | oid, oid | oid - btree_gist | public | time_dist | time without time zone, time without time zone | interval - btree_gist | public | ts_dist | timestamp without time zone, timestamp without time zone | interval - btree_gist | public | tstz_dist | timestamp with time zone, timestamp with time zone | interval - citext | public | citext | boolean | citext - citext | public | citext | inet | citext - citext | public | citext | character | citext - citext | public | citext_cmp | citext, citext | integer - citext | public | citext_eq | citext, citext | boolean - citext | public | citext_ge | citext, citext | boolean - citext | public | citext_gt | citext, citext | boolean - citext | public | citext_hash | citext | integer - citext | public | citext_hash_extended | citext, bigint | bigint - citext | public | citext_larger | citext, citext | citext - citext | public | citext_le | citext, citext | boolean - citext | public | citext_lt | citext, citext | boolean - citext | public | citext_ne | citext, citext | boolean - citext | public | citext_pattern_cmp | citext, citext | integer - citext | public | citext_pattern_ge | citext, citext | boolean - citext | public | citext_pattern_gt | citext, citext | boolean - citext | public | citext_pattern_le | citext, citext | boolean - citext | public | citext_pattern_lt | citext, citext | boolean - citext | public | citext_smaller | citext, citext | citext - citext | public | citextin | cstring | citext - citext | public | citextout | citext | cstring - citext | public | citextrecv | internal | citext - citext | public | citextsend | citext | bytea - citext | public | max | citext | citext - citext | public | min | citext | citext - citext | public | regexp_match | citext, citext | text[] - citext | public | regexp_match | citext, citext, text | text[] - citext | public | regexp_matches | citext, citext | SETOF text[] - citext | public | regexp_matches | citext, citext, text | SETOF text[] - citext | public | regexp_replace | citext, citext, text, text | text - citext | public | regexp_replace | citext, citext, text | text - citext | public | regexp_split_to_array | citext, citext | text[] - citext | public | regexp_split_to_array | citext, citext, text | text[] - citext | public | regexp_split_to_table | citext, citext | SETOF text - citext | public | regexp_split_to_table | citext, citext, text | SETOF text - citext | public | replace | citext, citext, citext | text - citext | public | split_part | citext, citext, integer | text - citext | public | strpos | citext, citext | integer - citext | public | texticlike | citext, citext | boolean - citext | public | texticlike | citext, text | boolean - citext | public | texticnlike | citext, citext | boolean - citext | public | texticnlike | citext, text | boolean - citext | public | texticregexeq | citext, citext | boolean - citext | public | texticregexeq | citext, text | boolean - citext | public | texticregexne | citext, citext | boolean - citext | public | texticregexne | citext, text | boolean - citext | public | translate | citext, citext, text | text - cube | public | cube | cube, double precision, double precision | cube - cube | public | cube | double precision | cube - cube | public | cube | double precision[], double precision[] | cube - cube | public | cube | cube, double precision | cube - cube | public | cube | double precision, double precision | cube - cube | public | cube | double precision[] | cube - cube | public | cube_cmp | cube, cube | integer - cube | public | cube_contained | cube, cube | boolean - cube | public | cube_contains | cube, cube | boolean - cube | public | cube_coord | cube, integer | double precision - cube | public | cube_coord_llur | cube, integer | double precision - cube | public | cube_dim | cube | integer - cube | public | cube_distance | cube, cube | double precision - cube | public | cube_enlarge | cube, double precision, integer | cube - cube | public | cube_eq | cube, cube | boolean - cube | public | cube_ge | cube, cube | boolean - cube | public | cube_gt | cube, cube | boolean - cube | public | cube_in | cstring | cube - cube | public | cube_inter | cube, cube | cube - cube | public | cube_is_point | cube | boolean - cube | public | cube_le | cube, cube | boolean - cube | public | cube_ll_coord | cube, integer | double precision - cube | public | cube_lt | cube, cube | boolean - cube | public | cube_ne | cube, cube | boolean - cube | public | cube_out | cube | cstring - cube | public | cube_overlap | cube, cube | boolean - cube | public | cube_recv | internal | cube - cube | public | cube_send | cube | bytea - cube | public | cube_size | cube | double precision - cube | public | cube_subset | cube, integer[] | cube - cube | public | cube_union | cube, cube | cube - cube | public | cube_ur_coord | cube, integer | double precision - cube | public | distance_chebyshev | cube, cube | double precision - cube | public | distance_taxicab | cube, cube | double precision - cube | public | g_cube_consistent | internal, cube, smallint, oid, internal | boolean - cube | public | g_cube_distance | internal, cube, smallint, oid, internal | double precision - cube | public | g_cube_penalty | internal, internal, internal | internal - cube | public | g_cube_picksplit | internal, internal | internal - cube | public | g_cube_same | cube, cube, internal | internal - cube | public | g_cube_union | internal, internal | cube - dblink | public | dblink | text, boolean | SETOF record - dblink | public | dblink | text | SETOF record - dblink | public | dblink | text, text | SETOF record - dblink | public | dblink | text, text, boolean | SETOF record - dblink | public | dblink_build_sql_delete | text, int2vector, integer, text[] | text - dblink | public | dblink_build_sql_insert | text, int2vector, integer, text[], text[] | text - dblink | public | dblink_build_sql_update | text, int2vector, integer, text[], text[] | text - dblink | public | dblink_cancel_query | text | text - dblink | public | dblink_close | text, boolean | text - dblink | public | dblink_close | text | text - dblink | public | dblink_close | text, text | text - dblink | public | dblink_close | text, text, boolean | text - dblink | public | dblink_connect | text | text - dblink | public | dblink_connect | text, text | text - dblink | public | dblink_connect_u | text | text - dblink | public | dblink_connect_u | text, text | text - dblink | public | dblink_current_query | | text - dblink | public | dblink_disconnect | text | text - dblink | public | dblink_disconnect | | text - dblink | public | dblink_error_message | text | text - dblink | public | dblink_exec | text, boolean | text - dblink | public | dblink_exec | text | text - dblink | public | dblink_exec | text, text | text - dblink | public | dblink_exec | text, text, boolean | text - dblink | public | dblink_fdw_validator | options text[], catalog oid | void - dblink | public | dblink_fetch | text, text, integer, boolean | SETOF record - dblink | public | dblink_fetch | text, integer | SETOF record - dblink | public | dblink_fetch | text, text, integer | SETOF record - dblink | public | dblink_fetch | text, integer, boolean | SETOF record - dblink | public | dblink_get_connections | | text[] - dblink | public | dblink_get_notify | OUT notify_name text, OUT be_pid integer, OUT extra text | SETOF record - dblink | public | dblink_get_notify | conname text, OUT notify_name text, OUT be_pid integer, OUT extra text | SETOF record - dblink | public | dblink_get_pkey | text | SETOF dblink_pkey_results - dblink | public | dblink_get_result | text, boolean | SETOF record - dblink | public | dblink_get_result | text | SETOF record - dblink | public | dblink_is_busy | text | integer - dblink | public | dblink_open | text, text, text, boolean | text - dblink | public | dblink_open | text, text | text - dblink | public | dblink_open | text, text, boolean | text - dblink | public | dblink_open | text, text, text | text - dblink | public | dblink_send_query | text, text | integer - dict_int | public | dintdict_init | internal | internal - dict_int | public | dintdict_lexize | internal, internal, internal, internal | internal - dict_xsyn | public | dxsyn_init | internal | internal - dict_xsyn | public | dxsyn_lexize | internal, internal, internal, internal | internal - earthdistance | public | earth | | double precision - earthdistance | public | earth_box | earth, double precision | cube - earthdistance | public | earth_distance | earth, earth | double precision - earthdistance | public | gc_to_sec | double precision | double precision - earthdistance | public | geo_distance | point, point | double precision - earthdistance | public | latitude | earth | double precision - earthdistance | public | ll_to_earth | double precision, double precision | earth - earthdistance | public | longitude | earth | double precision - earthdistance | public | sec_to_gc | double precision | double precision - file_fdw | public | file_fdw_handler | | fdw_handler - file_fdw | public | file_fdw_validator | text[], oid | void - fuzzystrmatch | public | difference | text, text | integer - fuzzystrmatch | public | dmetaphone | text | text - fuzzystrmatch | public | dmetaphone_alt | text | text - fuzzystrmatch | public | levenshtein | text, text | integer - fuzzystrmatch | public | levenshtein | text, text, integer, integer, integer | integer - fuzzystrmatch | public | levenshtein_less_equal | text, text, integer, integer, integer, integer | integer - fuzzystrmatch | public | levenshtein_less_equal | text, text, integer | integer - fuzzystrmatch | public | metaphone | text, integer | text - fuzzystrmatch | public | soundex | text | text - fuzzystrmatch | public | text_soundex | text | text - hstore | public | akeys | hstore | text[] - hstore | public | avals | hstore | text[] - hstore | public | defined | hstore, text | boolean - hstore | public | delete | hstore, text | hstore - hstore | public | delete | hstore, text[] | hstore - hstore | public | delete | hstore, hstore | hstore - hstore | public | each | hs hstore, OUT key text, OUT value text | SETOF record - hstore | public | exist | hstore, text | boolean - hstore | public | exists_all | hstore, text[] | boolean - hstore | public | exists_any | hstore, text[] | boolean - hstore | public | fetchval | hstore, text | text - hstore | public | ghstore_compress | internal | internal - hstore | public | ghstore_consistent | internal, hstore, smallint, oid, internal | boolean - hstore | public | ghstore_decompress | internal | internal - hstore | public | ghstore_in | cstring | ghstore - hstore | public | ghstore_options | internal | void - hstore | public | ghstore_out | ghstore | cstring - hstore | public | ghstore_penalty | internal, internal, internal | internal - hstore | public | ghstore_picksplit | internal, internal | internal - hstore | public | ghstore_same | ghstore, ghstore, internal | internal - hstore | public | ghstore_union | internal, internal | ghstore - hstore | public | gin_consistent_hstore | internal, smallint, hstore, integer, internal, internal | boolean - hstore | public | gin_extract_hstore | hstore, internal | internal - hstore | public | gin_extract_hstore_query | hstore, internal, smallint, internal, internal | internal - hstore | public | hs_concat | hstore, hstore | hstore - hstore | public | hs_contained | hstore, hstore | boolean - hstore | public | hs_contains | hstore, hstore | boolean - hstore | public | hstore | text[], text[] | hstore - hstore | public | hstore | text, text | hstore - hstore | public | hstore | text[] | hstore - hstore | public | hstore | record | hstore - hstore | public | hstore_cmp | hstore, hstore | integer - hstore | public | hstore_eq | hstore, hstore | boolean - hstore | public | hstore_ge | hstore, hstore | boolean - hstore | public | hstore_gt | hstore, hstore | boolean - hstore | public | hstore_hash | hstore | integer - hstore | public | hstore_hash_extended | hstore, bigint | bigint - hstore | public | hstore_in | cstring | hstore - hstore | public | hstore_le | hstore, hstore | boolean - hstore | public | hstore_lt | hstore, hstore | boolean - hstore | public | hstore_ne | hstore, hstore | boolean - hstore | public | hstore_out | hstore | cstring - hstore | public | hstore_recv | internal | hstore - hstore | public | hstore_send | hstore | bytea - hstore | public | hstore_subscript_handler | internal | internal - hstore | public | hstore_to_array | hstore | text[] - hstore | public | hstore_to_json | hstore | json - hstore | public | hstore_to_json_loose | hstore | json - hstore | public | hstore_to_jsonb | hstore | jsonb - hstore | public | hstore_to_jsonb_loose | hstore | jsonb - hstore | public | hstore_to_matrix | hstore | text[] - hstore | public | hstore_version_diag | hstore | integer - hstore | public | isdefined | hstore, text | boolean - hstore | public | isexists | hstore, text | boolean - hstore | public | populate_record | anyelement, hstore | anyelement - hstore | public | skeys | hstore | SETOF text - hstore | public | slice | hstore, text[] | hstore - hstore | public | slice_array | hstore, text[] | text[] - hstore | public | svals | hstore | SETOF text - hstore | public | tconvert | text, text | hstore - http | public | bytea_to_text | data bytea | text - http | public | http | request http_request | http_response - http | public | http_delete | uri character varying, content character varying, content_type character varying | http_response - http | public | http_delete | uri character varying | http_response - http | public | http_get | uri character varying, data jsonb | http_response - http | public | http_get | uri character varying | http_response - http | public | http_head | uri character varying | http_response - http | public | http_header | field character varying, value character varying | http_header - http | public | http_list_curlopt | | TABLE(curlopt text, value text) - http | public | http_patch | uri character varying, content character varying, content_type character varying | http_response - http | public | http_post | uri character varying, data jsonb | http_response - http | public | http_post | uri character varying, content character varying, content_type character varying | http_response - http | public | http_put | uri character varying, content character varying, content_type character varying | http_response - http | public | http_reset_curlopt | | boolean - http | public | http_set_curlopt | curlopt character varying, value character varying | boolean - http | public | text_to_bytea | data text | bytea - http | public | urlencode | data jsonb | text - http | public | urlencode | string character varying | text - http | public | urlencode | string bytea | text - hypopg | public | hypopg | OUT indexname text, OUT indexrelid oid, OUT indrelid oid, OUT innatts integer, OUT indisunique boolean, OUT indkey int2vector, OUT indcollation oidvector, OUT indclass oidvector, OUT indoption oidvector, OUT indexprs pg_node_tree, OUT indpred pg_node_tree, OUT amid oid | SETOF record - hypopg | public | hypopg_create_index | sql_order text, OUT indexrelid oid, OUT indexname text | SETOF record - hypopg | public | hypopg_drop_index | indexid oid | boolean - hypopg | public | hypopg_get_indexdef | indexid oid | text - hypopg | public | hypopg_hidden_indexes | | TABLE(indexid oid) - hypopg | public | hypopg_hide_index | indexid oid | boolean - hypopg | public | hypopg_relation_size | indexid oid | bigint - hypopg | public | hypopg_reset | | void - hypopg | public | hypopg_reset_index | | void - hypopg | public | hypopg_unhide_all_indexes | | void - hypopg | public | hypopg_unhide_index | indexid oid | boolean - index_advisor | public | index_advisor | query text | TABLE(startup_cost_before jsonb, startup_cost_after jsonb, total_cost_before jsonb, total_cost_after jsonb, index_statements text[], errors text[]) - insert_username | public | insert_username | | trigger - intagg | public | int_agg_final_array | internal | integer[] - intagg | public | int_agg_state | internal, integer | internal - intagg | public | int_array_aggregate | integer | integer[] - intagg | public | int_array_enum | integer[] | SETOF integer - intarray | public | _int_contained | integer[], integer[] | boolean - intarray | public | _int_contained_joinsel | internal, oid, internal, smallint, internal | double precision - intarray | public | _int_contained_sel | internal, oid, internal, integer | double precision - intarray | public | _int_contains | integer[], integer[] | boolean - intarray | public | _int_contains_joinsel | internal, oid, internal, smallint, internal | double precision - intarray | public | _int_contains_sel | internal, oid, internal, integer | double precision - intarray | public | _int_different | integer[], integer[] | boolean - intarray | public | _int_inter | integer[], integer[] | integer[] - intarray | public | _int_matchsel | internal, oid, internal, integer | double precision - intarray | public | _int_overlap | integer[], integer[] | boolean - intarray | public | _int_overlap_joinsel | internal, oid, internal, smallint, internal | double precision - intarray | public | _int_overlap_sel | internal, oid, internal, integer | double precision - intarray | public | _int_same | integer[], integer[] | boolean - intarray | public | _int_union | integer[], integer[] | integer[] - intarray | public | _intbig_in | cstring | intbig_gkey - intarray | public | _intbig_out | intbig_gkey | cstring - intarray | public | boolop | integer[], query_int | boolean - intarray | public | bqarr_in | cstring | query_int - intarray | public | bqarr_out | query_int | cstring - intarray | public | g_int_compress | internal | internal - intarray | public | g_int_consistent | internal, integer[], smallint, oid, internal | boolean - intarray | public | g_int_decompress | internal | internal - intarray | public | g_int_options | internal | void - intarray | public | g_int_penalty | internal, internal, internal | internal - intarray | public | g_int_picksplit | internal, internal | internal - intarray | public | g_int_same | integer[], integer[], internal | internal - intarray | public | g_int_union | internal, internal | integer[] - intarray | public | g_intbig_compress | internal | internal - intarray | public | g_intbig_consistent | internal, integer[], smallint, oid, internal | boolean - intarray | public | g_intbig_decompress | internal | internal - intarray | public | g_intbig_options | internal | void - intarray | public | g_intbig_penalty | internal, internal, internal | internal - intarray | public | g_intbig_picksplit | internal, internal | internal - intarray | public | g_intbig_same | intbig_gkey, intbig_gkey, internal | internal - intarray | public | g_intbig_union | internal, internal | intbig_gkey - intarray | public | ginint4_consistent | internal, smallint, integer[], integer, internal, internal, internal, internal | boolean - intarray | public | ginint4_queryextract | integer[], internal, smallint, internal, internal, internal, internal | internal - intarray | public | icount | integer[] | integer - intarray | public | idx | integer[], integer | integer - intarray | public | intarray_del_elem | integer[], integer | integer[] - intarray | public | intarray_push_array | integer[], integer[] | integer[] - intarray | public | intarray_push_elem | integer[], integer | integer[] - intarray | public | intset | integer | integer[] - intarray | public | intset_subtract | integer[], integer[] | integer[] - intarray | public | intset_union_elem | integer[], integer | integer[] - intarray | public | querytree | query_int | text - intarray | public | rboolop | query_int, integer[] | boolean - intarray | public | sort | integer[] | integer[] - intarray | public | sort | integer[], text | integer[] - intarray | public | sort_asc | integer[] | integer[] - intarray | public | sort_desc | integer[] | integer[] - intarray | public | subarray | integer[], integer | integer[] - intarray | public | subarray | integer[], integer, integer | integer[] - intarray | public | uniq | integer[] | integer[] - isn | public | btean13cmp | ean13, ean13 | integer - isn | public | btean13cmp | ean13, issn | integer - isn | public | btean13cmp | ean13, upc | integer - isn | public | btean13cmp | ean13, issn13 | integer - isn | public | btean13cmp | ean13, ismn | integer - isn | public | btean13cmp | ean13, ismn13 | integer - isn | public | btean13cmp | ean13, isbn13 | integer - isn | public | btean13cmp | ean13, isbn | integer - isn | public | btisbn13cmp | isbn13, isbn13 | integer - isn | public | btisbn13cmp | isbn13, ean13 | integer - isn | public | btisbn13cmp | isbn13, isbn | integer - isn | public | btisbncmp | isbn, ean13 | integer - isn | public | btisbncmp | isbn, isbn | integer - isn | public | btisbncmp | isbn, isbn13 | integer - isn | public | btismn13cmp | ismn13, ismn13 | integer - isn | public | btismn13cmp | ismn13, ean13 | integer - isn | public | btismn13cmp | ismn13, ismn | integer - isn | public | btismncmp | ismn, ismn | integer - isn | public | btismncmp | ismn, ean13 | integer - isn | public | btismncmp | ismn, ismn13 | integer - isn | public | btissn13cmp | issn13, issn13 | integer - isn | public | btissn13cmp | issn13, ean13 | integer - isn | public | btissn13cmp | issn13, issn | integer - isn | public | btissncmp | issn, ean13 | integer - isn | public | btissncmp | issn, issn13 | integer - isn | public | btissncmp | issn, issn | integer - isn | public | btupccmp | upc, upc | integer - isn | public | btupccmp | upc, ean13 | integer - isn | public | ean13_in | cstring | ean13 - isn | public | ean13_out | isbn13 | cstring - isn | public | ean13_out | ismn13 | cstring - isn | public | ean13_out | ean13 | cstring - isn | public | ean13_out | issn13 | cstring - isn | public | hashean13 | ean13 | integer - isn | public | hashisbn | isbn | integer - isn | public | hashisbn13 | isbn13 | integer - isn | public | hashismn | ismn | integer - isn | public | hashismn13 | ismn13 | integer - isn | public | hashissn | issn | integer - isn | public | hashissn13 | issn13 | integer - isn | public | hashupc | upc | integer - isn | public | is_valid | isbn13 | boolean - isn | public | is_valid | upc | boolean - isn | public | is_valid | ismn | boolean - isn | public | is_valid | issn | boolean - isn | public | is_valid | isbn | boolean - isn | public | is_valid | ismn13 | boolean - isn | public | is_valid | ean13 | boolean - isn | public | is_valid | issn13 | boolean - isn | public | isbn | ean13 | isbn - isn | public | isbn13 | ean13 | isbn13 - isn | public | isbn13_in | cstring | isbn13 - isn | public | isbn_in | cstring | isbn - isn | public | ismn | ean13 | ismn - isn | public | ismn13 | ean13 | ismn13 - isn | public | ismn13_in | cstring | ismn13 - isn | public | ismn_in | cstring | ismn - isn | public | isn_out | upc | cstring - isn | public | isn_out | ismn | cstring - isn | public | isn_out | issn | cstring - isn | public | isn_out | isbn | cstring - isn | public | isn_weak | boolean | boolean - isn | public | isn_weak | | boolean - isn | public | isneq | ismn, ismn | boolean - isn | public | isneq | ean13, ean13 | boolean - isn | public | isneq | isbn, ean13 | boolean - isn | public | isneq | issn, ean13 | boolean - isn | public | isneq | isbn13, isbn13 | boolean - isn | public | isneq | ean13, issn | boolean - isn | public | isneq | isbn, isbn | boolean - isn | public | isneq | ean13, upc | boolean - isn | public | isneq | ean13, issn13 | boolean - isn | public | isneq | ean13, ismn | boolean - isn | public | isneq | upc, upc | boolean - isn | public | isneq | issn13, issn13 | boolean - isn | public | isneq | upc, ean13 | boolean - isn | public | isneq | ismn13, ismn13 | boolean - isn | public | isneq | issn13, ean13 | boolean - isn | public | isneq | ean13, ismn13 | boolean - isn | public | isneq | ismn13, ean13 | boolean - isn | public | isneq | issn13, issn | boolean - isn | public | isneq | ismn, ean13 | boolean - isn | public | isneq | ismn13, ismn | boolean - isn | public | isneq | ean13, isbn13 | boolean - isn | public | isneq | isbn13, ean13 | boolean - isn | public | isneq | isbn13, isbn | boolean - isn | public | isneq | isbn, isbn13 | boolean - isn | public | isneq | ismn, ismn13 | boolean - isn | public | isneq | ean13, isbn | boolean - isn | public | isneq | issn, issn13 | boolean - isn | public | isneq | issn, issn | boolean - isn | public | isnge | ismn, ismn | boolean - isn | public | isnge | ean13, ean13 | boolean - isn | public | isnge | isbn, ean13 | boolean - isn | public | isnge | issn, ean13 | boolean - isn | public | isnge | isbn13, isbn13 | boolean - isn | public | isnge | ean13, issn | boolean - isn | public | isnge | isbn, isbn | boolean - isn | public | isnge | ean13, upc | boolean - isn | public | isnge | ean13, issn13 | boolean - isn | public | isnge | ean13, ismn | boolean - isn | public | isnge | upc, upc | boolean - isn | public | isnge | issn13, issn13 | boolean - isn | public | isnge | upc, ean13 | boolean - isn | public | isnge | ismn13, ismn13 | boolean - isn | public | isnge | issn13, ean13 | boolean - isn | public | isnge | ean13, ismn13 | boolean - isn | public | isnge | ismn13, ean13 | boolean - isn | public | isnge | issn13, issn | boolean - isn | public | isnge | ismn, ean13 | boolean - isn | public | isnge | ismn13, ismn | boolean - isn | public | isnge | ean13, isbn13 | boolean - isn | public | isnge | isbn13, ean13 | boolean - isn | public | isnge | isbn13, isbn | boolean - isn | public | isnge | isbn, isbn13 | boolean - isn | public | isnge | ismn, ismn13 | boolean - isn | public | isnge | ean13, isbn | boolean - isn | public | isnge | issn, issn13 | boolean - isn | public | isnge | issn, issn | boolean - isn | public | isngt | ismn, ismn | boolean - isn | public | isngt | ean13, ean13 | boolean - isn | public | isngt | isbn, ean13 | boolean - isn | public | isngt | issn, ean13 | boolean - isn | public | isngt | isbn13, isbn13 | boolean - isn | public | isngt | ean13, issn | boolean - isn | public | isngt | isbn, isbn | boolean - isn | public | isngt | ean13, upc | boolean - isn | public | isngt | ean13, issn13 | boolean - isn | public | isngt | ean13, ismn | boolean - isn | public | isngt | upc, upc | boolean - isn | public | isngt | issn13, issn13 | boolean - isn | public | isngt | upc, ean13 | boolean - isn | public | isngt | ismn13, ismn13 | boolean - isn | public | isngt | issn13, ean13 | boolean - isn | public | isngt | ean13, ismn13 | boolean - isn | public | isngt | ismn13, ean13 | boolean - isn | public | isngt | issn13, issn | boolean - isn | public | isngt | ismn, ean13 | boolean - isn | public | isngt | ismn13, ismn | boolean - isn | public | isngt | ean13, isbn13 | boolean - isn | public | isngt | isbn13, ean13 | boolean - isn | public | isngt | isbn13, isbn | boolean - isn | public | isngt | isbn, isbn13 | boolean - isn | public | isngt | ismn, ismn13 | boolean - isn | public | isngt | ean13, isbn | boolean - isn | public | isngt | issn, issn13 | boolean - isn | public | isngt | issn, issn | boolean - isn | public | isnle | ismn, ismn | boolean - isn | public | isnle | ean13, ean13 | boolean - isn | public | isnle | isbn, ean13 | boolean - isn | public | isnle | issn, ean13 | boolean - isn | public | isnle | isbn13, isbn13 | boolean - isn | public | isnle | ean13, issn | boolean - isn | public | isnle | isbn, isbn | boolean - isn | public | isnle | ean13, upc | boolean - isn | public | isnle | ean13, issn13 | boolean - isn | public | isnle | ean13, ismn | boolean - isn | public | isnle | upc, upc | boolean - isn | public | isnle | issn13, issn13 | boolean - isn | public | isnle | upc, ean13 | boolean - isn | public | isnle | ismn13, ismn13 | boolean - isn | public | isnle | issn13, ean13 | boolean - isn | public | isnle | ean13, ismn13 | boolean - isn | public | isnle | ismn13, ean13 | boolean - isn | public | isnle | issn13, issn | boolean - isn | public | isnle | ismn, ean13 | boolean - isn | public | isnle | ismn13, ismn | boolean - isn | public | isnle | ean13, isbn13 | boolean - isn | public | isnle | isbn13, ean13 | boolean - isn | public | isnle | isbn13, isbn | boolean - isn | public | isnle | isbn, isbn13 | boolean - isn | public | isnle | ismn, ismn13 | boolean - isn | public | isnle | ean13, isbn | boolean - isn | public | isnle | issn, issn13 | boolean - isn | public | isnle | issn, issn | boolean - isn | public | isnlt | ismn, ismn | boolean - isn | public | isnlt | ean13, ean13 | boolean - isn | public | isnlt | isbn, ean13 | boolean - isn | public | isnlt | issn, ean13 | boolean - isn | public | isnlt | isbn13, isbn13 | boolean - isn | public | isnlt | ean13, issn | boolean - isn | public | isnlt | isbn, isbn | boolean - isn | public | isnlt | ean13, upc | boolean - isn | public | isnlt | ean13, issn13 | boolean - isn | public | isnlt | ean13, ismn | boolean - isn | public | isnlt | upc, upc | boolean - isn | public | isnlt | issn13, issn13 | boolean - isn | public | isnlt | upc, ean13 | boolean - isn | public | isnlt | ismn13, ismn13 | boolean - isn | public | isnlt | issn13, ean13 | boolean - isn | public | isnlt | ean13, ismn13 | boolean - isn | public | isnlt | ismn13, ean13 | boolean - isn | public | isnlt | issn13, issn | boolean - isn | public | isnlt | ismn, ean13 | boolean - isn | public | isnlt | ismn13, ismn | boolean - isn | public | isnlt | ean13, isbn13 | boolean - isn | public | isnlt | isbn13, ean13 | boolean - isn | public | isnlt | isbn13, isbn | boolean - isn | public | isnlt | isbn, isbn13 | boolean - isn | public | isnlt | ismn, ismn13 | boolean - isn | public | isnlt | ean13, isbn | boolean - isn | public | isnlt | issn, issn13 | boolean - isn | public | isnlt | issn, issn | boolean - isn | public | isnne | ismn, ismn | boolean - isn | public | isnne | ean13, ean13 | boolean - isn | public | isnne | isbn, ean13 | boolean - isn | public | isnne | issn, ean13 | boolean - isn | public | isnne | isbn13, isbn13 | boolean - isn | public | isnne | ean13, issn | boolean - isn | public | isnne | isbn, isbn | boolean - isn | public | isnne | ean13, upc | boolean - isn | public | isnne | ean13, issn13 | boolean - isn | public | isnne | ean13, ismn | boolean - isn | public | isnne | upc, upc | boolean - isn | public | isnne | issn13, issn13 | boolean - isn | public | isnne | upc, ean13 | boolean - isn | public | isnne | ismn13, ismn13 | boolean - isn | public | isnne | issn13, ean13 | boolean - isn | public | isnne | ean13, ismn13 | boolean - isn | public | isnne | ismn13, ean13 | boolean - isn | public | isnne | issn13, issn | boolean - isn | public | isnne | ismn, ean13 | boolean - isn | public | isnne | ismn13, ismn | boolean - isn | public | isnne | ean13, isbn13 | boolean - isn | public | isnne | isbn13, ean13 | boolean - isn | public | isnne | isbn13, isbn | boolean - isn | public | isnne | isbn, isbn13 | boolean - isn | public | isnne | ismn, ismn13 | boolean - isn | public | isnne | ean13, isbn | boolean - isn | public | isnne | issn, issn13 | boolean - isn | public | isnne | issn, issn | boolean - isn | public | issn | ean13 | issn - isn | public | issn13 | ean13 | issn13 - isn | public | issn13_in | cstring | issn13 - isn | public | issn_in | cstring | issn - isn | public | make_valid | isbn13 | isbn13 - isn | public | make_valid | upc | upc - isn | public | make_valid | ismn | ismn - isn | public | make_valid | issn | issn - isn | public | make_valid | isbn | isbn - isn | public | make_valid | ismn13 | ismn13 - isn | public | make_valid | ean13 | ean13 - isn | public | make_valid | issn13 | issn13 - isn | public | upc | ean13 | upc - isn | public | upc_in | cstring | upc - lo | public | lo_manage | | trigger - lo | public | lo_oid | lo | oid - ltree | public | _lt_q_regex | ltree[], lquery[] | boolean - ltree | public | _lt_q_rregex | lquery[], ltree[] | boolean - ltree | public | _ltq_extract_regex | ltree[], lquery | ltree - ltree | public | _ltq_regex | ltree[], lquery | boolean - ltree | public | _ltq_rregex | lquery, ltree[] | boolean - ltree | public | _ltree_compress | internal | internal - ltree | public | _ltree_consistent | internal, ltree[], smallint, oid, internal | boolean - ltree | public | _ltree_extract_isparent | ltree[], ltree | ltree - ltree | public | _ltree_extract_risparent | ltree[], ltree | ltree - ltree | public | _ltree_gist_options | internal | void - ltree | public | _ltree_isparent | ltree[], ltree | boolean - ltree | public | _ltree_penalty | internal, internal, internal | internal - ltree | public | _ltree_picksplit | internal, internal | internal - ltree | public | _ltree_r_isparent | ltree, ltree[] | boolean - ltree | public | _ltree_r_risparent | ltree, ltree[] | boolean - ltree | public | _ltree_risparent | ltree[], ltree | boolean - ltree | public | _ltree_same | ltree_gist, ltree_gist, internal | internal - ltree | public | _ltree_union | internal, internal | ltree_gist - ltree | public | _ltxtq_exec | ltree[], ltxtquery | boolean - ltree | public | _ltxtq_extract_exec | ltree[], ltxtquery | ltree - ltree | public | _ltxtq_rexec | ltxtquery, ltree[] | boolean - ltree | public | index | ltree, ltree | integer - ltree | public | index | ltree, ltree, integer | integer - ltree | public | lca | ltree, ltree, ltree, ltree, ltree, ltree | ltree - ltree | public | lca | ltree, ltree | ltree - ltree | public | lca | ltree, ltree, ltree | ltree - ltree | public | lca | ltree, ltree, ltree, ltree, ltree, ltree, ltree, ltree | ltree - ltree | public | lca | ltree, ltree, ltree, ltree, ltree | ltree - ltree | public | lca | ltree[] | ltree - ltree | public | lca | ltree, ltree, ltree, ltree, ltree, ltree, ltree | ltree - ltree | public | lca | ltree, ltree, ltree, ltree | ltree - ltree | public | lquery_in | cstring | lquery - ltree | public | lquery_out | lquery | cstring - ltree | public | lquery_recv | internal | lquery - ltree | public | lquery_send | lquery | bytea - ltree | public | lt_q_regex | ltree, lquery[] | boolean - ltree | public | lt_q_rregex | lquery[], ltree | boolean - ltree | public | ltq_regex | ltree, lquery | boolean - ltree | public | ltq_rregex | lquery, ltree | boolean - ltree | public | ltree2text | ltree | text - ltree | public | ltree_addltree | ltree, ltree | ltree - ltree | public | ltree_addtext | ltree, text | ltree - ltree | public | ltree_cmp | ltree, ltree | integer - ltree | public | ltree_compress | internal | internal - ltree | public | ltree_consistent | internal, ltree, smallint, oid, internal | boolean - ltree | public | ltree_decompress | internal | internal - ltree | public | ltree_eq | ltree, ltree | boolean - ltree | public | ltree_ge | ltree, ltree | boolean - ltree | public | ltree_gist_in | cstring | ltree_gist - ltree | public | ltree_gist_options | internal | void - ltree | public | ltree_gist_out | ltree_gist | cstring - ltree | public | ltree_gt | ltree, ltree | boolean - ltree | public | ltree_in | cstring | ltree - ltree | public | ltree_isparent | ltree, ltree | boolean - ltree | public | ltree_le | ltree, ltree | boolean - ltree | public | ltree_lt | ltree, ltree | boolean - ltree | public | ltree_ne | ltree, ltree | boolean - ltree | public | ltree_out | ltree | cstring - ltree | public | ltree_penalty | internal, internal, internal | internal - ltree | public | ltree_picksplit | internal, internal | internal - ltree | public | ltree_recv | internal | ltree - ltree | public | ltree_risparent | ltree, ltree | boolean - ltree | public | ltree_same | ltree_gist, ltree_gist, internal | internal - ltree | public | ltree_send | ltree | bytea - ltree | public | ltree_textadd | text, ltree | ltree - ltree | public | ltree_union | internal, internal | ltree_gist - ltree | public | ltreeparentsel | internal, oid, internal, integer | double precision - ltree | public | ltxtq_exec | ltree, ltxtquery | boolean - ltree | public | ltxtq_in | cstring | ltxtquery - ltree | public | ltxtq_out | ltxtquery | cstring - ltree | public | ltxtq_recv | internal | ltxtquery - ltree | public | ltxtq_rexec | ltxtquery, ltree | boolean - ltree | public | ltxtq_send | ltxtquery | bytea - ltree | public | nlevel | ltree | integer - ltree | public | subltree | ltree, integer, integer | ltree - ltree | public | subpath | ltree, integer | ltree - ltree | public | subpath | ltree, integer, integer | ltree - ltree | public | text2ltree | text | ltree - moddatetime | public | moddatetime | | trigger - old_snapshot | public | pg_old_snapshot_time_mapping | OUT array_offset integer, OUT end_timestamp timestamp with time zone, OUT newest_xmin xid | SETOF record - pageinspect | public | brin_metapage_info | page bytea, OUT magic text, OUT version integer, OUT pagesperrange integer, OUT lastrevmappage bigint | record - pageinspect | public | brin_page_type | page bytea | text - pageinspect | public | brin_revmap_data | page bytea, OUT pages tid | SETOF tid - pageinspect | public | bt_metap | relname text, OUT magic integer, OUT version integer, OUT root bigint, OUT level bigint, OUT fastroot bigint, OUT fastlevel bigint, OUT last_cleanup_num_delpages bigint, OUT last_cleanup_num_tuples double precision, OUT allequalimage boolean | record - pageinspect | public | bt_page_items | page bytea, OUT itemoffset smallint, OUT ctid tid, OUT itemlen smallint, OUT nulls boolean, OUT vars boolean, OUT data text, OUT dead boolean, OUT htid tid, OUT tids tid[] | SETOF record - pageinspect | public | bt_page_items | relname text, blkno bigint, OUT itemoffset smallint, OUT ctid tid, OUT itemlen smallint, OUT nulls boolean, OUT vars boolean, OUT data text, OUT dead boolean, OUT htid tid, OUT tids tid[] | SETOF record - pageinspect | public | bt_page_stats | relname text, blkno bigint, OUT blkno bigint, OUT type "char", OUT live_items integer, OUT dead_items integer, OUT avg_item_size integer, OUT page_size integer, OUT free_size integer, OUT btpo_prev bigint, OUT btpo_next bigint, OUT btpo_level bigint, OUT btpo_flags integer | record - pageinspect | public | fsm_page_contents | page bytea | text - pageinspect | public | get_raw_page | text, bigint | bytea - pageinspect | public | get_raw_page | text, text, bigint | bytea - pageinspect | public | gin_leafpage_items | page bytea, OUT first_tid tid, OUT nbytes smallint, OUT tids tid[] | SETOF record - pageinspect | public | gin_metapage_info | page bytea, OUT pending_head bigint, OUT pending_tail bigint, OUT tail_free_size integer, OUT n_pending_pages bigint, OUT n_pending_tuples bigint, OUT n_total_pages bigint, OUT n_entry_pages bigint, OUT n_data_pages bigint, OUT n_entries bigint, OUT version integer | record - pageinspect | public | gin_page_opaque_info | page bytea, OUT rightlink bigint, OUT maxoff integer, OUT flags text[] | record - pageinspect | public | gist_page_items | page bytea, index_oid regclass, OUT itemoffset smallint, OUT ctid tid, OUT itemlen smallint, OUT dead boolean, OUT keys text | SETOF record - pageinspect | public | gist_page_items_bytea | page bytea, OUT itemoffset smallint, OUT ctid tid, OUT itemlen smallint, OUT dead boolean, OUT key_data bytea | SETOF record - pageinspect | public | gist_page_opaque_info | page bytea, OUT lsn pg_lsn, OUT nsn pg_lsn, OUT rightlink bigint, OUT flags text[] | record - pageinspect | public | hash_bitmap_info | index_oid regclass, blkno bigint, OUT bitmapblkno bigint, OUT bitmapbit integer, OUT bitstatus boolean | SETOF record - pageinspect | public | hash_metapage_info | page bytea, OUT magic bigint, OUT version bigint, OUT ntuples double precision, OUT ffactor integer, OUT bsize integer, OUT bmsize integer, OUT bmshift integer, OUT maxbucket bigint, OUT highmask bigint, OUT lowmask bigint, OUT ovflpoint bigint, OUT firstfree bigint, OUT nmaps bigint, OUT procid oid, OUT spares bigint[], OUT mapp bigint[] | record - pageinspect | public | hash_page_items | page bytea, OUT itemoffset integer, OUT ctid tid, OUT data bigint | SETOF record - pageinspect | public | hash_page_stats | page bytea, OUT live_items integer, OUT dead_items integer, OUT page_size integer, OUT free_size integer, OUT hasho_prevblkno bigint, OUT hasho_nextblkno bigint, OUT hasho_bucket bigint, OUT hasho_flag integer, OUT hasho_page_id integer | record - pageinspect | public | hash_page_type | page bytea | text - pageinspect | public | heap_page_item_attrs | page bytea, rel_oid regclass, OUT lp smallint, OUT lp_off smallint, OUT lp_flags smallint, OUT lp_len smallint, OUT t_xmin xid, OUT t_xmax xid, OUT t_field3 integer, OUT t_ctid tid, OUT t_infomask2 integer, OUT t_infomask integer, OUT t_hoff smallint, OUT t_bits text, OUT t_oid oid, OUT t_attrs bytea[] | SETOF record - pageinspect | public | heap_page_item_attrs | page bytea, rel_oid regclass, do_detoast boolean, OUT lp smallint, OUT lp_off smallint, OUT lp_flags smallint, OUT lp_len smallint, OUT t_xmin xid, OUT t_xmax xid, OUT t_field3 integer, OUT t_ctid tid, OUT t_infomask2 integer, OUT t_infomask integer, OUT t_hoff smallint, OUT t_bits text, OUT t_oid oid, OUT t_attrs bytea[] | SETOF record - pageinspect | public | heap_page_items | page bytea, OUT lp smallint, OUT lp_off smallint, OUT lp_flags smallint, OUT lp_len smallint, OUT t_xmin xid, OUT t_xmax xid, OUT t_field3 integer, OUT t_ctid tid, OUT t_infomask2 integer, OUT t_infomask integer, OUT t_hoff smallint, OUT t_bits text, OUT t_oid oid, OUT t_data bytea | SETOF record - pageinspect | public | heap_tuple_infomask_flags | t_infomask integer, t_infomask2 integer, OUT raw_flags text[], OUT combined_flags text[] | record - pageinspect | public | page_checksum | page bytea, blkno bigint | smallint - pageinspect | public | page_header | page bytea, OUT lsn pg_lsn, OUT checksum smallint, OUT flags smallint, OUT lower integer, OUT upper integer, OUT special integer, OUT pagesize integer, OUT version smallint, OUT prune_xid xid | record - pageinspect | public | tuple_data_split | rel_oid oid, t_data bytea, t_infomask integer, t_infomask2 integer, t_bits text | bytea[] - pageinspect | public | tuple_data_split | rel_oid oid, t_data bytea, t_infomask integer, t_infomask2 integer, t_bits text, do_detoast boolean | bytea[] - pg_buffercache | public | pg_buffercache_pages | | SETOF record - pg_freespacemap | public | pg_freespace | rel regclass, OUT blkno bigint, OUT avail smallint | SETOF record - pg_freespacemap | public | pg_freespace | regclass, bigint | smallint - pg_graphql | graphql | _internal_resolve | query text, variables jsonb, "operationName" text, extensions jsonb | jsonb - pg_graphql | graphql | comment_directive | comment_ text | jsonb - pg_graphql | graphql | exception | message text | text - pg_graphql | graphql | get_schema_version | | integer - pg_graphql | graphql | increment_schema_version | | event_trigger - pg_graphql | graphql | resolve | query text, variables jsonb, "operationName" text, extensions jsonb | jsonb - pg_graphql | graphql_public | graphql | "operationName" text, query text, variables jsonb, extensions jsonb | jsonb - pg_hashids | public | hash_decode | text, text, integer | integer - pg_hashids | public | hash_encode | bigint | text - pg_hashids | public | hash_encode | bigint, text | text - pg_hashids | public | hash_encode | bigint, text, integer | text - pg_hashids | public | id_decode | text | bigint[] - pg_hashids | public | id_decode | text, text | bigint[] - pg_hashids | public | id_decode | text, text, integer, text | bigint[] - pg_hashids | public | id_decode | text, text, integer | bigint[] - pg_hashids | public | id_decode_once | text | bigint - pg_hashids | public | id_decode_once | text, text | bigint - pg_hashids | public | id_decode_once | text, text, integer, text | bigint - pg_hashids | public | id_decode_once | text, text, integer | bigint - pg_hashids | public | id_encode | bigint | text - pg_hashids | public | id_encode | bigint[] | text - pg_hashids | public | id_encode | bigint[], text | text - pg_hashids | public | id_encode | bigint[], text, integer | text - pg_hashids | public | id_encode | bigint, text | text - pg_hashids | public | id_encode | bigint, text, integer | text - pg_hashids | public | id_encode | bigint, text, integer, text | text - pg_hashids | public | id_encode | bigint[], text, integer, text | text - pg_jsonschema | public | json_matches_schema | schema json, instance json | boolean - pg_jsonschema | public | jsonb_matches_schema | schema json, instance jsonb | boolean - pg_jsonschema | public | jsonschema_is_valid | schema json | boolean - pg_jsonschema | public | jsonschema_validation_errors | schema json, instance json | text[] - pg_net | net | _await_response | request_id bigint | boolean - pg_net | net | _encode_url_with_params_array | url text, params_array text[] | text - pg_net | net | _http_collect_response | request_id bigint, async boolean | net.http_response_result - pg_net | net | _urlencode_string | string character varying | text - pg_net | net | check_worker_is_up | | void - pg_net | net | http_collect_response | request_id bigint, async boolean | net.http_response_result - pg_net | net | http_delete | url text, params jsonb, headers jsonb, timeout_milliseconds integer, body jsonb | bigint - pg_net | net | http_get | url text, params jsonb, headers jsonb, timeout_milliseconds integer | bigint - pg_net | net | http_post | url text, body jsonb, params jsonb, headers jsonb, timeout_milliseconds integer | bigint - pg_net | net | wait_until_running | | void - pg_net | net | wake | | void - pg_net | net | worker_restart | | boolean - pg_prewarm | public | autoprewarm_dump_now | | bigint - pg_prewarm | public | autoprewarm_start_worker | | void - pg_prewarm | public | pg_prewarm | regclass, mode text, fork text, first_block bigint, last_block bigint | bigint - pg_repack | repack | conflicted_triggers | oid | SETOF name - pg_repack | repack | create_index_type | oid, oid | void - pg_repack | repack | create_log_table | oid | void - pg_repack | repack | create_table | oid, name | void - pg_repack | repack | disable_autovacuum | regclass | void - pg_repack | repack | get_alter_col_storage | oid | text - pg_repack | repack | get_assign | oid, text | text - pg_repack | repack | get_columns_for_create_as | oid | text - pg_repack | repack | get_compare_pkey | oid, text | text - pg_repack | repack | get_create_index_type | oid, name | text - pg_repack | repack | get_create_trigger | relid oid, pkid oid | text - pg_repack | repack | get_drop_columns | oid, text | text - pg_repack | repack | get_enable_trigger | relid oid | text - pg_repack | repack | get_index_columns | oid | text - pg_repack | repack | get_order_by | oid, oid | text - pg_repack | repack | get_storage_param | oid | text - pg_repack | repack | get_table_and_inheritors | regclass | regclass[] - pg_repack | repack | oid2text | oid | text - pg_repack | repack | repack_apply | sql_peek cstring, sql_insert cstring, sql_delete cstring, sql_update cstring, sql_pop cstring, count integer | integer - pg_repack | repack | repack_drop | oid, integer | void - pg_repack | repack | repack_index_swap | oid | void - pg_repack | repack | repack_indexdef | oid, oid, name, boolean | text - pg_repack | repack | repack_swap | oid | void - pg_repack | repack | repack_trigger | | trigger - pg_repack | repack | version | | text - pg_repack | repack | version_sql | | text - pg_stat_monitor | public | decode_error_level | elevel integer | text - pg_stat_monitor | public | get_cmd_type | cmd_type integer | text - pg_stat_monitor | public | get_histogram_timings | | text - pg_stat_monitor | public | histogram | _bucket integer, _quryid bigint | SETOF record - pg_stat_monitor | public | pg_stat_monitor_internal | showtext boolean, OUT bucket bigint, OUT userid oid, OUT username text, OUT dbid oid, OUT datname text, OUT client_ip bigint, OUT queryid bigint, OUT planid bigint, OUT query text, OUT query_plan text, OUT pgsm_query_id bigint, OUT top_queryid bigint, OUT top_query text, OUT application_name text, OUT relations text, OUT cmd_type integer, OUT elevel integer, OUT sqlcode text, OUT message text, OUT bucket_start_time timestamp with time zone, OUT calls bigint, OUT total_exec_time double precision, OUT min_exec_time double precision, OUT max_exec_time double precision, OUT mean_exec_time double precision, OUT stddev_exec_time double precision, OUT rows bigint, OUT plans bigint, OUT total_plan_time double precision, OUT min_plan_time double precision, OUT max_plan_time double precision, OUT mean_plan_time double precision, OUT stddev_plan_time double precision, OUT shared_blks_hit bigint, OUT shared_blks_read bigint, OUT shared_blks_dirtied bigint, OUT shared_blks_written bigint, OUT local_blks_hit bigint, OUT local_blks_read bigint, OUT local_blks_dirtied bigint, OUT local_blks_written bigint, OUT temp_blks_read bigint, OUT temp_blks_written bigint, OUT shared_blk_read_time double precision, OUT shared_blk_write_time double precision, OUT local_blk_read_time double precision, OUT local_blk_write_time double precision, OUT temp_blk_read_time double precision, OUT temp_blk_write_time double precision, OUT resp_calls text, OUT cpu_user_time double precision, OUT cpu_sys_time double precision, OUT wal_records bigint, OUT wal_fpi bigint, OUT wal_bytes numeric, OUT comments text, OUT jit_functions bigint, OUT jit_generation_time double precision, OUT jit_inlining_count bigint, OUT jit_inlining_time double precision, OUT jit_optimization_count bigint, OUT jit_optimization_time double precision, OUT jit_emission_count bigint, OUT jit_emission_time double precision, OUT jit_deform_count bigint, OUT jit_deform_time double precision, OUT stats_since timestamp with time zone, OUT minmax_stats_since timestamp with time zone, OUT toplevel boolean, OUT bucket_done boolean | SETOF record - pg_stat_monitor | public | pg_stat_monitor_reset | | void - pg_stat_monitor | public | pg_stat_monitor_version | | text - pg_stat_monitor | public | pgsm_create_11_view | | integer - pg_stat_monitor | public | pgsm_create_13_view | | integer - pg_stat_monitor | public | pgsm_create_14_view | | integer - pg_stat_monitor | public | pgsm_create_15_view | | integer - pg_stat_monitor | public | pgsm_create_17_view | | integer - pg_stat_monitor | public | pgsm_create_view | | integer - pg_stat_monitor | public | range | | text[] - pg_stat_statements | extensions | pg_stat_statements | showtext boolean, OUT userid oid, OUT dbid oid, OUT toplevel boolean, OUT queryid bigint, OUT query text, OUT plans bigint, OUT total_plan_time double precision, OUT min_plan_time double precision, OUT max_plan_time double precision, OUT mean_plan_time double precision, OUT stddev_plan_time double precision, OUT calls bigint, OUT total_exec_time double precision, OUT min_exec_time double precision, OUT max_exec_time double precision, OUT mean_exec_time double precision, OUT stddev_exec_time double precision, OUT rows bigint, OUT shared_blks_hit bigint, OUT shared_blks_read bigint, OUT shared_blks_dirtied bigint, OUT shared_blks_written bigint, OUT local_blks_hit bigint, OUT local_blks_read bigint, OUT local_blks_dirtied bigint, OUT local_blks_written bigint, OUT temp_blks_read bigint, OUT temp_blks_written bigint, OUT blk_read_time double precision, OUT blk_write_time double precision, OUT temp_blk_read_time double precision, OUT temp_blk_write_time double precision, OUT wal_records bigint, OUT wal_fpi bigint, OUT wal_bytes numeric, OUT jit_functions bigint, OUT jit_generation_time double precision, OUT jit_inlining_count bigint, OUT jit_inlining_time double precision, OUT jit_optimization_count bigint, OUT jit_optimization_time double precision, OUT jit_emission_count bigint, OUT jit_emission_time double precision | SETOF record - pg_stat_statements | extensions | pg_stat_statements_info | OUT dealloc bigint, OUT stats_reset timestamp with time zone | record - pg_stat_statements | extensions | pg_stat_statements_reset | userid oid, dbid oid, queryid bigint | void - pg_surgery | public | heap_force_freeze | reloid regclass, tids tid[] | void - pg_surgery | public | heap_force_kill | reloid regclass, tids tid[] | void - pg_tle | pgtle | available_extension_versions | OUT name name, OUT version text, OUT superuser boolean, OUT trusted boolean, OUT relocatable boolean, OUT schema name, OUT requires name[], OUT comment text | SETOF record - pg_tle | pgtle | available_extensions | OUT name name, OUT default_version text, OUT comment text | SETOF record - pg_tle | pgtle | create_base_type | typenamespace regnamespace, typename name, infunc regprocedure, outfunc regprocedure, internallength integer, alignment text, storage text | void - pg_tle | pgtle | create_base_type_if_not_exists | typenamespace regnamespace, typename name, infunc regprocedure, outfunc regprocedure, internallength integer, alignment text, storage text | boolean - pg_tle | pgtle | create_operator_func | typenamespace regnamespace, typename name, opfunc regprocedure | void - pg_tle | pgtle | create_operator_func_if_not_exists | typenamespace regnamespace, typename name, opfunc regprocedure | boolean - pg_tle | pgtle | create_shell_type | typenamespace regnamespace, typename name | void - pg_tle | pgtle | create_shell_type_if_not_exists | typenamespace regnamespace, typename name | boolean - pg_tle | pgtle | extension_update_paths | name name, OUT source text, OUT target text, OUT path text | SETOF record - pg_tle | pgtle | install_extension | name text, version text, description text, ext text, requires text[] | boolean - pg_tle | pgtle | install_extension_version_sql | name text, version text, ext text | boolean - pg_tle | pgtle | install_update_path | name text, fromvers text, tovers text, ext text | boolean - pg_tle | pgtle | pg_tle_feature_info_sql_drop | | event_trigger - pg_tle | pgtle | register_feature | proc regproc, feature pgtle.pg_tle_features | void - pg_tle | pgtle | register_feature_if_not_exists | proc regproc, feature pgtle.pg_tle_features | boolean - pg_tle | pgtle | set_default_version | name text, version text | boolean - pg_tle | pgtle | uninstall_extension | extname text | boolean - pg_tle | pgtle | uninstall_extension | extname text, version text | boolean - pg_tle | pgtle | uninstall_extension_if_exists | extname text | boolean - pg_tle | pgtle | uninstall_update_path | extname text, fromvers text, tovers text | boolean - pg_tle | pgtle | uninstall_update_path_if_exists | extname text, fromvers text, tovers text | boolean - pg_tle | pgtle | unregister_feature | proc regproc, feature pgtle.pg_tle_features | void - pg_tle | pgtle | unregister_feature_if_exists | proc regproc, feature pgtle.pg_tle_features | boolean - pg_trgm | public | gin_extract_query_trgm | text, internal, smallint, internal, internal, internal, internal | internal - pg_trgm | public | gin_extract_value_trgm | text, internal | internal - pg_trgm | public | gin_trgm_consistent | internal, smallint, text, integer, internal, internal, internal, internal | boolean - pg_trgm | public | gin_trgm_triconsistent | internal, smallint, text, integer, internal, internal, internal | "char" - pg_trgm | public | gtrgm_compress | internal | internal - pg_trgm | public | gtrgm_consistent | internal, text, smallint, oid, internal | boolean - pg_trgm | public | gtrgm_decompress | internal | internal - pg_trgm | public | gtrgm_distance | internal, text, smallint, oid, internal | double precision - pg_trgm | public | gtrgm_in | cstring | gtrgm - pg_trgm | public | gtrgm_options | internal | void - pg_trgm | public | gtrgm_out | gtrgm | cstring - pg_trgm | public | gtrgm_penalty | internal, internal, internal | internal - pg_trgm | public | gtrgm_picksplit | internal, internal | internal - pg_trgm | public | gtrgm_same | gtrgm, gtrgm, internal | internal - pg_trgm | public | gtrgm_union | internal, internal | gtrgm - pg_trgm | public | set_limit | real | real - pg_trgm | public | show_limit | | real - pg_trgm | public | show_trgm | text | text[] - pg_trgm | public | similarity | text, text | real - pg_trgm | public | similarity_dist | text, text | real - pg_trgm | public | similarity_op | text, text | boolean - pg_trgm | public | strict_word_similarity | text, text | real - pg_trgm | public | strict_word_similarity_commutator_op | text, text | boolean - pg_trgm | public | strict_word_similarity_dist_commutator_op | text, text | real - pg_trgm | public | strict_word_similarity_dist_op | text, text | real - pg_trgm | public | strict_word_similarity_op | text, text | boolean - pg_trgm | public | word_similarity | text, text | real - pg_trgm | public | word_similarity_commutator_op | text, text | boolean - pg_trgm | public | word_similarity_dist_commutator_op | text, text | real - pg_trgm | public | word_similarity_dist_op | text, text | real - pg_trgm | public | word_similarity_op | text, text | boolean - pg_visibility | public | pg_check_frozen | regclass, OUT t_ctid tid | SETOF tid - pg_visibility | public | pg_check_visible | regclass, OUT t_ctid tid | SETOF tid - pg_visibility | public | pg_truncate_visibility_map | regclass | void - pg_visibility | public | pg_visibility | regclass, OUT blkno bigint, OUT all_visible boolean, OUT all_frozen boolean, OUT pd_all_visible boolean | SETOF record - pg_visibility | public | pg_visibility | regclass, blkno bigint, OUT all_visible boolean, OUT all_frozen boolean, OUT pd_all_visible boolean | record - pg_visibility | public | pg_visibility_map | regclass, blkno bigint, OUT all_visible boolean, OUT all_frozen boolean | record - pg_visibility | public | pg_visibility_map | regclass, OUT blkno bigint, OUT all_visible boolean, OUT all_frozen boolean | SETOF record - pg_visibility | public | pg_visibility_map_summary | regclass, OUT all_visible bigint, OUT all_frozen bigint | record - pg_walinspect | public | pg_get_wal_record_info | in_lsn pg_lsn, OUT start_lsn pg_lsn, OUT end_lsn pg_lsn, OUT prev_lsn pg_lsn, OUT xid xid, OUT resource_manager text, OUT record_type text, OUT record_length integer, OUT main_data_length integer, OUT fpi_length integer, OUT description text, OUT block_ref text | record - pg_walinspect | public | pg_get_wal_records_info | start_lsn pg_lsn, end_lsn pg_lsn, OUT start_lsn pg_lsn, OUT end_lsn pg_lsn, OUT prev_lsn pg_lsn, OUT xid xid, OUT resource_manager text, OUT record_type text, OUT record_length integer, OUT main_data_length integer, OUT fpi_length integer, OUT description text, OUT block_ref text | SETOF record - pg_walinspect | public | pg_get_wal_stats | start_lsn pg_lsn, end_lsn pg_lsn, per_record boolean, OUT "resource_manager/record_type" text, OUT count bigint, OUT count_percentage double precision, OUT record_size bigint, OUT record_size_percentage double precision, OUT fpi_size bigint, OUT fpi_size_percentage double precision, OUT combined_size bigint, OUT combined_size_percentage double precision | SETOF record - pgaudit | public | pgaudit_ddl_command_end | | event_trigger - pgaudit | public | pgaudit_sql_drop | | event_trigger - pgcrypto | extensions | armor | bytea, text[], text[] | text - pgcrypto | extensions | armor | bytea | text - pgcrypto | extensions | crypt | text, text | text - pgcrypto | extensions | dearmor | text | bytea - pgcrypto | extensions | decrypt | bytea, bytea, text | bytea - pgcrypto | extensions | decrypt_iv | bytea, bytea, bytea, text | bytea - pgcrypto | extensions | digest | text, text | bytea - pgcrypto | extensions | digest | bytea, text | bytea - pgcrypto | extensions | encrypt | bytea, bytea, text | bytea - pgcrypto | extensions | encrypt_iv | bytea, bytea, bytea, text | bytea - pgcrypto | extensions | gen_random_bytes | integer | bytea - pgcrypto | extensions | gen_random_uuid | | uuid - pgcrypto | extensions | gen_salt | text | text - pgcrypto | extensions | gen_salt | text, integer | text - pgcrypto | extensions | hmac | text, text, text | bytea - pgcrypto | extensions | hmac | bytea, bytea, text | bytea - pgcrypto | extensions | pgp_armor_headers | text, OUT key text, OUT value text | SETOF record - pgcrypto | extensions | pgp_key_id | bytea | text - pgcrypto | extensions | pgp_pub_decrypt | bytea, bytea | text - pgcrypto | extensions | pgp_pub_decrypt | bytea, bytea, text, text | text - pgcrypto | extensions | pgp_pub_decrypt | bytea, bytea, text | text - pgcrypto | extensions | pgp_pub_decrypt_bytea | bytea, bytea | bytea - pgcrypto | extensions | pgp_pub_decrypt_bytea | bytea, bytea, text, text | bytea - pgcrypto | extensions | pgp_pub_decrypt_bytea | bytea, bytea, text | bytea - pgcrypto | extensions | pgp_pub_encrypt | text, bytea, text | bytea - pgcrypto | extensions | pgp_pub_encrypt | text, bytea | bytea - pgcrypto | extensions | pgp_pub_encrypt_bytea | bytea, bytea | bytea - pgcrypto | extensions | pgp_pub_encrypt_bytea | bytea, bytea, text | bytea - pgcrypto | extensions | pgp_sym_decrypt | bytea, text | text - pgcrypto | extensions | pgp_sym_decrypt | bytea, text, text | text - pgcrypto | extensions | pgp_sym_decrypt_bytea | bytea, text | bytea - pgcrypto | extensions | pgp_sym_decrypt_bytea | bytea, text, text | bytea - pgcrypto | extensions | pgp_sym_encrypt | text, text | bytea - pgcrypto | extensions | pgp_sym_encrypt | text, text, text | bytea - pgcrypto | extensions | pgp_sym_encrypt_bytea | bytea, text | bytea - pgcrypto | extensions | pgp_sym_encrypt_bytea | bytea, text, text | bytea - pgmq | pgmq | _belongs_to_pgmq | table_name text | boolean - pgmq | pgmq | _ensure_pg_partman_installed | | void - pgmq | pgmq | _extension_exists | extension_name text | boolean - pgmq | pgmq | _get_partition_col | partition_interval text | text - pgmq | pgmq | _get_pg_partman_major_version | | integer - pgmq | pgmq | _get_pg_partman_schema | | text - pgmq | pgmq | archive | queue_name text, msg_id bigint | boolean - pgmq | pgmq | archive | queue_name text, msg_ids bigint[] | SETOF bigint - pgmq | pgmq | convert_archive_partitioned | table_name text, partition_interval text, retention_interval text, leading_partition integer | void - pgmq | pgmq | create | queue_name text | void - pgmq | pgmq | create_non_partitioned | queue_name text | void - pgmq | pgmq | create_partitioned | queue_name text, partition_interval text, retention_interval text | void - pgmq | pgmq | create_unlogged | queue_name text | void - pgmq | pgmq | delete | queue_name text, msg_id bigint | boolean - pgmq | pgmq | delete | queue_name text, msg_ids bigint[] | SETOF bigint - pgmq | pgmq | detach_archive | queue_name text | void - pgmq | pgmq | drop_queue | queue_name text, partitioned boolean | boolean - pgmq | pgmq | drop_queue | queue_name text | boolean - pgmq | pgmq | format_table_name | queue_name text, prefix text | text - pgmq | pgmq | list_queues | | SETOF pgmq.queue_record - pgmq | pgmq | metrics | queue_name text | pgmq.metrics_result - pgmq | pgmq | metrics_all | | SETOF pgmq.metrics_result - pgmq | pgmq | pop | queue_name text | SETOF pgmq.message_record - pgmq | pgmq | purge_queue | queue_name text | bigint - pgmq | pgmq | read | queue_name text, vt integer, qty integer, conditional jsonb | SETOF pgmq.message_record - pgmq | pgmq | read_with_poll | queue_name text, vt integer, qty integer, max_poll_seconds integer, poll_interval_ms integer, conditional jsonb | SETOF pgmq.message_record - pgmq | pgmq | send | queue_name text, msg jsonb, headers jsonb | SETOF bigint - pgmq | pgmq | send | queue_name text, msg jsonb, delay integer | SETOF bigint - pgmq | pgmq | send | queue_name text, msg jsonb, headers jsonb, delay timestamp with time zone | SETOF bigint - pgmq | pgmq | send | queue_name text, msg jsonb, headers jsonb, delay integer | SETOF bigint - pgmq | pgmq | send | queue_name text, msg jsonb | SETOF bigint - pgmq | pgmq | send | queue_name text, msg jsonb, delay timestamp with time zone | SETOF bigint - pgmq | pgmq | send_batch | queue_name text, msgs jsonb[], headers jsonb[] | SETOF bigint - pgmq | pgmq | send_batch | queue_name text, msgs jsonb[], headers jsonb[], delay timestamp with time zone | SETOF bigint - pgmq | pgmq | send_batch | queue_name text, msgs jsonb[], headers jsonb[], delay integer | SETOF bigint - pgmq | pgmq | send_batch | queue_name text, msgs jsonb[] | SETOF bigint - pgmq | pgmq | send_batch | queue_name text, msgs jsonb[], delay timestamp with time zone | SETOF bigint - pgmq | pgmq | send_batch | queue_name text, msgs jsonb[], delay integer | SETOF bigint - pgmq | pgmq | set_vt | queue_name text, msg_id bigint, vt integer | SETOF pgmq.message_record - pgmq | pgmq | validate_queue_name | queue_name text | void - pgroonga | pgroonga | command | groongacommand text | text - pgroonga | pgroonga | command | groongacommand text, arguments text[] | text - pgroonga | pgroonga | command_escape_value | value text | text - pgroonga | pgroonga | contain_varchar_array | character varying[], character varying | boolean - pgroonga | pgroonga | escape | value bigint | text - pgroonga | pgroonga | escape | value double precision | text - pgroonga | pgroonga | escape | value text, special_characters text | text - pgroonga | pgroonga | escape | value timestamp without time zone | text - pgroonga | pgroonga | escape | value smallint | text - pgroonga | pgroonga | escape | value text | text - pgroonga | pgroonga | escape | value timestamp with time zone | text - pgroonga | pgroonga | escape | value real | text - pgroonga | pgroonga | escape | value boolean | text - pgroonga | pgroonga | escape | value integer | text - pgroonga | pgroonga | flush | indexname cstring | boolean - pgroonga | pgroonga | highlight_html | target text, keywords text[] | text - pgroonga | pgroonga | match_in_text | text, text[] | boolean - pgroonga | pgroonga | match_in_text_array | text[], text[] | boolean - pgroonga | pgroonga | match_in_varchar | character varying, character varying[] | boolean - pgroonga | pgroonga | match_jsonb | jsonb, text | boolean - pgroonga | pgroonga | match_positions_byte | target text, keywords text[] | integer[] - pgroonga | pgroonga | match_positions_character | target text, keywords text[] | integer[] - pgroonga | pgroonga | match_query | text, text | boolean - pgroonga | pgroonga | match_query | character varying, character varying | boolean - pgroonga | pgroonga | match_query | text[], text | boolean - pgroonga | pgroonga | match_regexp | text, text | boolean - pgroonga | pgroonga | match_regexp | character varying, character varying | boolean - pgroonga | pgroonga | match_script_jsonb | jsonb, text | boolean - pgroonga | pgroonga | match_term | target text, term text | boolean - pgroonga | pgroonga | match_term | target text[], term text | boolean - pgroonga | pgroonga | match_term | target character varying[], term character varying | boolean - pgroonga | pgroonga | match_term | target character varying, term character varying | boolean - pgroonga | pgroonga | match_text | text, text | boolean - pgroonga | pgroonga | match_text_array | text[], text | boolean - pgroonga | pgroonga | match_varchar | character varying, character varying | boolean - pgroonga | pgroonga | prefix_in_text | text, text[] | boolean - pgroonga | pgroonga | prefix_in_text_array | text[], text[] | boolean - pgroonga | pgroonga | prefix_rk_in_text | text, text[] | boolean - pgroonga | pgroonga | prefix_rk_in_text_array | text[], text[] | boolean - pgroonga | pgroonga | prefix_rk_text | text, text | boolean - pgroonga | pgroonga | prefix_rk_text_array | text[], text | boolean - pgroonga | pgroonga | prefix_text | text, text | boolean - pgroonga | pgroonga | prefix_text_array | text[], text | boolean - pgroonga | pgroonga | query_escape | query text | text - pgroonga | pgroonga | query_expand | tablename cstring, termcolumnname text, synonymscolumnname text, query text | text - pgroonga | pgroonga | query_extract_keywords | query text | text[] - pgroonga | pgroonga | query_in_text | text, text[] | boolean - pgroonga | pgroonga | query_in_text_array | text[], text[] | boolean - pgroonga | pgroonga | query_in_varchar | character varying, character varying[] | boolean - pgroonga | pgroonga | query_jsonb | jsonb, text | boolean - pgroonga | pgroonga | query_text | text, text | boolean - pgroonga | pgroonga | query_text_array | text[], text | boolean - pgroonga | pgroonga | query_varchar | character varying, character varying | boolean - pgroonga | pgroonga | regexp_text | text, text | boolean - pgroonga | pgroonga | regexp_varchar | character varying, character varying | boolean - pgroonga | pgroonga | score | "row" record | double precision - pgroonga | pgroonga | script_jsonb | jsonb, text | boolean - pgroonga | pgroonga | script_text | text, text | boolean - pgroonga | pgroonga | script_text_array | text[], text | boolean - pgroonga | pgroonga | script_varchar | character varying, character varying | boolean - pgroonga | pgroonga | similar_text | text, text | boolean - pgroonga | pgroonga | similar_text_array | text[], text | boolean - pgroonga | pgroonga | similar_varchar | character varying, character varying | boolean - pgroonga | pgroonga | snippet_html | target text, keywords text[], width integer | text[] - pgroonga | pgroonga | table_name | indexname cstring | text - pgroonga | public | pgroonga_command | groongacommand text | text - pgroonga | public | pgroonga_command | groongacommand text, arguments text[] | text - pgroonga | public | pgroonga_command_escape_value | value text | text - pgroonga | public | pgroonga_condition | query text, weights integer[], scorers text[], schema_name text, index_name text, column_name text, fuzzy_max_distance_ratio real | pgroonga_condition - pgroonga | public | pgroonga_contain_varchar_array | character varying[], character varying | boolean - pgroonga | public | pgroonga_equal_query_text_array | targets text[], query text | boolean - pgroonga | public | pgroonga_equal_query_text_array_condition | targets text[], condition pgroonga_condition | boolean - pgroonga | public | pgroonga_equal_query_text_array_condition | targets text[], condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_equal_query_varchar_array | targets character varying[], query text | boolean - pgroonga | public | pgroonga_equal_query_varchar_array_condition | targets character varying[], condition pgroonga_condition | boolean - pgroonga | public | pgroonga_equal_query_varchar_array_condition | targets character varying[], condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_equal_text | target text, other text | boolean - pgroonga | public | pgroonga_equal_text_condition | target text, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_equal_text_condition | target text, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_equal_varchar | target character varying, other character varying | boolean - pgroonga | public | pgroonga_equal_varchar_condition | target character varying, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_equal_varchar_condition | target character varying, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_escape | value bigint | text - pgroonga | public | pgroonga_escape | value double precision | text - pgroonga | public | pgroonga_escape | value text, special_characters text | text - pgroonga | public | pgroonga_escape | value timestamp without time zone | text - pgroonga | public | pgroonga_escape | value smallint | text - pgroonga | public | pgroonga_escape | value text | text - pgroonga | public | pgroonga_escape | value timestamp with time zone | text - pgroonga | public | pgroonga_escape | value real | text - pgroonga | public | pgroonga_escape | value boolean | text - pgroonga | public | pgroonga_escape | value integer | text - pgroonga | public | pgroonga_flush | indexname cstring | boolean - pgroonga | public | pgroonga_handler | internal | index_am_handler - pgroonga | public | pgroonga_highlight_html | target text, keywords text[], indexname cstring | text - pgroonga | public | pgroonga_highlight_html | targets text[], keywords text[], indexname cstring | text[] - pgroonga | public | pgroonga_highlight_html | target text, keywords text[] | text - pgroonga | public | pgroonga_highlight_html | targets text[], keywords text[] | text[] - pgroonga | public | pgroonga_index_column_name | indexname cstring, columnindex integer | text - pgroonga | public | pgroonga_index_column_name | indexname cstring, columnname text | text - pgroonga | public | pgroonga_is_writable | | boolean - pgroonga | public | pgroonga_list_broken_indexes | | SETOF text - pgroonga | public | pgroonga_list_lagged_indexes | | SETOF text - pgroonga | public | pgroonga_match_in_text | text, text[] | boolean - pgroonga | public | pgroonga_match_in_text_array | text[], text[] | boolean - pgroonga | public | pgroonga_match_in_varchar | character varying, character varying[] | boolean - pgroonga | public | pgroonga_match_jsonb | jsonb, text | boolean - pgroonga | public | pgroonga_match_positions_byte | target text, keywords text[], indexname cstring | integer[] - pgroonga | public | pgroonga_match_positions_byte | target text, keywords text[] | integer[] - pgroonga | public | pgroonga_match_positions_character | target text, keywords text[], indexname cstring | integer[] - pgroonga | public | pgroonga_match_positions_character | target text, keywords text[] | integer[] - pgroonga | public | pgroonga_match_query | text, text | boolean - pgroonga | public | pgroonga_match_query | character varying, character varying | boolean - pgroonga | public | pgroonga_match_query | text[], text | boolean - pgroonga | public | pgroonga_match_regexp | text, text | boolean - pgroonga | public | pgroonga_match_regexp | character varying, character varying | boolean - pgroonga | public | pgroonga_match_script_jsonb | jsonb, text | boolean - pgroonga | public | pgroonga_match_term | target text, term text | boolean - pgroonga | public | pgroonga_match_term | target text[], term text | boolean - pgroonga | public | pgroonga_match_term | target character varying[], term character varying | boolean - pgroonga | public | pgroonga_match_term | target character varying, term character varying | boolean - pgroonga | public | pgroonga_match_text | text, text | boolean - pgroonga | public | pgroonga_match_text_array | text[], text | boolean - pgroonga | public | pgroonga_match_text_array_condition | target text[], condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_match_text_array_condition | target text[], condition pgroonga_condition | boolean - pgroonga | public | pgroonga_match_text_array_condition_with_scorers | target text[], condition pgroonga_full_text_search_condition_with_scorers | boolean - pgroonga | public | pgroonga_match_text_condition | target text, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_match_text_condition | target text, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_match_text_condition_with_scorers | target text, condition pgroonga_full_text_search_condition_with_scorers | boolean - pgroonga | public | pgroonga_match_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_match_varchar_condition | target character varying, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_match_varchar_condition | target character varying, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_match_varchar_condition_with_scorers | target character varying, condition pgroonga_full_text_search_condition_with_scorers | boolean - pgroonga | public | pgroonga_normalize | target text | text - pgroonga | public | pgroonga_normalize | target text, normalizername text | text - pgroonga | public | pgroonga_not_prefix_in_text | text, text[] | boolean - pgroonga | public | pgroonga_prefix_in_text | text, text[] | boolean - pgroonga | public | pgroonga_prefix_in_text_array | text[], text[] | boolean - pgroonga | public | pgroonga_prefix_in_varchar | character varying, character varying[] | boolean - pgroonga | public | pgroonga_prefix_in_varchar_array | character varying[], character varying[] | boolean - pgroonga | public | pgroonga_prefix_rk_in_text | text, text[] | boolean - pgroonga | public | pgroonga_prefix_rk_in_text_array | text[], text[] | boolean - pgroonga | public | pgroonga_prefix_rk_in_varchar | character varying, character varying[] | boolean - pgroonga | public | pgroonga_prefix_rk_in_varchar_array | character varying[], character varying[] | boolean - pgroonga | public | pgroonga_prefix_rk_text | text, text | boolean - pgroonga | public | pgroonga_prefix_rk_text_array | text[], text | boolean - pgroonga | public | pgroonga_prefix_rk_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_prefix_rk_varchar_array | character varying[], character varying | boolean - pgroonga | public | pgroonga_prefix_text | text, text | boolean - pgroonga | public | pgroonga_prefix_text_array | text[], text | boolean - pgroonga | public | pgroonga_prefix_text_array_condition | text[], pgroonga_condition | boolean - pgroonga | public | pgroonga_prefix_text_condition | text, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_prefix_text_condition | text, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_prefix_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_prefix_varchar_array | character varying[], character varying | boolean - pgroonga | public | pgroonga_prefix_varchar_array_condition | character varying[], pgroonga_condition | boolean - pgroonga | public | pgroonga_prefix_varchar_condition | target character varying, conditoin pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_prefix_varchar_condition | target character varying, conditoin pgroonga_condition | boolean - pgroonga | public | pgroonga_query_escape | query text | text - pgroonga | public | pgroonga_query_expand | tablename cstring, termcolumnname text, synonymscolumnname text, query text | text - pgroonga | public | pgroonga_query_extract_keywords | query text, index_name text | text[] - pgroonga | public | pgroonga_query_in_text | text, text[] | boolean - pgroonga | public | pgroonga_query_in_text_array | text[], text[] | boolean - pgroonga | public | pgroonga_query_in_varchar | character varying, character varying[] | boolean - pgroonga | public | pgroonga_query_jsonb | jsonb, text | boolean - pgroonga | public | pgroonga_query_text | text, text | boolean - pgroonga | public | pgroonga_query_text_array | text[], text | boolean - pgroonga | public | pgroonga_query_text_array_condition | targets text[], condition pgroonga_condition | boolean - pgroonga | public | pgroonga_query_text_array_condition | targets text[], condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_query_text_array_condition_with_scorers | targets text[], condition pgroonga_full_text_search_condition_with_scorers | boolean - pgroonga | public | pgroonga_query_text_condition | target text, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_query_text_condition | target text, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_query_text_condition_with_scorers | target text, condition pgroonga_full_text_search_condition_with_scorers | boolean - pgroonga | public | pgroonga_query_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_query_varchar_condition | target character varying, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_query_varchar_condition | target character varying, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_query_varchar_condition_with_scorers | target character varying, condition pgroonga_full_text_search_condition_with_scorers | boolean - pgroonga | public | pgroonga_regexp_in_text | text, text[] | boolean - pgroonga | public | pgroonga_regexp_in_varchar | character varying, character varying[] | boolean - pgroonga | public | pgroonga_regexp_text | text, text | boolean - pgroonga | public | pgroonga_regexp_text_array | targets text[], pattern text | boolean - pgroonga | public | pgroonga_regexp_text_array_condition | targets text[], pattern pgroonga_condition | boolean - pgroonga | public | pgroonga_regexp_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_result_to_jsonb_objects | result jsonb | jsonb - pgroonga | public | pgroonga_result_to_recordset | result jsonb | SETOF record - pgroonga | public | pgroonga_score | "row" record | double precision - pgroonga | public | pgroonga_score | tableoid oid, ctid tid | double precision - pgroonga | public | pgroonga_script_jsonb | jsonb, text | boolean - pgroonga | public | pgroonga_script_text | text, text | boolean - pgroonga | public | pgroonga_script_text_array | text[], text | boolean - pgroonga | public | pgroonga_script_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_set_writable | newwritable boolean | boolean - pgroonga | public | pgroonga_similar_text | text, text | boolean - pgroonga | public | pgroonga_similar_text_array | text[], text | boolean - pgroonga | public | pgroonga_similar_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_snippet_html | target text, keywords text[], width integer | text[] - pgroonga | public | pgroonga_table_name | indexname cstring | text - pgroonga | public | pgroonga_tokenize | target text, VARIADIC options text[] | json[] - pgroonga | public | pgroonga_vacuum | | boolean - pgroonga | public | pgroonga_wal_apply | indexname cstring | bigint - pgroonga | public | pgroonga_wal_apply | | bigint - pgroonga | public | pgroonga_wal_set_applied_position | block bigint, "offset" bigint | boolean - pgroonga | public | pgroonga_wal_set_applied_position | indexname cstring, block bigint, "offset" bigint | boolean - pgroonga | public | pgroonga_wal_set_applied_position | indexname cstring | boolean - pgroonga | public | pgroonga_wal_set_applied_position | | boolean - pgroonga | public | pgroonga_wal_status | | TABLE(name text, oid oid, current_block bigint, current_offset bigint, current_size bigint, last_block bigint, last_offset bigint, last_size bigint) - pgroonga | public | pgroonga_wal_truncate | indexname cstring | bigint - pgroonga | public | pgroonga_wal_truncate | | bigint - pgroonga_database | public | pgroonga_database_remove | | boolean - pgrouting | public | _pgr_alphashape | text, alpha double precision, OUT seq1 bigint, OUT textgeom text | SETOF record - pgrouting | public | _pgr_array_reverse | anyarray | anyarray - pgrouting | public | _pgr_articulationpoints | edges_sql text, OUT seq integer, OUT node bigint | SETOF record - pgrouting | public | _pgr_astar | edges_sql text, start_vids anyarray, end_vids anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, only_cost boolean, normal boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_astar | edges_sql text, combinations_sql text, directed boolean, heuristic integer, factor double precision, epsilon double precision, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bdastar | text, text, directed boolean, heuristic integer, factor double precision, epsilon double precision, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bdastar | text, anyarray, anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bddijkstra | text, anyarray, anyarray, directed boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bddijkstra | text, text, directed boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bellmanford | edges_sql text, from_vids anyarray, to_vids anyarray, directed boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bellmanford | edges_sql text, combinations_sql text, directed boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_biconnectedcomponents | edges_sql text, OUT seq bigint, OUT component bigint, OUT edge bigint | SETOF record - pgrouting | public | _pgr_binarybreadthfirstsearch | edges_sql text, combinations_sql text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_binarybreadthfirstsearch | edges_sql text, from_vids anyarray, to_vids anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bipartite | edges_sql text, OUT node bigint, OUT color bigint | SETOF record - pgrouting | public | _pgr_boost_version | | text - pgrouting | public | _pgr_breadthfirstsearch | edges_sql text, from_vids anyarray, max_depth bigint, directed boolean, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bridges | edges_sql text, OUT seq integer, OUT edge bigint | SETOF record - pgrouting | public | _pgr_build_type | | text - pgrouting | public | _pgr_checkcolumn | text, text, text, is_optional boolean, dryrun boolean | boolean - pgrouting | public | _pgr_checkquery | text | text - pgrouting | public | _pgr_checkverttab | vertname text, columnsarr text[], reporterrs integer, fnname text, OUT sname text, OUT vname text | record - pgrouting | public | _pgr_chinesepostman | edges_sql text, only_cost boolean, OUT seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_compilation_date | | text - pgrouting | public | _pgr_compiler_version | | text - pgrouting | public | _pgr_connectedcomponents | edges_sql text, OUT seq bigint, OUT component bigint, OUT node bigint | SETOF record - pgrouting | public | _pgr_contraction | edges_sql text, contraction_order bigint[], max_cycles integer, forbidden_vertices bigint[], directed boolean, OUT type text, OUT id bigint, OUT contracted_vertices bigint[], OUT source bigint, OUT target bigint, OUT cost double precision | SETOF record - pgrouting | public | _pgr_createindex | tabname text, colname text, indext text, reporterrs integer, fnname text | void - pgrouting | public | _pgr_createindex | sname text, tname text, colname text, indext text, reporterrs integer, fnname text | void - pgrouting | public | _pgr_cuthillmckeeordering | text, OUT seq bigint, OUT node bigint | SETOF record - pgrouting | public | _pgr_dagshortestpath | text, anyarray, anyarray, directed boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dagshortestpath | text, text, directed boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_depthfirstsearch | edges_sql text, root_vids anyarray, directed boolean, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstra | edges_sql text, combinations_sql text, directed boolean, only_cost boolean, normal boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstra | edges_sql text, start_vids anyarray, end_vids anyarray, directed boolean, only_cost boolean, normal boolean, n_goals bigint, global boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstra | edges_sql text, combinations_sql text, directed boolean, only_cost boolean, n_goals bigint, global boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstra | edges_sql text, start_vids anyarray, end_vids anyarray, directed boolean, only_cost boolean, normal boolean, n_goals bigint, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstranear | text, anyarray, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstranear | text, anyarray, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstranear | text, bigint, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstravia | edges_sql text, via_vids anyarray, directed boolean, strict boolean, u_turn_on_edge boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | _pgr_drivingdistance | edges_sql text, start_vids anyarray, distance double precision, directed boolean, equicost boolean, OUT seq integer, OUT from_v bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_edgecoloring | edges_sql text, OUT edge_id bigint, OUT color_id bigint | SETOF record - pgrouting | public | _pgr_edgedisjointpaths | text, text, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_edgedisjointpaths | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_edwardmoore | edges_sql text, combinations_sql text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_edwardmoore | edges_sql text, from_vids anyarray, to_vids anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_endpoint | g geometry | geometry - pgrouting | public | _pgr_floydwarshall | edges_sql text, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_get_statement | o_sql text | text - pgrouting | public | _pgr_getcolumnname | tab text, col text, reporterrs integer, fnname text | text - pgrouting | public | _pgr_getcolumnname | sname text, tname text, col text, reporterrs integer, fnname text | text - pgrouting | public | _pgr_getcolumntype | tab text, col text, reporterrs integer, fnname text | text - pgrouting | public | _pgr_getcolumntype | sname text, tname text, cname text, reporterrs integer, fnname text | text - pgrouting | public | _pgr_gettablename | tab text, reporterrs integer, fnname text, OUT sname text, OUT tname text | record - pgrouting | public | _pgr_git_hash | | text - pgrouting | public | _pgr_hawickcircuits | text, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_iscolumnindexed | tab text, col text, reporterrs integer, fnname text | boolean - pgrouting | public | _pgr_iscolumnindexed | sname text, tname text, cname text, reporterrs integer, fnname text | boolean - pgrouting | public | _pgr_iscolumnintable | tab text, col text | boolean - pgrouting | public | _pgr_isplanar | text | boolean - pgrouting | public | _pgr_johnson | edges_sql text, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_kruskal | text, anyarray, fn_suffix text, max_depth bigint, distance double precision, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_ksp | edges_sql text, start_vid bigint, end_vid bigint, k integer, directed boolean, heap_paths boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_lengauertarjandominatortree | edges_sql text, root_vid bigint, OUT seq integer, OUT vid bigint, OUT idom bigint | SETOF record - pgrouting | public | _pgr_lib_version | | text - pgrouting | public | _pgr_linegraph | text, directed boolean, OUT seq integer, OUT source bigint, OUT target bigint, OUT cost double precision, OUT reverse_cost double precision | SETOF record - pgrouting | public | _pgr_linegraphfull | text, OUT seq integer, OUT source bigint, OUT target bigint, OUT cost double precision, OUT edge bigint | SETOF record - pgrouting | public | _pgr_makeconnected | text, OUT seq bigint, OUT start_vid bigint, OUT end_vid bigint | SETOF record - pgrouting | public | _pgr_maxcardinalitymatch | edges_sql text, directed boolean, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint | SETOF record - pgrouting | public | _pgr_maxflow | edges_sql text, combinations_sql text, algorithm integer, only_flow boolean, OUT seq integer, OUT edge_id bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | _pgr_maxflow | edges_sql text, sources anyarray, targets anyarray, algorithm integer, only_flow boolean, OUT seq integer, OUT edge_id bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | _pgr_maxflowmincost | edges_sql text, sources anyarray, targets anyarray, only_cost boolean, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_maxflowmincost | edges_sql text, combinations_sql text, only_cost boolean, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_msg | msgkind integer, fnname text, msg text | void - pgrouting | public | _pgr_onerror | errcond boolean, reporterrs integer, fnname text, msgerr text, hinto text, msgok text | void - pgrouting | public | _pgr_operating_system | | text - pgrouting | public | _pgr_parameter_check | fn text, sql text, big boolean | boolean - pgrouting | public | _pgr_pgsql_version | | text - pgrouting | public | _pgr_pickdeliver | text, text, text, factor double precision, max_cycles integer, initial_sol integer, OUT seq integer, OUT vehicle_seq integer, OUT vehicle_id bigint, OUT stop_seq integer, OUT stop_type integer, OUT stop_id bigint, OUT order_id bigint, OUT cargo double precision, OUT travel_time double precision, OUT arrival_time double precision, OUT wait_time double precision, OUT service_time double precision, OUT departure_time double precision | SETOF record - pgrouting | public | _pgr_pickdelivereuclidean | text, text, factor double precision, max_cycles integer, initial_sol integer, OUT seq integer, OUT vehicle_seq integer, OUT vehicle_id bigint, OUT stop_seq integer, OUT stop_type integer, OUT order_id bigint, OUT cargo double precision, OUT travel_time double precision, OUT arrival_time double precision, OUT wait_time double precision, OUT service_time double precision, OUT departure_time double precision | SETOF record - pgrouting | public | _pgr_pointtoid | point geometry, tolerance double precision, vertname text, srid integer | bigint - pgrouting | public | _pgr_prim | text, anyarray, order_by text, max_depth bigint, distance double precision, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_quote_ident | idname text | text - pgrouting | public | _pgr_sequentialvertexcoloring | edges_sql text, OUT vertex_id bigint, OUT color_id bigint | SETOF record - pgrouting | public | _pgr_startpoint | g geometry | geometry - pgrouting | public | _pgr_stoerwagner | edges_sql text, OUT seq integer, OUT edge bigint, OUT cost double precision, OUT mincut double precision | SETOF record - pgrouting | public | _pgr_strongcomponents | edges_sql text, OUT seq bigint, OUT component bigint, OUT node bigint | SETOF record - pgrouting | public | _pgr_topologicalsort | edges_sql text, OUT seq integer, OUT sorted_v bigint | SETOF record - pgrouting | public | _pgr_transitiveclosure | edges_sql text, OUT seq integer, OUT vid bigint, OUT target_array bigint[] | SETOF record - pgrouting | public | _pgr_trsp | sql text, source_eid integer, source_pos double precision, target_eid integer, target_pos double precision, directed boolean, has_reverse_cost boolean, turn_restrict_sql text, OUT seq integer, OUT id1 integer, OUT id2 integer, OUT cost double precision | SETOF record - pgrouting | public | _pgr_trsp | text, text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_trsp | text, text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_trsp | text, text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_trsp | text, text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_trsp_withpoints | text, text, text, text, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT departure bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_trsp_withpoints | text, text, text, anyarray, anyarray, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT departure bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_trspvia | text, text, anyarray, boolean, boolean, boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | _pgr_trspvia_withpoints | text, text, text, anyarray, boolean, boolean, boolean, character, boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | _pgr_trspviavertices | sql text, vids integer[], directed boolean, has_rcost boolean, turn_restrict_sql text, OUT seq integer, OUT id1 integer, OUT id2 integer, OUT id3 integer, OUT cost double precision | SETOF record - pgrouting | public | _pgr_tsp | matrix_row_sql text, start_id bigint, end_id bigint, max_processing_time double precision, tries_per_temperature integer, max_changes_per_temperature integer, max_consecutive_non_changes integer, initial_temperature double precision, final_temperature double precision, cooling_factor double precision, randomize boolean, OUT seq integer, OUT node bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_tspeuclidean | coordinates_sql text, start_id bigint, end_id bigint, max_processing_time double precision, tries_per_temperature integer, max_changes_per_temperature integer, max_consecutive_non_changes integer, initial_temperature double precision, final_temperature double precision, cooling_factor double precision, randomize boolean, OUT seq integer, OUT node bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_turnrestrictedpath | text, text, bigint, bigint, integer, directed boolean, heap_paths boolean, stop_on_first boolean, strict boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_versionless | v1 text, v2 text | boolean - pgrouting | public | _pgr_vrponedepot | text, text, text, integer, OUT seq integer, OUT vehicle_seq integer, OUT vehicle_id bigint, OUT stop_seq integer, OUT stop_type integer, OUT stop_id bigint, OUT order_id bigint, OUT cargo double precision, OUT travel_time double precision, OUT arrival_time double precision, OUT wait_time double precision, OUT service_time double precision, OUT departure_time double precision | SETOF record - pgrouting | public | _pgr_withpoints | edges_sql text, points_sql text, combinations_sql text, directed boolean, driving_side character, details boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_pid bigint, OUT end_pid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_withpoints | edges_sql text, points_sql text, start_pids anyarray, end_pids anyarray, directed boolean, driving_side character, details boolean, only_cost boolean, normal boolean, OUT seq integer, OUT path_seq integer, OUT start_pid bigint, OUT end_pid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_withpointsdd | edges_sql text, points_sql text, start_pid anyarray, distance double precision, directed boolean, driving_side character, details boolean, equicost boolean, OUT seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_withpointsksp | edges_sql text, points_sql text, start_pid bigint, end_pid bigint, k integer, directed boolean, heap_paths boolean, driving_side character, details boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_withpointsvia | sql text, via_edges bigint[], fraction double precision[], directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | _pgr_withpointsvia | text, text, anyarray, boolean, boolean, boolean, character, boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | _trsp | text, text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _v4trsp | text, text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _v4trsp | text, text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_alphashape | geometry, alpha double precision | geometry - pgrouting | public | pgr_analyzegraph | text, double precision, the_geom text, id text, source text, target text, rows_where text | character varying - pgrouting | public | pgr_analyzeoneway | text, text[], text[], text[], text[], two_way_if_null boolean, oneway text, source text, target text | text - pgrouting | public | pgr_articulationpoints | text, OUT node bigint | SETOF bigint - pgrouting | public | pgr_astar | text, anyarray, bigint, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astar | text, bigint, bigint, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astar | text, bigint, anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astar | text, anyarray, anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astar | text, text, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astarcost | text, anyarray, anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astarcost | text, bigint, anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astarcost | text, text, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astarcost | text, anyarray, bigint, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astarcost | text, bigint, bigint, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astarcostmatrix | text, anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastar | text, bigint, anyarray, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastar | text, anyarray, bigint, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastar | text, anyarray, anyarray, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastar | text, bigint, bigint, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastar | text, text, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastarcost | text, anyarray, anyarray, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastarcost | text, bigint, bigint, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastarcost | text, anyarray, bigint, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastarcost | text, bigint, anyarray, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastarcost | text, text, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastarcostmatrix | text, anyarray, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstra | text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstra | text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstra | text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstra | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstra | text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstracost | text, text, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstracost | text, bigint, bigint, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstracost | text, anyarray, bigint, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstracost | text, anyarray, anyarray, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstracost | text, bigint, anyarray, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstracostmatrix | text, anyarray, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bellmanford | text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bellmanford | text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bellmanford | text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bellmanford | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bellmanford | text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_biconnectedcomponents | text, OUT seq bigint, OUT component bigint, OUT edge bigint | SETOF record - pgrouting | public | pgr_binarybreadthfirstsearch | text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_binarybreadthfirstsearch | text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_binarybreadthfirstsearch | text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_binarybreadthfirstsearch | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_binarybreadthfirstsearch | text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bipartite | text, OUT vertex_id bigint, OUT color_id bigint | SETOF record - pgrouting | public | pgr_boykovkolmogorov | text, anyarray, anyarray, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_boykovkolmogorov | text, text, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_boykovkolmogorov | text, bigint, anyarray, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_boykovkolmogorov | text, bigint, bigint, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_boykovkolmogorov | text, anyarray, bigint, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_breadthfirstsearch | text, anyarray, max_depth bigint, directed boolean, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_breadthfirstsearch | text, bigint, max_depth bigint, directed boolean, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bridges | text, OUT edge bigint | SETOF bigint - pgrouting | public | pgr_chinesepostman | text, OUT seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_chinesepostmancost | text | double precision - pgrouting | public | pgr_connectedcomponents | text, OUT seq bigint, OUT component bigint, OUT node bigint | SETOF record - pgrouting | public | pgr_contraction | text, bigint[], max_cycles integer, forbidden_vertices bigint[], directed boolean, OUT type text, OUT id bigint, OUT contracted_vertices bigint[], OUT source bigint, OUT target bigint, OUT cost double precision | SETOF record - pgrouting | public | pgr_createtopology | text, double precision, the_geom text, id text, source text, target text, rows_where text, clean boolean | character varying - pgrouting | public | pgr_createverticestable | text, the_geom text, source text, target text, rows_where text | text - pgrouting | public | pgr_cuthillmckeeordering | text, OUT seq bigint, OUT node bigint | SETOF record - pgrouting | public | pgr_dagshortestpath | text, anyarray, anyarray, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dagshortestpath | text, bigint, bigint, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dagshortestpath | text, anyarray, bigint, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dagshortestpath | text, text, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dagshortestpath | text, bigint, anyarray, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_degree | text, text, dryrun boolean, OUT node bigint, OUT degree bigint | SETOF record - pgrouting | public | pgr_depthfirstsearch | text, bigint, directed boolean, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_depthfirstsearch | text, anyarray, directed boolean, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstra | text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstra | text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstra | text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstra | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstra | text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstracost | text, text, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstracost | text, bigint, bigint, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstracost | text, anyarray, bigint, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstracost | text, anyarray, anyarray, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstracost | text, bigint, anyarray, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstracostmatrix | text, anyarray, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranear | text, bigint, anyarray, directed boolean, cap bigint, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranear | text, anyarray, bigint, directed boolean, cap bigint, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranear | text, anyarray, anyarray, directed boolean, cap bigint, global boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranear | text, text, directed boolean, cap bigint, global boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranearcost | text, text, directed boolean, cap bigint, global boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranearcost | text, anyarray, anyarray, directed boolean, cap bigint, global boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranearcost | text, bigint, anyarray, directed boolean, cap bigint, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranearcost | text, anyarray, bigint, directed boolean, cap bigint, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstravia | text, anyarray, directed boolean, strict boolean, u_turn_on_edge boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | pgr_drivingdistance | text, bigint, double precision, directed boolean, OUT seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_drivingdistance | text, anyarray, double precision, directed boolean, equicost boolean, OUT seq integer, OUT from_v bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edgecoloring | text, OUT edge_id bigint, OUT color_id bigint | SETOF record - pgrouting | public | pgr_edgedisjointpaths | text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edgedisjointpaths | text, text, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edgedisjointpaths | text, bigint, bigint, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edgedisjointpaths | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edgedisjointpaths | text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edmondskarp | text, anyarray, anyarray, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_edmondskarp | text, text, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_edmondskarp | text, bigint, anyarray, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_edmondskarp | text, bigint, bigint, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_edmondskarp | text, anyarray, bigint, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_edwardmoore | text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edwardmoore | text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edwardmoore | text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edwardmoore | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edwardmoore | text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_extractvertices | text, dryrun boolean, OUT id bigint, OUT in_edges bigint[], OUT out_edges bigint[], OUT x double precision, OUT y double precision, OUT geom geometry | SETOF record - pgrouting | public | pgr_findcloseedges | text, geometry[], double precision, cap integer, partial boolean, dryrun boolean, OUT edge_id bigint, OUT fraction double precision, OUT side character, OUT distance double precision, OUT geom geometry, OUT edge geometry | SETOF record - pgrouting | public | pgr_findcloseedges | text, geometry, double precision, cap integer, partial boolean, dryrun boolean, OUT edge_id bigint, OUT fraction double precision, OUT side character, OUT distance double precision, OUT geom geometry, OUT edge geometry | SETOF record - pgrouting | public | pgr_floydwarshall | text, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_full_version | OUT version text, OUT build_type text, OUT compile_date text, OUT library text, OUT system text, OUT postgresql text, OUT compiler text, OUT boost text, OUT hash text | record - pgrouting | public | pgr_hawickcircuits | text, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_isplanar | text | boolean - pgrouting | public | pgr_johnson | text, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskal | text, OUT edge bigint, OUT cost double precision | SETOF record - pgrouting | public | pgr_kruskalbfs | text, anyarray, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskalbfs | text, bigint, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskaldd | text, bigint, double precision, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskaldd | text, bigint, numeric, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskaldd | text, anyarray, double precision, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskaldd | text, anyarray, numeric, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskaldfs | text, anyarray, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskaldfs | text, bigint, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_ksp | text, bigint, bigint, integer, directed boolean, heap_paths boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_lengauertarjandominatortree | text, bigint, OUT seq integer, OUT vertex_id bigint, OUT idom bigint | SETOF record - pgrouting | public | pgr_linegraph | text, directed boolean, OUT seq integer, OUT source bigint, OUT target bigint, OUT cost double precision, OUT reverse_cost double precision | SETOF record - pgrouting | public | pgr_linegraphfull | text, OUT seq integer, OUT source bigint, OUT target bigint, OUT cost double precision, OUT edge bigint | SETOF record - pgrouting | public | pgr_makeconnected | text, OUT seq bigint, OUT start_vid bigint, OUT end_vid bigint | SETOF record - pgrouting | public | pgr_maxcardinalitymatch | text, directed boolean, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint | SETOF record - pgrouting | public | pgr_maxcardinalitymatch | text, OUT edge bigint | SETOF bigint - pgrouting | public | pgr_maxflow | text, anyarray, anyarray | bigint - pgrouting | public | pgr_maxflow | text, text | bigint - pgrouting | public | pgr_maxflow | text, bigint, anyarray | bigint - pgrouting | public | pgr_maxflow | text, anyarray, bigint | bigint - pgrouting | public | pgr_maxflow | text, bigint, bigint | bigint - pgrouting | public | pgr_maxflowmincost | text, text, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_maxflowmincost | text, bigint, anyarray, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_maxflowmincost | text, anyarray, bigint, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_maxflowmincost | text, anyarray, anyarray, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_maxflowmincost | text, bigint, bigint, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_maxflowmincost_cost | text, anyarray, anyarray | double precision - pgrouting | public | pgr_maxflowmincost_cost | text, text | double precision - pgrouting | public | pgr_maxflowmincost_cost | text, bigint, anyarray | double precision - pgrouting | public | pgr_maxflowmincost_cost | text, anyarray, bigint | double precision - pgrouting | public | pgr_maxflowmincost_cost | text, bigint, bigint | double precision - pgrouting | public | pgr_nodenetwork | text, double precision, id text, the_geom text, table_ending text, rows_where text, outall boolean | text - pgrouting | public | pgr_pickdeliver | text, text, text, factor double precision, max_cycles integer, initial_sol integer, OUT seq integer, OUT vehicle_seq integer, OUT vehicle_id bigint, OUT stop_seq integer, OUT stop_type integer, OUT stop_id bigint, OUT order_id bigint, OUT cargo double precision, OUT travel_time double precision, OUT arrival_time double precision, OUT wait_time double precision, OUT service_time double precision, OUT departure_time double precision | SETOF record - pgrouting | public | pgr_pickdelivereuclidean | text, text, factor double precision, max_cycles integer, initial_sol integer, OUT seq integer, OUT vehicle_seq integer, OUT vehicle_id bigint, OUT stop_seq integer, OUT stop_type integer, OUT order_id bigint, OUT cargo double precision, OUT travel_time double precision, OUT arrival_time double precision, OUT wait_time double precision, OUT service_time double precision, OUT departure_time double precision | SETOF record - pgrouting | public | pgr_prim | text, OUT edge bigint, OUT cost double precision | SETOF record - pgrouting | public | pgr_primbfs | text, anyarray, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primbfs | text, bigint, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primdd | text, bigint, double precision, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primdd | text, bigint, numeric, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primdd | text, anyarray, double precision, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primdd | text, anyarray, numeric, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primdfs | text, anyarray, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primdfs | text, bigint, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_pushrelabel | text, anyarray, anyarray, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_pushrelabel | text, text, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_pushrelabel | text, bigint, anyarray, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_pushrelabel | text, bigint, bigint, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_pushrelabel | text, anyarray, bigint, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_sequentialvertexcoloring | text, OUT vertex_id bigint, OUT color_id bigint | SETOF record - pgrouting | public | pgr_stoerwagner | text, OUT seq integer, OUT edge bigint, OUT cost double precision, OUT mincut double precision | SETOF record - pgrouting | public | pgr_strongcomponents | text, OUT seq bigint, OUT component bigint, OUT node bigint | SETOF record - pgrouting | public | pgr_topologicalsort | text, OUT seq integer, OUT sorted_v bigint | SETOF record - pgrouting | public | pgr_transitiveclosure | text, OUT seq integer, OUT vid bigint, OUT target_array bigint[] | SETOF record - pgrouting | public | pgr_trsp | text, text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp | text, text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp | text, text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp | text, text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp | text, integer, double precision, integer, double precision, boolean, boolean, turn_restrict_sql text, OUT seq integer, OUT id1 integer, OUT id2 integer, OUT cost double precision | SETOF record - pgrouting | public | pgr_trsp | text, integer, integer, boolean, boolean, restrictions_sql text, OUT seq integer, OUT id1 integer, OUT id2 integer, OUT cost double precision | SETOF record - pgrouting | public | pgr_trsp | text, text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp_withpoints | text, text, text, anyarray, bigint, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp_withpoints | text, text, text, bigint, anyarray, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp_withpoints | text, text, text, anyarray, anyarray, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp_withpoints | text, text, text, bigint, bigint, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp_withpoints | text, text, text, text, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trspvia | text, text, anyarray, directed boolean, strict boolean, u_turn_on_edge boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | pgr_trspvia_withpoints | text, text, text, anyarray, directed boolean, strict boolean, u_turn_on_edge boolean, driving_side character, details boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | pgr_trspviaedges | text, integer[], double precision[], boolean, boolean, turn_restrict_sql text, OUT seq integer, OUT id1 integer, OUT id2 integer, OUT id3 integer, OUT cost double precision | SETOF record - pgrouting | public | pgr_trspviavertices | text, anyarray, boolean, boolean, restrictions_sql text, OUT seq integer, OUT id1 integer, OUT id2 integer, OUT id3 integer, OUT cost double precision | SETOF record - pgrouting | public | pgr_tsp | text, start_id bigint, end_id bigint, max_processing_time double precision, tries_per_temperature integer, max_changes_per_temperature integer, max_consecutive_non_changes integer, initial_temperature double precision, final_temperature double precision, cooling_factor double precision, randomize boolean, OUT seq integer, OUT node bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_tspeuclidean | text, start_id bigint, end_id bigint, max_processing_time double precision, tries_per_temperature integer, max_changes_per_temperature integer, max_consecutive_non_changes integer, initial_temperature double precision, final_temperature double precision, cooling_factor double precision, randomize boolean, OUT seq integer, OUT node bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_turnrestrictedpath | text, text, bigint, bigint, integer, directed boolean, heap_paths boolean, stop_on_first boolean, strict boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_version | | text - pgrouting | public | pgr_vrponedepot | text, text, text, integer, OUT oid integer, OUT opos integer, OUT vid integer, OUT tarrival integer, OUT tdepart integer | SETOF record - pgrouting | public | pgr_withpoints | text, text, anyarray, bigint, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_pid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpoints | text, text, bigint, anyarray, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT end_pid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpoints | text, text, text, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_pid bigint, OUT end_pid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpoints | text, text, bigint, bigint, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpoints | text, text, anyarray, anyarray, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_pid bigint, OUT end_pid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointscost | text, text, text, directed boolean, driving_side character, OUT start_pid bigint, OUT end_pid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointscost | text, text, bigint, bigint, directed boolean, driving_side character, OUT start_pid bigint, OUT end_pid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointscost | text, text, anyarray, anyarray, directed boolean, driving_side character, OUT start_pid bigint, OUT end_pid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointscost | text, text, anyarray, bigint, directed boolean, driving_side character, OUT start_pid bigint, OUT end_pid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointscost | text, text, bigint, anyarray, directed boolean, driving_side character, OUT start_pid bigint, OUT end_pid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointscostmatrix | text, text, anyarray, directed boolean, driving_side character, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointsdd | text, text, bigint, double precision, directed boolean, driving_side character, details boolean, OUT seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointsdd | text, text, anyarray, double precision, directed boolean, driving_side character, details boolean, equicost boolean, OUT seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointsksp | text, text, bigint, bigint, integer, directed boolean, heap_paths boolean, driving_side character, details boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointsvia | text, text, anyarray, directed boolean, strict boolean, u_turn_on_edge boolean, driving_side character, details boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrowlocks | public | pgrowlocks | relname text, OUT locked_row tid, OUT locker xid, OUT multi boolean, OUT xids xid[], OUT modes text[], OUT pids integer[] | SETOF record - pgsodium | pgsodium | create_key | key_type pgsodium.key_type, name text, raw_key bytea, raw_key_nonce bytea, parent_key uuid, key_context bytea, expires timestamp with time zone, associated_data text | pgsodium.valid_key - pgsodium | pgsodium | create_mask_view | relid oid, debug boolean | void - pgsodium | pgsodium | create_mask_view | relid oid, subid integer, debug boolean | void - pgsodium | pgsodium | crypto_aead_det_decrypt | message bytea, additional bytea, key_uuid uuid, nonce bytea | bytea - pgsodium | pgsodium | crypto_aead_det_decrypt | message bytea, additional bytea, key_id bigint, context bytea, nonce bytea | bytea - pgsodium | pgsodium | crypto_aead_det_decrypt | message bytea, additional bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_aead_det_decrypt | ciphertext bytea, additional bytea, key bytea, nonce bytea | bytea - pgsodium | pgsodium | crypto_aead_det_encrypt | message bytea, additional bytea, key_uuid uuid, nonce bytea | bytea - pgsodium | pgsodium | crypto_aead_det_encrypt | message bytea, additional bytea, key_id bigint, context bytea, nonce bytea | bytea - pgsodium | pgsodium | crypto_aead_det_encrypt | message bytea, additional bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_aead_det_encrypt | message bytea, additional bytea, key bytea, nonce bytea | bytea - pgsodium | pgsodium | crypto_aead_det_keygen | | bytea - pgsodium | pgsodium | crypto_aead_det_noncegen | | bytea - pgsodium | pgsodium | crypto_aead_ietf_decrypt | message bytea, additional bytea, nonce bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_aead_ietf_decrypt | message bytea, additional bytea, nonce bytea, key bytea | bytea - pgsodium | pgsodium | crypto_aead_ietf_decrypt | message bytea, additional bytea, nonce bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_aead_ietf_encrypt | message bytea, additional bytea, nonce bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_aead_ietf_encrypt | message bytea, additional bytea, nonce bytea, key bytea | bytea - pgsodium | pgsodium | crypto_aead_ietf_encrypt | message bytea, additional bytea, nonce bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_aead_ietf_keygen | | bytea - pgsodium | pgsodium | crypto_aead_ietf_noncegen | | bytea - pgsodium | pgsodium | crypto_auth | message bytea, key bytea | bytea - pgsodium | pgsodium | crypto_auth | message bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_auth | message bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_auth_hmacsha256 | message bytea, secret bytea | bytea - pgsodium | pgsodium | crypto_auth_hmacsha256 | message bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_auth_hmacsha256 | message bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_auth_hmacsha256_keygen | | bytea - pgsodium | pgsodium | crypto_auth_hmacsha256_verify | hash bytea, message bytea, key_id bigint, context bytea | boolean - pgsodium | pgsodium | crypto_auth_hmacsha256_verify | signature bytea, message bytea, key_uuid uuid | boolean - pgsodium | pgsodium | crypto_auth_hmacsha256_verify | hash bytea, message bytea, secret bytea | boolean - pgsodium | pgsodium | crypto_auth_hmacsha512 | message bytea, secret bytea | bytea - pgsodium | pgsodium | crypto_auth_hmacsha512 | message bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_auth_hmacsha512 | message bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_auth_hmacsha512_keygen | | bytea - pgsodium | pgsodium | crypto_auth_hmacsha512_verify | hash bytea, message bytea, key_id bigint, context bytea | boolean - pgsodium | pgsodium | crypto_auth_hmacsha512_verify | signature bytea, message bytea, key_uuid uuid | boolean - pgsodium | pgsodium | crypto_auth_hmacsha512_verify | hash bytea, message bytea, secret bytea | boolean - pgsodium | pgsodium | crypto_auth_keygen | | bytea - pgsodium | pgsodium | crypto_auth_verify | mac bytea, message bytea, key_uuid uuid | boolean - pgsodium | pgsodium | crypto_auth_verify | mac bytea, message bytea, key bytea | boolean - pgsodium | pgsodium | crypto_auth_verify | mac bytea, message bytea, key_id bigint, context bytea | boolean - pgsodium | pgsodium | crypto_box | message bytea, nonce bytea, public bytea, secret bytea | bytea - pgsodium | pgsodium | crypto_box_new_keypair | | pgsodium.crypto_box_keypair - pgsodium | pgsodium | crypto_box_new_seed | | bytea - pgsodium | pgsodium | crypto_box_noncegen | | bytea - pgsodium | pgsodium | crypto_box_open | ciphertext bytea, nonce bytea, public bytea, secret bytea | bytea - pgsodium | pgsodium | crypto_box_seal | message bytea, public_key bytea | bytea - pgsodium | pgsodium | crypto_box_seal_open | ciphertext bytea, public_key bytea, secret_key bytea | bytea - pgsodium | pgsodium | crypto_box_seed_new_keypair | seed bytea | pgsodium.crypto_box_keypair - pgsodium | pgsodium | crypto_cmp | text, text | boolean - pgsodium | pgsodium | crypto_generichash | message bytea, key bigint, context bytea | bytea - pgsodium | pgsodium | crypto_generichash | message bytea, key bytea | bytea - pgsodium | pgsodium | crypto_generichash | message bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_generichash_keygen | | bytea - pgsodium | pgsodium | crypto_hash_sha256 | message bytea | bytea - pgsodium | pgsodium | crypto_hash_sha512 | message bytea | bytea - pgsodium | pgsodium | crypto_kdf_derive_from_key | subkey_size integer, subkey_id bigint, context bytea, primary_key uuid | bytea - pgsodium | pgsodium | crypto_kdf_derive_from_key | subkey_size bigint, subkey_id bigint, context bytea, primary_key bytea | bytea - pgsodium | pgsodium | crypto_kdf_keygen | | bytea - pgsodium | pgsodium | crypto_kx_client_session_keys | client_pk bytea, client_sk bytea, server_pk bytea | pgsodium.crypto_kx_session - pgsodium | pgsodium | crypto_kx_new_keypair | | pgsodium.crypto_kx_keypair - pgsodium | pgsodium | crypto_kx_new_seed | | bytea - pgsodium | pgsodium | crypto_kx_seed_new_keypair | seed bytea | pgsodium.crypto_kx_keypair - pgsodium | pgsodium | crypto_kx_server_session_keys | server_pk bytea, server_sk bytea, client_pk bytea | pgsodium.crypto_kx_session - pgsodium | pgsodium | crypto_pwhash | password bytea, salt bytea | bytea - pgsodium | pgsodium | crypto_pwhash_saltgen | | bytea - pgsodium | pgsodium | crypto_pwhash_str | password bytea | bytea - pgsodium | pgsodium | crypto_pwhash_str_verify | hashed_password bytea, password bytea | boolean - pgsodium | pgsodium | crypto_secretbox | message bytea, nonce bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_secretbox | message bytea, nonce bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_secretbox | message bytea, nonce bytea, key bytea | bytea - pgsodium | pgsodium | crypto_secretbox_keygen | | bytea - pgsodium | pgsodium | crypto_secretbox_noncegen | | bytea - pgsodium | pgsodium | crypto_secretbox_open | ciphertext bytea, nonce bytea, key bytea | bytea - pgsodium | pgsodium | crypto_secretbox_open | message bytea, nonce bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_secretbox_open | message bytea, nonce bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_secretstream_keygen | | bytea - pgsodium | pgsodium | crypto_shorthash | message bytea, key bigint, context bytea | bytea - pgsodium | pgsodium | crypto_shorthash | message bytea, key bytea | bytea - pgsodium | pgsodium | crypto_shorthash | message bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_shorthash_keygen | | bytea - pgsodium | pgsodium | crypto_sign | message bytea, key bytea | bytea - pgsodium | pgsodium | crypto_sign_detached | message bytea, key bytea | bytea - pgsodium | pgsodium | crypto_sign_final_create | state bytea, key bytea | bytea - pgsodium | pgsodium | crypto_sign_final_verify | state bytea, signature bytea, key bytea | boolean - pgsodium | pgsodium | crypto_sign_init | | bytea - pgsodium | pgsodium | crypto_sign_new_keypair | | pgsodium.crypto_sign_keypair - pgsodium | pgsodium | crypto_sign_new_seed | | bytea - pgsodium | pgsodium | crypto_sign_open | signed_message bytea, key bytea | bytea - pgsodium | pgsodium | crypto_sign_seed_new_keypair | seed bytea | pgsodium.crypto_sign_keypair - pgsodium | pgsodium | crypto_sign_update | state bytea, message bytea | bytea - pgsodium | pgsodium | crypto_sign_update_agg | message bytea | bytea - pgsodium | pgsodium | crypto_sign_update_agg | state bytea, message bytea | bytea - pgsodium | pgsodium | crypto_sign_update_agg1 | state bytea, message bytea | bytea - pgsodium | pgsodium | crypto_sign_update_agg2 | cur_state bytea, initial_state bytea, message bytea | bytea - pgsodium | pgsodium | crypto_sign_verify_detached | sig bytea, message bytea, key bytea | boolean - pgsodium | pgsodium | crypto_signcrypt_new_keypair | | pgsodium.crypto_signcrypt_keypair - pgsodium | pgsodium | crypto_signcrypt_sign_after | state bytea, sender_sk bytea, ciphertext bytea | bytea - pgsodium | pgsodium | crypto_signcrypt_sign_before | sender bytea, recipient bytea, sender_sk bytea, recipient_pk bytea, additional bytea | pgsodium.crypto_signcrypt_state_key - pgsodium | pgsodium | crypto_signcrypt_verify_after | state bytea, signature bytea, sender_pk bytea, ciphertext bytea | boolean - pgsodium | pgsodium | crypto_signcrypt_verify_before | signature bytea, sender bytea, recipient bytea, additional bytea, sender_pk bytea, recipient_sk bytea | pgsodium.crypto_signcrypt_state_key - pgsodium | pgsodium | crypto_signcrypt_verify_public | signature bytea, sender bytea, recipient bytea, additional bytea, sender_pk bytea, ciphertext bytea | boolean - pgsodium | pgsodium | crypto_stream_xchacha20 | bigint, bytea, bytea | bytea - pgsodium | pgsodium | crypto_stream_xchacha20 | bigint, bytea, bigint, context bytea | bytea - pgsodium | pgsodium | crypto_stream_xchacha20_keygen | | bytea - pgsodium | pgsodium | crypto_stream_xchacha20_noncegen | | bytea - pgsodium | pgsodium | crypto_stream_xchacha20_xor | bytea, bytea, bigint, context bytea | bytea - pgsodium | pgsodium | crypto_stream_xchacha20_xor | bytea, bytea, bytea | bytea - pgsodium | pgsodium | crypto_stream_xchacha20_xor_ic | bytea, bytea, bigint, bigint, context bytea | bytea - pgsodium | pgsodium | crypto_stream_xchacha20_xor_ic | bytea, bytea, bigint, bytea | bytea - pgsodium | pgsodium | decrypted_columns | relid oid | text - pgsodium | pgsodium | derive_key | key_id bigint, key_len integer, context bytea | bytea - pgsodium | pgsodium | disable_security_label_trigger | | void - pgsodium | pgsodium | enable_security_label_trigger | | void - pgsodium | pgsodium | encrypted_column | relid oid, m record | text - pgsodium | pgsodium | encrypted_columns | relid oid | text - pgsodium | pgsodium | get_key_by_id | uuid | pgsodium.valid_key - pgsodium | pgsodium | get_key_by_name | text | pgsodium.valid_key - pgsodium | pgsodium | get_named_keys | filter text | SETOF pgsodium.valid_key - pgsodium | pgsodium | has_mask | role regrole, source_name text | boolean - pgsodium | pgsodium | key_encrypt_secret_raw_key | | trigger - pgsodium | pgsodium | mask_columns | source_relid oid | TABLE(attname name, key_id text, key_id_column text, associated_column text, nonce_column text, format_type text) - pgsodium | pgsodium | mask_role | masked_role regrole, source_name text, view_name text | void - pgsodium | pgsodium | pgsodium_derive | key_id bigint, key_len integer, context bytea | bytea - pgsodium | pgsodium | quote_assoc | text, boolean | text - pgsodium | pgsodium | randombytes_buf | size integer | bytea - pgsodium | pgsodium | randombytes_buf_deterministic | size integer, seed bytea | bytea - pgsodium | pgsodium | randombytes_new_seed | | bytea - pgsodium | pgsodium | randombytes_random | | integer - pgsodium | pgsodium | randombytes_uniform | upper_bound integer | integer - pgsodium | pgsodium | sodium_base642bin | base64 text | bytea - pgsodium | pgsodium | sodium_bin2base64 | bin bytea | text - pgsodium | pgsodium | trg_mask_update | | event_trigger - pgsodium | pgsodium | update_mask | target oid, debug boolean | void - pgsodium | pgsodium | update_masks | debug boolean | void - pgsodium | pgsodium | version | | text - pgstattuple | public | pg_relpages | relname text | bigint - pgstattuple | public | pg_relpages | relname regclass | bigint - pgstattuple | public | pgstatginindex | relname regclass, OUT version integer, OUT pending_pages integer, OUT pending_tuples bigint | record - pgstattuple | public | pgstathashindex | relname regclass, OUT version integer, OUT bucket_pages bigint, OUT overflow_pages bigint, OUT bitmap_pages bigint, OUT unused_pages bigint, OUT live_items bigint, OUT dead_items bigint, OUT free_percent double precision | record - pgstattuple | public | pgstatindex | relname regclass, OUT version integer, OUT tree_level integer, OUT index_size bigint, OUT root_block_no bigint, OUT internal_pages bigint, OUT leaf_pages bigint, OUT empty_pages bigint, OUT deleted_pages bigint, OUT avg_leaf_density double precision, OUT leaf_fragmentation double precision | record - pgstattuple | public | pgstatindex | relname text, OUT version integer, OUT tree_level integer, OUT index_size bigint, OUT root_block_no bigint, OUT internal_pages bigint, OUT leaf_pages bigint, OUT empty_pages bigint, OUT deleted_pages bigint, OUT avg_leaf_density double precision, OUT leaf_fragmentation double precision | record - pgstattuple | public | pgstattuple | reloid regclass, OUT table_len bigint, OUT tuple_count bigint, OUT tuple_len bigint, OUT tuple_percent double precision, OUT dead_tuple_count bigint, OUT dead_tuple_len bigint, OUT dead_tuple_percent double precision, OUT free_space bigint, OUT free_percent double precision | record - pgstattuple | public | pgstattuple | relname text, OUT table_len bigint, OUT tuple_count bigint, OUT tuple_len bigint, OUT tuple_percent double precision, OUT dead_tuple_count bigint, OUT dead_tuple_len bigint, OUT dead_tuple_percent double precision, OUT free_space bigint, OUT free_percent double precision | record - pgstattuple | public | pgstattuple_approx | reloid regclass, OUT table_len bigint, OUT scanned_percent double precision, OUT approx_tuple_count bigint, OUT approx_tuple_len bigint, OUT approx_tuple_percent double precision, OUT dead_tuple_count bigint, OUT dead_tuple_len bigint, OUT dead_tuple_percent double precision, OUT approx_free_space bigint, OUT approx_free_percent double precision | record - pgtap | public | _add | text, integer | integer - pgtap | public | _add | text, integer, text | integer - pgtap | public | _alike | boolean, anyelement, text, text | text - pgtap | public | _ancestor_of | name, name, integer | boolean - pgtap | public | _ancestor_of | name, name, name, name, integer | boolean - pgtap | public | _are | text, name[], name[], text | text - pgtap | public | _areni | text, text[], text[], text | text - pgtap | public | _array_to_sorted_string | name[], text | text - pgtap | public | _assets_are | text, text[], text[], text | text - pgtap | public | _cast_exists | name, name, name, name | boolean - pgtap | public | _cast_exists | name, name | boolean - pgtap | public | _cast_exists | name, name, name | boolean - pgtap | public | _cdi | name, name, anyelement | text - pgtap | public | _cdi | name, name, anyelement, text | text - pgtap | public | _cdi | name, name, name, anyelement, text | text - pgtap | public | _cexists | name, name | boolean - pgtap | public | _cexists | name, name, name | boolean - pgtap | public | _ckeys | name, character | name[] - pgtap | public | _ckeys | name, name, character | name[] - pgtap | public | _cleanup | | boolean - pgtap | public | _cmp_types | oid, name | boolean - pgtap | public | _col_is_null | name, name, name, text, boolean | text - pgtap | public | _col_is_null | name, name, text, boolean | text - pgtap | public | _constraint | name, character, name[], text, text | text - pgtap | public | _constraint | name, name, character, name[], text, text | text - pgtap | public | _contract_on | text | "char" - pgtap | public | _currtest | | integer - pgtap | public | _db_privs | | name[] - pgtap | public | _def_is | text, text, anyelement, text | text - pgtap | public | _definer | name, name, name[] | boolean - pgtap | public | _definer | name, name[] | boolean - pgtap | public | _definer | name | boolean - pgtap | public | _definer | name, name | boolean - pgtap | public | _dexists | name | boolean - pgtap | public | _dexists | name, name | boolean - pgtap | public | _do_ne | text, text, text, text | text - pgtap | public | _docomp | text, text, text, text | text - pgtap | public | _error_diag | text, text, text, text, text, text, text, text, text, text | text - pgtap | public | _expand_context | character | text - pgtap | public | _expand_on | character | text - pgtap | public | _expand_vol | character | text - pgtap | public | _ext_exists | name | boolean - pgtap | public | _ext_exists | name, name | boolean - pgtap | public | _extensions | name | SETOF name - pgtap | public | _extensions | | SETOF name - pgtap | public | _extras | character, name, name[] | name[] - pgtap | public | _extras | character[], name[] | name[] - pgtap | public | _extras | character, name[] | name[] - pgtap | public | _extras | character[], name, name[] | name[] - pgtap | public | _finish | integer, integer, integer, boolean | SETOF text - pgtap | public | _fkexists | name, name, name[] | boolean - pgtap | public | _fkexists | name, name[] | boolean - pgtap | public | _fprivs_are | text, name, name[], text | text - pgtap | public | _func_compare | name, name, boolean, text | text - pgtap | public | _func_compare | name, name, name[], anyelement, anyelement, text | text - pgtap | public | _func_compare | name, name, name[], boolean, text | text - pgtap | public | _func_compare | name, name, anyelement, anyelement, text | text - pgtap | public | _funkargs | name[] | text - pgtap | public | _get | text | integer - pgtap | public | _get_ac_privs | name, text | text[] - pgtap | public | _get_col_ns_type | name, name, name | text - pgtap | public | _get_col_privs | name, text, name | text[] - pgtap | public | _get_col_type | name, name | text - pgtap | public | _get_col_type | name, name, name | text - pgtap | public | _get_context | name, name | "char" - pgtap | public | _get_db_owner | name | name - pgtap | public | _get_db_privs | name, text | text[] - pgtap | public | _get_dtype | name, text, boolean | text - pgtap | public | _get_dtype | name | text - pgtap | public | _get_fdw_privs | name, text | text[] - pgtap | public | _get_func_owner | name, name, name[] | name - pgtap | public | _get_func_owner | name, name[] | name - pgtap | public | _get_func_privs | text, text | text[] - pgtap | public | _get_index_owner | name, name | name - pgtap | public | _get_index_owner | name, name, name | name - pgtap | public | _get_lang_privs | name, text | text[] - pgtap | public | _get_language_owner | name | name - pgtap | public | _get_latest | text | integer[] - pgtap | public | _get_latest | text, integer | integer - pgtap | public | _get_note | integer | text - pgtap | public | _get_note | text | text - pgtap | public | _get_opclass_owner | name | name - pgtap | public | _get_opclass_owner | name, name | name - pgtap | public | _get_rel_owner | character[], name, name | name - pgtap | public | _get_rel_owner | character, name | name - pgtap | public | _get_rel_owner | name | name - pgtap | public | _get_rel_owner | name, name | name - pgtap | public | _get_rel_owner | character[], name | name - pgtap | public | _get_rel_owner | character, name, name | name - pgtap | public | _get_schema_owner | name | name - pgtap | public | _get_schema_privs | name, text | text[] - pgtap | public | _get_sequence_privs | name, text | text[] - pgtap | public | _get_server_privs | name, text | text[] - pgtap | public | _get_table_privs | name, text | text[] - pgtap | public | _get_tablespace_owner | name | name - pgtap | public | _get_tablespaceprivs | name, text | text[] - pgtap | public | _get_type_owner | name | name - pgtap | public | _get_type_owner | name, name | name - pgtap | public | _got_func | name, name, name[] | boolean - pgtap | public | _got_func | name, name[] | boolean - pgtap | public | _got_func | name | boolean - pgtap | public | _got_func | name, name | boolean - pgtap | public | _grolist | name | oid[] - pgtap | public | _has_def | name, name | boolean - pgtap | public | _has_def | name, name, name | boolean - pgtap | public | _has_group | name | boolean - pgtap | public | _has_role | name | boolean - pgtap | public | _has_type | name, name, character[] | boolean - pgtap | public | _has_type | name, character[] | boolean - pgtap | public | _has_user | name | boolean - pgtap | public | _hasc | name, character | boolean - pgtap | public | _hasc | name, name, character | boolean - pgtap | public | _have_index | name, name | boolean - pgtap | public | _have_index | name, name, name | boolean - pgtap | public | _ident_array_to_sorted_string | name[], text | text - pgtap | public | _ident_array_to_string | name[], text | text - pgtap | public | _ikeys | name, name | text[] - pgtap | public | _ikeys | name, name, name | text[] - pgtap | public | _inherited | name | boolean - pgtap | public | _inherited | name, name | boolean - pgtap | public | _is_indexed | name, name, text[] | boolean - pgtap | public | _is_instead | name, name | boolean - pgtap | public | _is_instead | name, name, name | boolean - pgtap | public | _is_schema | name | boolean - pgtap | public | _is_super | name | boolean - pgtap | public | _is_trusted | name | boolean - pgtap | public | _is_verbose | | boolean - pgtap | public | _keys | name, character | SETOF name[] - pgtap | public | _keys | name, name, character | SETOF name[] - pgtap | public | _lang | name, name, name[] | name - pgtap | public | _lang | name, name[] | name - pgtap | public | _lang | name | name - pgtap | public | _lang | name, name | name - pgtap | public | _missing | character, name, name[] | name[] - pgtap | public | _missing | character[], name[] | name[] - pgtap | public | _missing | character, name[] | name[] - pgtap | public | _missing | character[], name, name[] | name[] - pgtap | public | _nosuch | name, name, name[] | text - pgtap | public | _op_exists | name, name, name, name | boolean - pgtap | public | _op_exists | name, name, name, name, name | boolean - pgtap | public | _op_exists | name, name, name | boolean - pgtap | public | _opc_exists | name | boolean - pgtap | public | _opc_exists | name, name | boolean - pgtap | public | _partof | name, name, name, name | boolean - pgtap | public | _partof | name, name | boolean - pgtap | public | _parts | name | SETOF name - pgtap | public | _parts | name, name | SETOF name - pgtap | public | _pg_sv_column_array | oid, smallint[] | name[] - pgtap | public | _pg_sv_table_accessible | oid, oid | boolean - pgtap | public | _pg_sv_type_array | oid[] | name[] - pgtap | public | _prokind | p_oid oid | "char" - pgtap | public | _query | text | text - pgtap | public | _quote_ident_like | text, text | text - pgtap | public | _refine_vol | text | text - pgtap | public | _relcomp | text, text, text, text, text | text - pgtap | public | _relcomp | text, text, text, text | text - pgtap | public | _relcomp | text, anyarray, text, text | text - pgtap | public | _relexists | name | boolean - pgtap | public | _relexists | name, name | boolean - pgtap | public | _relne | text, text, text, text | text - pgtap | public | _relne | text, anyarray, text, text | text - pgtap | public | _returns | name, name, name[] | text - pgtap | public | _returns | name, name[] | text - pgtap | public | _returns | name | text - pgtap | public | _returns | name, name | text - pgtap | public | _rexists | character[], name, name | boolean - pgtap | public | _rexists | character, name | boolean - pgtap | public | _rexists | character[], name | boolean - pgtap | public | _rexists | character, name, name | boolean - pgtap | public | _rule_on | name, name | "char" - pgtap | public | _rule_on | name, name, name | "char" - pgtap | public | _runem | text[], boolean | SETOF text - pgtap | public | _runner | text[], text[], text[], text[], text[] | SETOF text - pgtap | public | _set | text, integer | integer - pgtap | public | _set | integer, integer | integer - pgtap | public | _set | text, integer, text | integer - pgtap | public | _strict | name, name, name[] | boolean - pgtap | public | _strict | name, name[] | boolean - pgtap | public | _strict | name | boolean - pgtap | public | _strict | name, name | boolean - pgtap | public | _table_privs | | name[] - pgtap | public | _temptable | text, text | text - pgtap | public | _temptable | anyarray, text | text - pgtap | public | _temptypes | text | text - pgtap | public | _time_trials | text, integer, numeric | SETOF _time_trial_type - pgtap | public | _tlike | boolean, text, text, text | text - pgtap | public | _todo | | text - pgtap | public | _trig | name, name | boolean - pgtap | public | _trig | name, name, name | boolean - pgtap | public | _type_func | "char", name | boolean - pgtap | public | _type_func | "char", name, name, name[] | boolean - pgtap | public | _type_func | "char", name, name[] | boolean - pgtap | public | _type_func | "char", name, name | boolean - pgtap | public | _types_are | name, name[], text, character[] | text - pgtap | public | _types_are | name[], text, character[] | text - pgtap | public | _unalike | boolean, anyelement, text, text | text - pgtap | public | _vol | name, name, name[] | text - pgtap | public | _vol | name, name[] | text - pgtap | public | _vol | name | text - pgtap | public | _vol | name, name | text - pgtap | public | add_result | boolean, boolean, text, text, text | integer - pgtap | public | alike | anyelement, text | text - pgtap | public | alike | anyelement, text, text | text - pgtap | public | any_column_privs_are | name, name, name, name[], text | text - pgtap | public | any_column_privs_are | name, name, name[] | text - pgtap | public | any_column_privs_are | name, name, name, name[] | text - pgtap | public | any_column_privs_are | name, name, name[], text | text - pgtap | public | bag_eq | text, anyarray, text | text - pgtap | public | bag_eq | text, text | text - pgtap | public | bag_eq | text, text, text | text - pgtap | public | bag_eq | text, anyarray | text - pgtap | public | bag_has | text, text | text - pgtap | public | bag_has | text, text, text | text - pgtap | public | bag_hasnt | text, text | text - pgtap | public | bag_hasnt | text, text, text | text - pgtap | public | bag_ne | text, anyarray, text | text - pgtap | public | bag_ne | text, text | text - pgtap | public | bag_ne | text, text, text | text - pgtap | public | bag_ne | text, anyarray | text - pgtap | public | can | name[] | text - pgtap | public | can | name[], text | text - pgtap | public | can | name, name[], text | text - pgtap | public | can | name, name[] | text - pgtap | public | cast_context_is | name, name, text, text | text - pgtap | public | cast_context_is | name, name, text | text - pgtap | public | casts_are | text[] | text - pgtap | public | casts_are | text[], text | text - pgtap | public | check_test | text, boolean | SETOF text - pgtap | public | check_test | text, boolean, text, text, text, boolean | SETOF text - pgtap | public | check_test | text, boolean, text, text | SETOF text - pgtap | public | check_test | text, boolean, text | SETOF text - pgtap | public | check_test | text, boolean, text, text, text | SETOF text - pgtap | public | cmp_ok | anyelement, text, anyelement | text - pgtap | public | cmp_ok | anyelement, text, anyelement, text | text - pgtap | public | col_default_is | name, name, anyelement | text - pgtap | public | col_default_is | name, name, text, text | text - pgtap | public | col_default_is | name, name, name, text, text | text - pgtap | public | col_default_is | name, name, text | text - pgtap | public | col_default_is | name, name, anyelement, text | text - pgtap | public | col_default_is | name, name, name, anyelement, text | text - pgtap | public | col_has_check | name, name, name, text | text - pgtap | public | col_has_check | name, name[], text | text - pgtap | public | col_has_check | name, name[] | text - pgtap | public | col_has_check | name, name, text | text - pgtap | public | col_has_check | name, name, name[], text | text - pgtap | public | col_has_check | name, name | text - pgtap | public | col_has_default | name, name, name, text | text - pgtap | public | col_has_default | name, name, text | text - pgtap | public | col_has_default | name, name | text - pgtap | public | col_hasnt_default | name, name, name, text | text - pgtap | public | col_hasnt_default | name, name, text | text - pgtap | public | col_hasnt_default | name, name | text - pgtap | public | col_is_fk | name, name, name, text | text - pgtap | public | col_is_fk | name, name[], text | text - pgtap | public | col_is_fk | name, name[] | text - pgtap | public | col_is_fk | name, name, text | text - pgtap | public | col_is_fk | name, name, name[], text | text - pgtap | public | col_is_fk | name, name | text - pgtap | public | col_is_null | table_name name, column_name name, description text | text - pgtap | public | col_is_null | schema_name name, table_name name, column_name name, description text | text - pgtap | public | col_is_pk | name, name, name, text | text - pgtap | public | col_is_pk | name, name[], text | text - pgtap | public | col_is_pk | name, name[] | text - pgtap | public | col_is_pk | name, name, text | text - pgtap | public | col_is_pk | name, name, name[], text | text - pgtap | public | col_is_pk | name, name | text - pgtap | public | col_is_unique | name, name, name, text | text - pgtap | public | col_is_unique | name, name[], text | text - pgtap | public | col_is_unique | name, name, name[] | text - pgtap | public | col_is_unique | name, name[] | text - pgtap | public | col_is_unique | name, name, text | text - pgtap | public | col_is_unique | name, name, name[], text | text - pgtap | public | col_is_unique | name, name | text - pgtap | public | col_is_unique | name, name, name | text - pgtap | public | col_isnt_fk | name, name, name, text | text - pgtap | public | col_isnt_fk | name, name[], text | text - pgtap | public | col_isnt_fk | name, name[] | text - pgtap | public | col_isnt_fk | name, name, text | text - pgtap | public | col_isnt_fk | name, name, name[], text | text - pgtap | public | col_isnt_fk | name, name | text - pgtap | public | col_isnt_pk | name, name, name, text | text - pgtap | public | col_isnt_pk | name, name[], text | text - pgtap | public | col_isnt_pk | name, name[] | text - pgtap | public | col_isnt_pk | name, name, text | text - pgtap | public | col_isnt_pk | name, name, name[], text | text - pgtap | public | col_isnt_pk | name, name | text - pgtap | public | col_not_null | table_name name, column_name name, description text | text - pgtap | public | col_not_null | schema_name name, table_name name, column_name name, description text | text - pgtap | public | col_type_is | name, name, name, text | text - pgtap | public | col_type_is | name, name, text, text | text - pgtap | public | col_type_is | name, name, name, text, text | text - pgtap | public | col_type_is | name, name, name, name, text, text | text - pgtap | public | col_type_is | name, name, text | text - pgtap | public | col_type_is | name, name, name, name, text | text - pgtap | public | collect_tap | VARIADIC text[] | text - pgtap | public | collect_tap | character varying[] | text - pgtap | public | column_privs_are | name, name, name, name[], text | text - pgtap | public | column_privs_are | name, name, name, name, name[] | text - pgtap | public | column_privs_are | name, name, name, name[] | text - pgtap | public | column_privs_are | name, name, name, name, name[], text | text - pgtap | public | columns_are | name, name[], text | text - pgtap | public | columns_are | name, name, name[] | text - pgtap | public | columns_are | name, name[] | text - pgtap | public | columns_are | name, name, name[], text | text - pgtap | public | composite_owner_is | name, name, name, text | text - pgtap | public | composite_owner_is | name, name, text | text - pgtap | public | composite_owner_is | name, name | text - pgtap | public | composite_owner_is | name, name, name | text - pgtap | public | database_privs_are | name, name, name[] | text - pgtap | public | database_privs_are | name, name, name[], text | text - pgtap | public | db_owner_is | name, name, text | text - pgtap | public | db_owner_is | name, name | text - pgtap | public | diag | msg text | text - pgtap | public | diag | VARIADIC text[] | text - pgtap | public | diag | VARIADIC anyarray | text - pgtap | public | diag | msg anyelement | text - pgtap | public | diag_test_name | text | text - pgtap | public | display_oper | name, oid | text - pgtap | public | do_tap | text | SETOF text - pgtap | public | do_tap | name, text | SETOF text - pgtap | public | do_tap | name | SETOF text - pgtap | public | do_tap | | SETOF text - pgtap | public | doesnt_imatch | anyelement, text | text - pgtap | public | doesnt_imatch | anyelement, text, text | text - pgtap | public | doesnt_match | anyelement, text | text - pgtap | public | doesnt_match | anyelement, text, text | text - pgtap | public | domain_type_is | name, text, name, text, text | text - pgtap | public | domain_type_is | text, text | text - pgtap | public | domain_type_is | name, text, text, text | text - pgtap | public | domain_type_is | name, text, text | text - pgtap | public | domain_type_is | text, text, text | text - pgtap | public | domain_type_is | name, text, name, text | text - pgtap | public | domain_type_isnt | name, text, name, text, text | text - pgtap | public | domain_type_isnt | text, text | text - pgtap | public | domain_type_isnt | name, text, text, text | text - pgtap | public | domain_type_isnt | name, text, text | text - pgtap | public | domain_type_isnt | text, text, text | text - pgtap | public | domain_type_isnt | name, text, name, text | text - pgtap | public | domains_are | name[] | text - pgtap | public | domains_are | name[], text | text - pgtap | public | domains_are | name, name[], text | text - pgtap | public | domains_are | name, name[] | text - pgtap | public | enum_has_labels | name, name[], text | text - pgtap | public | enum_has_labels | name, name, name[] | text - pgtap | public | enum_has_labels | name, name[] | text - pgtap | public | enum_has_labels | name, name, name[], text | text - pgtap | public | enums_are | name[] | text - pgtap | public | enums_are | name[], text | text - pgtap | public | enums_are | name, name[], text | text - pgtap | public | enums_are | name, name[] | text - pgtap | public | extensions_are | name[] | text - pgtap | public | extensions_are | name[], text | text - pgtap | public | extensions_are | name, name[], text | text - pgtap | public | extensions_are | name, name[] | text - pgtap | public | fail | text | text - pgtap | public | fail | | text - pgtap | public | fdw_privs_are | name, name, name[] | text - pgtap | public | fdw_privs_are | name, name, name[], text | text - pgtap | public | findfuncs | text | text[] - pgtap | public | findfuncs | text, text | text[] - pgtap | public | findfuncs | name, text, text | text[] - pgtap | public | findfuncs | name, text | text[] - pgtap | public | finish | exception_on_failure boolean | SETOF text - pgtap | public | fk_ok | name, name, name, name, name, text | text - pgtap | public | fk_ok | name, name, name, name, name, name, text | text - pgtap | public | fk_ok | name, name, name, name | text - pgtap | public | fk_ok | name, name, name, name, text | text - pgtap | public | fk_ok | name, name, name[], name, name, name[], text | text - pgtap | public | fk_ok | name, name, name[], name, name, name[] | text - pgtap | public | fk_ok | name, name[], name, name[] | text - pgtap | public | fk_ok | name, name[], name, name[], text | text - pgtap | public | foreign_table_owner_is | name, name, name, text | text - pgtap | public | foreign_table_owner_is | name, name, text | text - pgtap | public | foreign_table_owner_is | name, name | text - pgtap | public | foreign_table_owner_is | name, name, name | text - pgtap | public | foreign_tables_are | name[] | text - pgtap | public | foreign_tables_are | name[], text | text - pgtap | public | foreign_tables_are | name, name[], text | text - pgtap | public | foreign_tables_are | name, name[] | text - pgtap | public | function_lang_is | name, name, name, text | text - pgtap | public | function_lang_is | name, name, text | text - pgtap | public | function_lang_is | name, name[], name, text | text - pgtap | public | function_lang_is | name, name, name[], name | text - pgtap | public | function_lang_is | name, name | text - pgtap | public | function_lang_is | name, name, name | text - pgtap | public | function_lang_is | name, name[], name | text - pgtap | public | function_lang_is | name, name, name[], name, text | text - pgtap | public | function_owner_is | name, name[], name, text | text - pgtap | public | function_owner_is | name, name, name[], name | text - pgtap | public | function_owner_is | name, name[], name | text - pgtap | public | function_owner_is | name, name, name[], name, text | text - pgtap | public | function_privs_are | name, name, name[], name, name[], text | text - pgtap | public | function_privs_are | name, name[], name, name[] | text - pgtap | public | function_privs_are | name, name[], name, name[], text | text - pgtap | public | function_privs_are | name, name, name[], name, name[] | text - pgtap | public | function_returns | name, name, name[], text, text | text - pgtap | public | function_returns | name, name[], text | text - pgtap | public | function_returns | name, name, text, text | text - pgtap | public | function_returns | name, name, text | text - pgtap | public | function_returns | name, text, text | text - pgtap | public | function_returns | name, text | text - pgtap | public | function_returns | name, name, name[], text | text - pgtap | public | function_returns | name, name[], text, text | text - pgtap | public | functions_are | name[] | text - pgtap | public | functions_are | name[], text | text - pgtap | public | functions_are | name, name[], text | text - pgtap | public | functions_are | name, name[] | text - pgtap | public | groups_are | name[] | text - pgtap | public | groups_are | name[], text | text - pgtap | public | has_cast | name, name, name, text | text - pgtap | public | has_cast | name, name, name, name | text - pgtap | public | has_cast | name, name, text | text - pgtap | public | has_cast | name, name, name, name, text | text - pgtap | public | has_cast | name, name | text - pgtap | public | has_cast | name, name, name | text - pgtap | public | has_check | name, name, text | text - pgtap | public | has_check | name, text | text - pgtap | public | has_check | name | text - pgtap | public | has_column | name, name, name, text | text - pgtap | public | has_column | name, name, text | text - pgtap | public | has_column | name, name | text - pgtap | public | has_composite | name, name, text | text - pgtap | public | has_composite | name, text | text - pgtap | public | has_composite | name | text - pgtap | public | has_domain | name, name, text | text - pgtap | public | has_domain | name, text | text - pgtap | public | has_domain | name | text - pgtap | public | has_domain | name, name | text - pgtap | public | has_enum | name, name, text | text - pgtap | public | has_enum | name, text | text - pgtap | public | has_enum | name | text - pgtap | public | has_enum | name, name | text - pgtap | public | has_extension | name, name, text | text - pgtap | public | has_extension | name, text | text - pgtap | public | has_extension | name | text - pgtap | public | has_extension | name, name | text - pgtap | public | has_fk | name, name, text | text - pgtap | public | has_fk | name, text | text - pgtap | public | has_fk | name | text - pgtap | public | has_foreign_table | name, name, text | text - pgtap | public | has_foreign_table | name, text | text - pgtap | public | has_foreign_table | name | text - pgtap | public | has_foreign_table | name, name | text - pgtap | public | has_function | name, name[], text | text - pgtap | public | has_function | name, name, name[] | text - pgtap | public | has_function | name, name[] | text - pgtap | public | has_function | name, name, text | text - pgtap | public | has_function | name, text | text - pgtap | public | has_function | name | text - pgtap | public | has_function | name, name, name[], text | text - pgtap | public | has_function | name, name | text - pgtap | public | has_group | name, text | text - pgtap | public | has_group | name | text - pgtap | public | has_index | name, name, name, text | text - pgtap | public | has_index | name, name, name, name[], text | text - pgtap | public | has_index | name, name, name[] | text - pgtap | public | has_index | name, name, name, name | text - pgtap | public | has_index | name, name, text | text - pgtap | public | has_index | name, name, name, name[] | text - pgtap | public | has_index | name, name, name, name, text | text - pgtap | public | has_index | name, name, name[], text | text - pgtap | public | has_index | name, name | text - pgtap | public | has_index | name, name, name | text - pgtap | public | has_inherited_tables | name, name, text | text - pgtap | public | has_inherited_tables | name, text | text - pgtap | public | has_inherited_tables | name | text - pgtap | public | has_inherited_tables | name, name | text - pgtap | public | has_language | name, text | text - pgtap | public | has_language | name | text - pgtap | public | has_leftop | name, name, name, text | text - pgtap | public | has_leftop | name, name, name, name | text - pgtap | public | has_leftop | name, name, text | text - pgtap | public | has_leftop | name, name, name, name, text | text - pgtap | public | has_leftop | name, name | text - pgtap | public | has_leftop | name, name, name | text - pgtap | public | has_materialized_view | name, name, text | text - pgtap | public | has_materialized_view | name, text | text - pgtap | public | has_materialized_view | name | text - pgtap | public | has_opclass | name, name, text | text - pgtap | public | has_opclass | name, text | text - pgtap | public | has_opclass | name | text - pgtap | public | has_opclass | name, name | text - pgtap | public | has_operator | name, name, name, text | text - pgtap | public | has_operator | name, name, name, name, name, text | text - pgtap | public | has_operator | name, name, name, name | text - pgtap | public | has_operator | name, name, name, name, text | text - pgtap | public | has_operator | name, name, name, name, name | text - pgtap | public | has_operator | name, name, name | text - pgtap | public | has_pk | name, name, text | text - pgtap | public | has_pk | name, text | text - pgtap | public | has_pk | name | text - pgtap | public | has_relation | name, name, text | text - pgtap | public | has_relation | name, text | text - pgtap | public | has_relation | name | text - pgtap | public | has_rightop | name, name, name, text | text - pgtap | public | has_rightop | name, name, name, name | text - pgtap | public | has_rightop | name, name, text | text - pgtap | public | has_rightop | name, name, name, name, text | text - pgtap | public | has_rightop | name, name | text - pgtap | public | has_rightop | name, name, name | text - pgtap | public | has_role | name, text | text - pgtap | public | has_role | name | text - pgtap | public | has_rule | name, name, name, text | text - pgtap | public | has_rule | name, name, text | text - pgtap | public | has_rule | name, name | text - pgtap | public | has_rule | name, name, name | text - pgtap | public | has_schema | name, text | text - pgtap | public | has_schema | name | text - pgtap | public | has_sequence | name, name, text | text - pgtap | public | has_sequence | name, text | text - pgtap | public | has_sequence | name | text - pgtap | public | has_sequence | name, name | text - pgtap | public | has_table | name, name, text | text - pgtap | public | has_table | name, text | text - pgtap | public | has_table | name | text - pgtap | public | has_table | name, name | text - pgtap | public | has_tablespace | name, text, text | text - pgtap | public | has_tablespace | name, text | text - pgtap | public | has_tablespace | name | text - pgtap | public | has_trigger | name, name, name, text | text - pgtap | public | has_trigger | name, name, text | text - pgtap | public | has_trigger | name, name | text - pgtap | public | has_trigger | name, name, name | text - pgtap | public | has_type | name, name, text | text - pgtap | public | has_type | name, text | text - pgtap | public | has_type | name | text - pgtap | public | has_type | name, name | text - pgtap | public | has_unique | text | text - pgtap | public | has_unique | text, text | text - pgtap | public | has_unique | text, text, text | text - pgtap | public | has_user | name, text | text - pgtap | public | has_user | name | text - pgtap | public | has_view | name, name, text | text - pgtap | public | has_view | name, text | text - pgtap | public | has_view | name | text - pgtap | public | has_view | name, name | text - pgtap | public | hasnt_cast | name, name, name, text | text - pgtap | public | hasnt_cast | name, name, name, name | text - pgtap | public | hasnt_cast | name, name, text | text - pgtap | public | hasnt_cast | name, name, name, name, text | text - pgtap | public | hasnt_cast | name, name | text - pgtap | public | hasnt_cast | name, name, name | text - pgtap | public | hasnt_column | name, name, name, text | text - pgtap | public | hasnt_column | name, name, text | text - pgtap | public | hasnt_column | name, name | text - pgtap | public | hasnt_composite | name, name, text | text - pgtap | public | hasnt_composite | name, text | text - pgtap | public | hasnt_composite | name | text - pgtap | public | hasnt_domain | name, name, text | text - pgtap | public | hasnt_domain | name, text | text - pgtap | public | hasnt_domain | name | text - pgtap | public | hasnt_domain | name, name | text - pgtap | public | hasnt_enum | name, name, text | text - pgtap | public | hasnt_enum | name, text | text - pgtap | public | hasnt_enum | name | text - pgtap | public | hasnt_enum | name, name | text - pgtap | public | hasnt_extension | name, name, text | text - pgtap | public | hasnt_extension | name, text | text - pgtap | public | hasnt_extension | name | text - pgtap | public | hasnt_extension | name, name | text - pgtap | public | hasnt_fk | name, name, text | text - pgtap | public | hasnt_fk | name, text | text - pgtap | public | hasnt_fk | name | text - pgtap | public | hasnt_foreign_table | name, name, text | text - pgtap | public | hasnt_foreign_table | name, text | text - pgtap | public | hasnt_foreign_table | name | text - pgtap | public | hasnt_foreign_table | name, name | text - pgtap | public | hasnt_function | name, name[], text | text - pgtap | public | hasnt_function | name, name, name[] | text - pgtap | public | hasnt_function | name, name[] | text - pgtap | public | hasnt_function | name, name, text | text - pgtap | public | hasnt_function | name, text | text - pgtap | public | hasnt_function | name | text - pgtap | public | hasnt_function | name, name, name[], text | text - pgtap | public | hasnt_function | name, name | text - pgtap | public | hasnt_group | name, text | text - pgtap | public | hasnt_group | name | text - pgtap | public | hasnt_index | name, name, name, text | text - pgtap | public | hasnt_index | name, name, text | text - pgtap | public | hasnt_index | name, name | text - pgtap | public | hasnt_index | name, name, name | text - pgtap | public | hasnt_inherited_tables | name, name, text | text - pgtap | public | hasnt_inherited_tables | name, text | text - pgtap | public | hasnt_inherited_tables | name | text - pgtap | public | hasnt_inherited_tables | name, name | text - pgtap | public | hasnt_language | name, text | text - pgtap | public | hasnt_language | name | text - pgtap | public | hasnt_leftop | name, name, name, text | text - pgtap | public | hasnt_leftop | name, name, name, name | text - pgtap | public | hasnt_leftop | name, name, text | text - pgtap | public | hasnt_leftop | name, name, name, name, text | text - pgtap | public | hasnt_leftop | name, name | text - pgtap | public | hasnt_leftop | name, name, name | text - pgtap | public | hasnt_materialized_view | name, name, text | text - pgtap | public | hasnt_materialized_view | name, text | text - pgtap | public | hasnt_materialized_view | name | text - pgtap | public | hasnt_opclass | name, name, text | text - pgtap | public | hasnt_opclass | name, text | text - pgtap | public | hasnt_opclass | name | text - pgtap | public | hasnt_opclass | name, name | text - pgtap | public | hasnt_operator | name, name, name, text | text - pgtap | public | hasnt_operator | name, name, name, name, name, text | text - pgtap | public | hasnt_operator | name, name, name, name | text - pgtap | public | hasnt_operator | name, name, name, name, text | text - pgtap | public | hasnt_operator | name, name, name, name, name | text - pgtap | public | hasnt_operator | name, name, name | text - pgtap | public | hasnt_pk | name, name, text | text - pgtap | public | hasnt_pk | name, text | text - pgtap | public | hasnt_pk | name | text - pgtap | public | hasnt_relation | name, name, text | text - pgtap | public | hasnt_relation | name, text | text - pgtap | public | hasnt_relation | name | text - pgtap | public | hasnt_rightop | name, name, name, text | text - pgtap | public | hasnt_rightop | name, name, name, name | text - pgtap | public | hasnt_rightop | name, name, text | text - pgtap | public | hasnt_rightop | name, name, name, name, text | text - pgtap | public | hasnt_rightop | name, name | text - pgtap | public | hasnt_rightop | name, name, name | text - pgtap | public | hasnt_role | name, text | text - pgtap | public | hasnt_role | name | text - pgtap | public | hasnt_rule | name, name, name, text | text - pgtap | public | hasnt_rule | name, name, text | text - pgtap | public | hasnt_rule | name, name | text - pgtap | public | hasnt_rule | name, name, name | text - pgtap | public | hasnt_schema | name, text | text - pgtap | public | hasnt_schema | name | text - pgtap | public | hasnt_sequence | name, name, text | text - pgtap | public | hasnt_sequence | name, text | text - pgtap | public | hasnt_sequence | name | text - pgtap | public | hasnt_table | name, name, text | text - pgtap | public | hasnt_table | name, text | text - pgtap | public | hasnt_table | name | text - pgtap | public | hasnt_table | name, name | text - pgtap | public | hasnt_tablespace | name, text | text - pgtap | public | hasnt_tablespace | name | text - pgtap | public | hasnt_trigger | name, name, name, text | text - pgtap | public | hasnt_trigger | name, name, text | text - pgtap | public | hasnt_trigger | name, name | text - pgtap | public | hasnt_trigger | name, name, name | text - pgtap | public | hasnt_type | name, name, text | text - pgtap | public | hasnt_type | name, text | text - pgtap | public | hasnt_type | name | text - pgtap | public | hasnt_type | name, name | text - pgtap | public | hasnt_user | name, text | text - pgtap | public | hasnt_user | name | text - pgtap | public | hasnt_view | name, name, text | text - pgtap | public | hasnt_view | name, text | text - pgtap | public | hasnt_view | name | text - pgtap | public | hasnt_view | name, name | text - pgtap | public | ialike | anyelement, text | text - pgtap | public | ialike | anyelement, text, text | text - pgtap | public | imatches | anyelement, text | text - pgtap | public | imatches | anyelement, text, text | text - pgtap | public | in_todo | | boolean - pgtap | public | index_is_primary | name, name, name, text | text - pgtap | public | index_is_primary | name | text - pgtap | public | index_is_primary | name, name | text - pgtap | public | index_is_primary | name, name, name | text - pgtap | public | index_is_type | name, name, name, name | text - pgtap | public | index_is_type | name, name, name, name, text | text - pgtap | public | index_is_type | name, name | text - pgtap | public | index_is_type | name, name, name | text - pgtap | public | index_is_unique | name, name, name, text | text - pgtap | public | index_is_unique | name | text - pgtap | public | index_is_unique | name, name | text - pgtap | public | index_is_unique | name, name, name | text - pgtap | public | index_owner_is | name, name, name, text | text - pgtap | public | index_owner_is | name, name, name, name | text - pgtap | public | index_owner_is | name, name, name, name, text | text - pgtap | public | index_owner_is | name, name, name | text - pgtap | public | indexes_are | name, name[], text | text - pgtap | public | indexes_are | name, name, name[] | text - pgtap | public | indexes_are | name, name[] | text - pgtap | public | indexes_are | name, name, name[], text | text - pgtap | public | is | anyelement, anyelement, text | text - pgtap | public | is | anyelement, anyelement | text - pgtap | public | is_aggregate | name, name[], text | text - pgtap | public | is_aggregate | name, name, name[] | text - pgtap | public | is_aggregate | name, name[] | text - pgtap | public | is_aggregate | name, name, text | text - pgtap | public | is_aggregate | name, text | text - pgtap | public | is_aggregate | name | text - pgtap | public | is_aggregate | name, name, name[], text | text - pgtap | public | is_aggregate | name, name | text - pgtap | public | is_ancestor_of | name, name, name, name, integer, text | text - pgtap | public | is_ancestor_of | name, name, integer | text - pgtap | public | is_ancestor_of | name, name, name, name | text - pgtap | public | is_ancestor_of | name, name, text | text - pgtap | public | is_ancestor_of | name, name, name, name, text | text - pgtap | public | is_ancestor_of | name, name, name, name, integer | text - pgtap | public | is_ancestor_of | name, name | text - pgtap | public | is_ancestor_of | name, name, integer, text | text - pgtap | public | is_clustered | name, name, name, text | text - pgtap | public | is_clustered | name | text - pgtap | public | is_clustered | name, name | text - pgtap | public | is_clustered | name, name, name | text - pgtap | public | is_definer | name, name[], text | text - pgtap | public | is_definer | name, name, name[] | text - pgtap | public | is_definer | name, name[] | text - pgtap | public | is_definer | name, name, text | text - pgtap | public | is_definer | name, text | text - pgtap | public | is_definer | name | text - pgtap | public | is_definer | name, name, name[], text | text - pgtap | public | is_definer | name, name | text - pgtap | public | is_descendent_of | name, name, name, name, integer, text | text - pgtap | public | is_descendent_of | name, name, integer | text - pgtap | public | is_descendent_of | name, name, name, name | text - pgtap | public | is_descendent_of | name, name, text | text - pgtap | public | is_descendent_of | name, name, name, name, text | text - pgtap | public | is_descendent_of | name, name, name, name, integer | text - pgtap | public | is_descendent_of | name, name | text - pgtap | public | is_descendent_of | name, name, integer, text | text - pgtap | public | is_empty | text | text - pgtap | public | is_empty | text, text | text - pgtap | public | is_indexed | name, name, name, text | text - pgtap | public | is_indexed | name, name[], text | text - pgtap | public | is_indexed | name, name, name[] | text - pgtap | public | is_indexed | name, name[] | text - pgtap | public | is_indexed | name, name, name[], text | text - pgtap | public | is_indexed | name, name | text - pgtap | public | is_indexed | name, name, name | text - pgtap | public | is_member_of | name, name[], text | text - pgtap | public | is_member_of | name, name[] | text - pgtap | public | is_member_of | name, name, text | text - pgtap | public | is_member_of | name, name | text - pgtap | public | is_normal_function | name, name[], text | text - pgtap | public | is_normal_function | name, name, name[] | text - pgtap | public | is_normal_function | name, name[] | text - pgtap | public | is_normal_function | name, name, text | text - pgtap | public | is_normal_function | name, text | text - pgtap | public | is_normal_function | name | text - pgtap | public | is_normal_function | name, name, name[], text | text - pgtap | public | is_normal_function | name, name | text - pgtap | public | is_partition_of | name, name, name, name | text - pgtap | public | is_partition_of | name, name, text | text - pgtap | public | is_partition_of | name, name, name, name, text | text - pgtap | public | is_partition_of | name, name | text - pgtap | public | is_partitioned | name, name, text | text - pgtap | public | is_partitioned | name, text | text - pgtap | public | is_partitioned | name | text - pgtap | public | is_partitioned | name, name | text - pgtap | public | is_procedure | name, name[], text | text - pgtap | public | is_procedure | name, name, name[] | text - pgtap | public | is_procedure | name, name[] | text - pgtap | public | is_procedure | name, name, text | text - pgtap | public | is_procedure | name, text | text - pgtap | public | is_procedure | name | text - pgtap | public | is_procedure | name, name, name[], text | text - pgtap | public | is_procedure | name, name | text - pgtap | public | is_strict | name, name[], text | text - pgtap | public | is_strict | name, name, name[] | text - pgtap | public | is_strict | name, name[] | text - pgtap | public | is_strict | name, name, text | text - pgtap | public | is_strict | name, text | text - pgtap | public | is_strict | name | text - pgtap | public | is_strict | name, name, name[], text | text - pgtap | public | is_strict | name, name | text - pgtap | public | is_superuser | name, text | text - pgtap | public | is_superuser | name | text - pgtap | public | is_window | name, name[], text | text - pgtap | public | is_window | name, name, name[] | text - pgtap | public | is_window | name, name[] | text - pgtap | public | is_window | name, name, text | text - pgtap | public | is_window | name, text | text - pgtap | public | is_window | name | text - pgtap | public | is_window | name, name, name[], text | text - pgtap | public | is_window | name, name | text - pgtap | public | isa_ok | anyelement, regtype | text - pgtap | public | isa_ok | anyelement, regtype, text | text - pgtap | public | isnt | anyelement, anyelement, text | text - pgtap | public | isnt | anyelement, anyelement | text - pgtap | public | isnt_aggregate | name, name[], text | text - pgtap | public | isnt_aggregate | name, name, name[] | text - pgtap | public | isnt_aggregate | name, name[] | text - pgtap | public | isnt_aggregate | name, name, text | text - pgtap | public | isnt_aggregate | name, text | text - pgtap | public | isnt_aggregate | name | text - pgtap | public | isnt_aggregate | name, name, name[], text | text - pgtap | public | isnt_aggregate | name, name | text - pgtap | public | isnt_ancestor_of | name, name, name, name, integer, text | text - pgtap | public | isnt_ancestor_of | name, name, integer | text - pgtap | public | isnt_ancestor_of | name, name, name, name | text - pgtap | public | isnt_ancestor_of | name, name, text | text - pgtap | public | isnt_ancestor_of | name, name, name, name, text | text - pgtap | public | isnt_ancestor_of | name, name, name, name, integer | text - pgtap | public | isnt_ancestor_of | name, name | text - pgtap | public | isnt_ancestor_of | name, name, integer, text | text - pgtap | public | isnt_definer | name, name[], text | text - pgtap | public | isnt_definer | name, name, name[] | text - pgtap | public | isnt_definer | name, name[] | text - pgtap | public | isnt_definer | name, name, text | text - pgtap | public | isnt_definer | name, text | text - pgtap | public | isnt_definer | name | text - pgtap | public | isnt_definer | name, name, name[], text | text - pgtap | public | isnt_definer | name, name | text - pgtap | public | isnt_descendent_of | name, name, name, name, integer, text | text - pgtap | public | isnt_descendent_of | name, name, integer | text - pgtap | public | isnt_descendent_of | name, name, name, name | text - pgtap | public | isnt_descendent_of | name, name, text | text - pgtap | public | isnt_descendent_of | name, name, name, name, text | text - pgtap | public | isnt_descendent_of | name, name, name, name, integer | text - pgtap | public | isnt_descendent_of | name, name | text - pgtap | public | isnt_descendent_of | name, name, integer, text | text - pgtap | public | isnt_empty | text | text - pgtap | public | isnt_empty | text, text | text - pgtap | public | isnt_member_of | name, name[], text | text - pgtap | public | isnt_member_of | name, name[] | text - pgtap | public | isnt_member_of | name, name, text | text - pgtap | public | isnt_member_of | name, name | text - pgtap | public | isnt_normal_function | name, name[], text | text - pgtap | public | isnt_normal_function | name, name, name[] | text - pgtap | public | isnt_normal_function | name, name[] | text - pgtap | public | isnt_normal_function | name, name, text | text - pgtap | public | isnt_normal_function | name, text | text - pgtap | public | isnt_normal_function | name | text - pgtap | public | isnt_normal_function | name, name, name[], text | text - pgtap | public | isnt_normal_function | name, name | text - pgtap | public | isnt_partitioned | name, name, text | text - pgtap | public | isnt_partitioned | name, text | text - pgtap | public | isnt_partitioned | name | text - pgtap | public | isnt_partitioned | name, name | text - pgtap | public | isnt_procedure | name, name[], text | text - pgtap | public | isnt_procedure | name, name, name[] | text - pgtap | public | isnt_procedure | name, name[] | text - pgtap | public | isnt_procedure | name, name, text | text - pgtap | public | isnt_procedure | name, text | text - pgtap | public | isnt_procedure | name | text - pgtap | public | isnt_procedure | name, name, name[], text | text - pgtap | public | isnt_procedure | name, name | text - pgtap | public | isnt_strict | name, name[], text | text - pgtap | public | isnt_strict | name, name, name[] | text - pgtap | public | isnt_strict | name, name[] | text - pgtap | public | isnt_strict | name, name, text | text - pgtap | public | isnt_strict | name, text | text - pgtap | public | isnt_strict | name | text - pgtap | public | isnt_strict | name, name, name[], text | text - pgtap | public | isnt_strict | name, name | text - pgtap | public | isnt_superuser | name, text | text - pgtap | public | isnt_superuser | name | text - pgtap | public | isnt_window | name, name[], text | text - pgtap | public | isnt_window | name, name, name[] | text - pgtap | public | isnt_window | name, name[] | text - pgtap | public | isnt_window | name, name, text | text - pgtap | public | isnt_window | name, text | text - pgtap | public | isnt_window | name | text - pgtap | public | isnt_window | name, name, name[], text | text - pgtap | public | isnt_window | name, name | text - pgtap | public | language_is_trusted | name, text | text - pgtap | public | language_is_trusted | name | text - pgtap | public | language_owner_is | name, name, text | text - pgtap | public | language_owner_is | name, name | text - pgtap | public | language_privs_are | name, name, name[] | text - pgtap | public | language_privs_are | name, name, name[], text | text - pgtap | public | languages_are | name[] | text - pgtap | public | languages_are | name[], text | text - pgtap | public | lives_ok | text | text - pgtap | public | lives_ok | text, text | text - pgtap | public | matches | anyelement, text | text - pgtap | public | matches | anyelement, text, text | text - pgtap | public | materialized_view_owner_is | name, name, name, text | text - pgtap | public | materialized_view_owner_is | name, name, text | text - pgtap | public | materialized_view_owner_is | name, name | text - pgtap | public | materialized_view_owner_is | name, name, name | text - pgtap | public | materialized_views_are | name[] | text - pgtap | public | materialized_views_are | name[], text | text - pgtap | public | materialized_views_are | name, name[], text | text - pgtap | public | materialized_views_are | name, name[] | text - pgtap | public | no_plan | | SETOF boolean - pgtap | public | num_failed | | integer - pgtap | public | ok | boolean | text - pgtap | public | ok | boolean, text | text - pgtap | public | opclass_owner_is | name, name, name, text | text - pgtap | public | opclass_owner_is | name, name, text | text - pgtap | public | opclass_owner_is | name, name | text - pgtap | public | opclass_owner_is | name, name, name | text - pgtap | public | opclasses_are | name[] | text - pgtap | public | opclasses_are | name[], text | text - pgtap | public | opclasses_are | name, name[], text | text - pgtap | public | opclasses_are | name, name[] | text - pgtap | public | operators_are | name, text[] | text - pgtap | public | operators_are | text[] | text - pgtap | public | operators_are | text[], text | text - pgtap | public | operators_are | name, text[], text | text - pgtap | public | os_name | | text - pgtap | public | partitions_are | name, name[], text | text - pgtap | public | partitions_are | name, name, name[] | text - pgtap | public | partitions_are | name, name[] | text - pgtap | public | partitions_are | name, name, name[], text | text - pgtap | public | pass | text | text - pgtap | public | pass | | text - pgtap | public | performs_ok | text, numeric, text | text - pgtap | public | performs_ok | text, numeric | text - pgtap | public | performs_within | text, numeric, numeric, integer | text - pgtap | public | performs_within | text, numeric, numeric | text - pgtap | public | performs_within | text, numeric, numeric, integer, text | text - pgtap | public | performs_within | text, numeric, numeric, text | text - pgtap | public | pg_version | | text - pgtap | public | pg_version_num | | integer - pgtap | public | pgtap_version | | numeric - pgtap | public | plan | integer | text - pgtap | public | policies_are | name, name[], text | text - pgtap | public | policies_are | name, name, name[] | text - pgtap | public | policies_are | name, name[] | text - pgtap | public | policies_are | name, name, name[], text | text - pgtap | public | policy_cmd_is | name, name, name, text | text - pgtap | public | policy_cmd_is | name, name, text, text | text - pgtap | public | policy_cmd_is | name, name, name, text, text | text - pgtap | public | policy_cmd_is | name, name, text | text - pgtap | public | policy_roles_are | name, name, name, name[], text | text - pgtap | public | policy_roles_are | name, name, name[] | text - pgtap | public | policy_roles_are | name, name, name, name[] | text - pgtap | public | policy_roles_are | name, name, name[], text | text - pgtap | public | relation_owner_is | name, name, name, text | text - pgtap | public | relation_owner_is | name, name, text | text - pgtap | public | relation_owner_is | name, name | text - pgtap | public | relation_owner_is | name, name, name | text - pgtap | public | results_eq | text, refcursor | text - pgtap | public | results_eq | text, anyarray, text | text - pgtap | public | results_eq | text, text | text - pgtap | public | results_eq | text, refcursor, text | text - pgtap | public | results_eq | refcursor, anyarray | text - pgtap | public | results_eq | refcursor, anyarray, text | text - pgtap | public | results_eq | text, text, text | text - pgtap | public | results_eq | text, anyarray | text - pgtap | public | results_eq | refcursor, refcursor, text | text - pgtap | public | results_eq | refcursor, text, text | text - pgtap | public | results_eq | refcursor, text | text - pgtap | public | results_eq | refcursor, refcursor | text - pgtap | public | results_ne | text, refcursor | text - pgtap | public | results_ne | text, anyarray, text | text - pgtap | public | results_ne | text, text | text - pgtap | public | results_ne | text, refcursor, text | text - pgtap | public | results_ne | refcursor, anyarray | text - pgtap | public | results_ne | refcursor, anyarray, text | text - pgtap | public | results_ne | text, text, text | text - pgtap | public | results_ne | text, anyarray | text - pgtap | public | results_ne | refcursor, refcursor, text | text - pgtap | public | results_ne | refcursor, text, text | text - pgtap | public | results_ne | refcursor, text | text - pgtap | public | results_ne | refcursor, refcursor | text - pgtap | public | roles_are | name[] | text - pgtap | public | roles_are | name[], text | text - pgtap | public | row_eq | text, anyelement | text - pgtap | public | row_eq | text, anyelement, text | text - pgtap | public | rule_is_instead | name, name, name, text | text - pgtap | public | rule_is_instead | name, name, text | text - pgtap | public | rule_is_instead | name, name | text - pgtap | public | rule_is_instead | name, name, name | text - pgtap | public | rule_is_on | name, name, name, text | text - pgtap | public | rule_is_on | name, name, text, text | text - pgtap | public | rule_is_on | name, name, name, text, text | text - pgtap | public | rule_is_on | name, name, text | text - pgtap | public | rules_are | name, name[], text | text - pgtap | public | rules_are | name, name, name[] | text - pgtap | public | rules_are | name, name[] | text - pgtap | public | rules_are | name, name, name[], text | text - pgtap | public | runtests | text | SETOF text - pgtap | public | runtests | name, text | SETOF text - pgtap | public | runtests | name | SETOF text - pgtap | public | runtests | | SETOF text - pgtap | public | schema_owner_is | name, name, text | text - pgtap | public | schema_owner_is | name, name | text - pgtap | public | schema_privs_are | name, name, name[] | text - pgtap | public | schema_privs_are | name, name, name[], text | text - pgtap | public | schemas_are | name[] | text - pgtap | public | schemas_are | name[], text | text - pgtap | public | sequence_owner_is | name, name, name, text | text - pgtap | public | sequence_owner_is | name, name, text | text - pgtap | public | sequence_owner_is | name, name | text - pgtap | public | sequence_owner_is | name, name, name | text - pgtap | public | sequence_privs_are | name, name, name, name[], text | text - pgtap | public | sequence_privs_are | name, name, name[] | text - pgtap | public | sequence_privs_are | name, name, name, name[] | text - pgtap | public | sequence_privs_are | name, name, name[], text | text - pgtap | public | sequences_are | name[] | text - pgtap | public | sequences_are | name[], text | text - pgtap | public | sequences_are | name, name[], text | text - pgtap | public | sequences_are | name, name[] | text - pgtap | public | server_privs_are | name, name, name[] | text - pgtap | public | server_privs_are | name, name, name[], text | text - pgtap | public | set_eq | text, anyarray, text | text - pgtap | public | set_eq | text, text | text - pgtap | public | set_eq | text, text, text | text - pgtap | public | set_eq | text, anyarray | text - pgtap | public | set_has | text, text | text - pgtap | public | set_has | text, text, text | text - pgtap | public | set_hasnt | text, text | text - pgtap | public | set_hasnt | text, text, text | text - pgtap | public | set_ne | text, anyarray, text | text - pgtap | public | set_ne | text, text | text - pgtap | public | set_ne | text, text, text | text - pgtap | public | set_ne | text, anyarray | text - pgtap | public | skip | integer | text - pgtap | public | skip | text | text - pgtap | public | skip | why text, how_many integer | text - pgtap | public | skip | integer, text | text - pgtap | public | table_owner_is | name, name, name, text | text - pgtap | public | table_owner_is | name, name, text | text - pgtap | public | table_owner_is | name, name | text - pgtap | public | table_owner_is | name, name, name | text - pgtap | public | table_privs_are | name, name, name, name[], text | text - pgtap | public | table_privs_are | name, name, name[] | text - pgtap | public | table_privs_are | name, name, name, name[] | text - pgtap | public | table_privs_are | name, name, name[], text | text - pgtap | public | tables_are | name[] | text - pgtap | public | tables_are | name[], text | text - pgtap | public | tables_are | name, name[], text | text - pgtap | public | tables_are | name, name[] | text - pgtap | public | tablespace_owner_is | name, name, text | text - pgtap | public | tablespace_owner_is | name, name | text - pgtap | public | tablespace_privs_are | name, name, name[] | text - pgtap | public | tablespace_privs_are | name, name, name[], text | text - pgtap | public | tablespaces_are | name[] | text - pgtap | public | tablespaces_are | name[], text | text - pgtap | public | throws_ilike | text, text | text - pgtap | public | throws_ilike | text, text, text | text - pgtap | public | throws_imatching | text, text | text - pgtap | public | throws_imatching | text, text, text | text - pgtap | public | throws_like | text, text | text - pgtap | public | throws_like | text, text, text | text - pgtap | public | throws_matching | text, text | text - pgtap | public | throws_matching | text, text, text | text - pgtap | public | throws_ok | text | text - pgtap | public | throws_ok | text, integer | text - pgtap | public | throws_ok | text, text | text - pgtap | public | throws_ok | text, character, text, text | text - pgtap | public | throws_ok | text, text, text | text - pgtap | public | throws_ok | text, integer, text, text | text - pgtap | public | throws_ok | text, integer, text | text - pgtap | public | todo | how_many integer, why text | SETOF boolean - pgtap | public | todo | why text, how_many integer | SETOF boolean - pgtap | public | todo | why text | SETOF boolean - pgtap | public | todo | how_many integer | SETOF boolean - pgtap | public | todo_end | | SETOF boolean - pgtap | public | todo_start | text | SETOF boolean - pgtap | public | todo_start | | SETOF boolean - pgtap | public | trigger_is | name, name, name, text | text - pgtap | public | trigger_is | name, name, name, name, name, text | text - pgtap | public | trigger_is | name, name, name, name, name | text - pgtap | public | trigger_is | name, name, name | text - pgtap | public | triggers_are | name, name[], text | text - pgtap | public | triggers_are | name, name, name[] | text - pgtap | public | triggers_are | name, name[] | text - pgtap | public | triggers_are | name, name, name[], text | text - pgtap | public | type_owner_is | name, name, name, text | text - pgtap | public | type_owner_is | name, name, text | text - pgtap | public | type_owner_is | name, name | text - pgtap | public | type_owner_is | name, name, name | text - pgtap | public | types_are | name[] | text - pgtap | public | types_are | name[], text | text - pgtap | public | types_are | name, name[], text | text - pgtap | public | types_are | name, name[] | text - pgtap | public | unalike | anyelement, text | text - pgtap | public | unalike | anyelement, text, text | text - pgtap | public | unialike | anyelement, text | text - pgtap | public | unialike | anyelement, text, text | text - pgtap | public | users_are | name[] | text - pgtap | public | users_are | name[], text | text - pgtap | public | view_owner_is | name, name, name, text | text - pgtap | public | view_owner_is | name, name, text | text - pgtap | public | view_owner_is | name, name | text - pgtap | public | view_owner_is | name, name, name | text - pgtap | public | views_are | name[] | text - pgtap | public | views_are | name[], text | text - pgtap | public | views_are | name, name[], text | text - pgtap | public | views_are | name, name[] | text - pgtap | public | volatility_is | name, name, name[], text, text | text - pgtap | public | volatility_is | name, name[], text | text - pgtap | public | volatility_is | name, name, text, text | text - pgtap | public | volatility_is | name, name, text | text - pgtap | public | volatility_is | name, text, text | text - pgtap | public | volatility_is | name, text | text - pgtap | public | volatility_is | name, name, name[], text | text - pgtap | public | volatility_is | name, name[], text, text | text - plcoffee | pg_catalog | plcoffee_call_handler | | language_handler - plcoffee | pg_catalog | plcoffee_call_validator | oid | void - plcoffee | pg_catalog | plcoffee_inline_handler | internal | void - plls | pg_catalog | plls_call_handler | | language_handler - plls | pg_catalog | plls_call_validator | oid | void - plls | pg_catalog | plls_inline_handler | internal | void - plpgsql | pg_catalog | plpgsql_call_handler | | language_handler - plpgsql | pg_catalog | plpgsql_inline_handler | internal | void - plpgsql | pg_catalog | plpgsql_validator | oid | void - plpgsql_check | public | __plpgsql_show_dependency_tb | funcoid regprocedure, relid regclass, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype | TABLE(type text, oid oid, schema text, name text, params text) - plpgsql_check | public | __plpgsql_show_dependency_tb | name text, relid regclass, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype | TABLE(type text, oid oid, schema text, name text, params text) - plpgsql_check | public | plpgsql_check_function | funcoid regprocedure, relid regclass, format text, fatal_errors boolean, other_warnings boolean, performance_warnings boolean, extra_warnings boolean, security_warnings boolean, compatibility_warnings boolean, oldtable name, newtable name, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype, without_warnings boolean, all_warnings boolean, use_incomment_options boolean, incomment_options_usage_warning boolean, constant_tracing boolean | SETOF text - plpgsql_check | public | plpgsql_check_function | name text, relid regclass, format text, fatal_errors boolean, other_warnings boolean, performance_warnings boolean, extra_warnings boolean, security_warnings boolean, compatibility_warnings boolean, oldtable name, newtable name, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype, without_warnings boolean, all_warnings boolean, use_incomment_options boolean, incomment_options_usage_warning boolean, constant_tracing boolean | SETOF text - plpgsql_check | public | plpgsql_check_function_tb | funcoid regprocedure, relid regclass, fatal_errors boolean, other_warnings boolean, performance_warnings boolean, extra_warnings boolean, security_warnings boolean, compatibility_warnings boolean, oldtable name, newtable name, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype, without_warnings boolean, all_warnings boolean, use_incomment_options boolean, incomment_options_usage_warning boolean, constant_tracing boolean | TABLE(functionid regproc, lineno integer, statement text, sqlstate text, message text, detail text, hint text, level text, "position" integer, query text, context text) - plpgsql_check | public | plpgsql_check_function_tb | name text, relid regclass, fatal_errors boolean, other_warnings boolean, performance_warnings boolean, extra_warnings boolean, security_warnings boolean, compatibility_warnings boolean, oldtable name, newtable name, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype, without_warnings boolean, all_warnings boolean, use_incomment_options boolean, incomment_options_usage_warning boolean, constant_tracing boolean | TABLE(functionid regproc, lineno integer, statement text, sqlstate text, message text, detail text, hint text, level text, "position" integer, query text, context text) - plpgsql_check | public | plpgsql_check_pragma | VARIADIC name text[] | integer - plpgsql_check | public | plpgsql_check_profiler | enable boolean | boolean - plpgsql_check | public | plpgsql_check_tracer | enable boolean, verbosity text | boolean - plpgsql_check | public | plpgsql_coverage_branches | funcoid regprocedure | double precision - plpgsql_check | public | plpgsql_coverage_branches | name text | double precision - plpgsql_check | public | plpgsql_coverage_statements | funcoid regprocedure | double precision - plpgsql_check | public | plpgsql_coverage_statements | name text | double precision - plpgsql_check | public | plpgsql_profiler_function_statements_tb | funcoid regprocedure | TABLE(stmtid integer, parent_stmtid integer, parent_note text, block_num integer, lineno integer, queryid bigint, exec_stmts bigint, exec_stmts_err bigint, total_time double precision, avg_time double precision, max_time double precision, processed_rows bigint, stmtname text) - plpgsql_check | public | plpgsql_profiler_function_statements_tb | name text | TABLE(stmtid integer, parent_stmtid integer, parent_note text, block_num integer, lineno integer, queryid bigint, exec_stmts bigint, exec_stmts_err bigint, total_time double precision, avg_time double precision, max_time double precision, processed_rows bigint, stmtname text) - plpgsql_check | public | plpgsql_profiler_function_tb | funcoid regprocedure | TABLE(lineno integer, stmt_lineno integer, queryids bigint[], cmds_on_row integer, exec_stmts bigint, exec_stmts_err bigint, total_time double precision, avg_time double precision, max_time double precision[], processed_rows bigint[], source text) - plpgsql_check | public | plpgsql_profiler_function_tb | name text | TABLE(lineno integer, stmt_lineno integer, queryids bigint[], cmds_on_row integer, exec_stmts bigint, exec_stmts_err bigint, total_time double precision, avg_time double precision, max_time double precision[], processed_rows bigint[], source text) - plpgsql_check | public | plpgsql_profiler_functions_all | | TABLE(funcoid regprocedure, exec_count bigint, exec_stmts_err bigint, total_time double precision, avg_time double precision, stddev_time double precision, min_time double precision, max_time double precision) - plpgsql_check | public | plpgsql_profiler_install_fake_queryid_hook | | void - plpgsql_check | public | plpgsql_profiler_remove_fake_queryid_hook | | void - plpgsql_check | public | plpgsql_profiler_reset | funcoid regprocedure | void - plpgsql_check | public | plpgsql_profiler_reset_all | | void - plpgsql_check | public | plpgsql_show_dependency_tb | funcoid regprocedure, relid regclass, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype | TABLE(type text, oid oid, schema text, name text, params text) - plpgsql_check | public | plpgsql_show_dependency_tb | fnname text, relid regclass, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype | TABLE(type text, oid oid, schema text, name text, params text) - plv8 | pg_catalog | plv8_call_handler | | language_handler - plv8 | pg_catalog | plv8_call_validator | oid | void - plv8 | pg_catalog | plv8_info | | json - plv8 | pg_catalog | plv8_inline_handler | internal | void - plv8 | pg_catalog | plv8_reset | | void - plv8 | pg_catalog | plv8_version | | text - postgis | public | _postgis_deprecate | oldname text, newname text, version text | void - postgis | public | _postgis_index_extent | tbl regclass, col text | box2d - postgis | public | _postgis_join_selectivity | regclass, text, regclass, text, text | double precision - postgis | public | _postgis_pgsql_version | | text - postgis | public | _postgis_scripts_pgsql_version | | text - postgis | public | _postgis_selectivity | tbl regclass, att_name text, geom geometry, mode text | double precision - postgis | public | _postgis_stats | tbl regclass, att_name text, text | text - postgis | public | _st_3ddfullywithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | _st_3ddwithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | _st_3dintersects | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_asgml | integer, geometry, integer, integer, text, text | text - postgis | public | _st_asx3d | integer, geometry, integer, integer, text | text - postgis | public | _st_bestsrid | geography | integer - postgis | public | _st_bestsrid | geography, geography | integer - postgis | public | _st_contains | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_containsproperly | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_coveredby | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_coveredby | geog1 geography, geog2 geography | boolean - postgis | public | _st_covers | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_covers | geog1 geography, geog2 geography | boolean - postgis | public | _st_crosses | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_dfullywithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | _st_distancetree | geography, geography, double precision, boolean | double precision - postgis | public | _st_distancetree | geography, geography | double precision - postgis | public | _st_distanceuncached | geography, geography, double precision, boolean | double precision - postgis | public | _st_distanceuncached | geography, geography, boolean | double precision - postgis | public | _st_distanceuncached | geography, geography | double precision - postgis | public | _st_dwithin | geog1 geography, geog2 geography, tolerance double precision, use_spheroid boolean | boolean - postgis | public | _st_dwithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | _st_dwithinuncached | geography, geography, double precision, boolean | boolean - postgis | public | _st_dwithinuncached | geography, geography, double precision | boolean - postgis | public | _st_equals | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_expand | geography, double precision | geography - postgis | public | _st_geomfromgml | text, integer | geometry - postgis | public | _st_intersects | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_linecrossingdirection | line1 geometry, line2 geometry | integer - postgis | public | _st_longestline | geom1 geometry, geom2 geometry | geometry - postgis | public | _st_maxdistance | geom1 geometry, geom2 geometry | double precision - postgis | public | _st_orderingequals | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_overlaps | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_pointoutside | geography | geography - postgis | public | _st_sortablehash | geom geometry | bigint - postgis | public | _st_touches | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_voronoi | g1 geometry, clip geometry, tolerance double precision, return_polygons boolean | geometry - postgis | public | _st_within | geom1 geometry, geom2 geometry | boolean - postgis | public | addauth | text | boolean - postgis | public | addgeometrycolumn | schema_name character varying, table_name character varying, column_name character varying, new_srid integer, new_type character varying, new_dim integer, use_typmod boolean | text - postgis | public | addgeometrycolumn | catalog_name character varying, schema_name character varying, table_name character varying, column_name character varying, new_srid_in integer, new_type character varying, new_dim integer, use_typmod boolean | text - postgis | public | addgeometrycolumn | table_name character varying, column_name character varying, new_srid integer, new_type character varying, new_dim integer, use_typmod boolean | text - postgis | public | box | box3d | box - postgis | public | box | geometry | box - postgis | public | box2d | box3d | box2d - postgis | public | box2d | geometry | box2d - postgis | public | box2d_in | cstring | box2d - postgis | public | box2d_out | box2d | cstring - postgis | public | box2df_in | cstring | box2df - postgis | public | box2df_out | box2df | cstring - postgis | public | box3d | geometry | box3d - postgis | public | box3d | box2d | box3d - postgis | public | box3d_in | cstring | box3d - postgis | public | box3d_out | box3d | cstring - postgis | public | box3dtobox | box3d | box - postgis | public | bytea | geography | bytea - postgis | public | bytea | geometry | bytea - postgis | public | checkauth | text, text | integer - postgis | public | checkauth | text, text, text | integer - postgis | public | checkauthtrigger | | trigger - postgis | public | contains_2d | geometry, box2df | boolean - postgis | public | contains_2d | box2df, geometry | boolean - postgis | public | contains_2d | box2df, box2df | boolean - postgis | public | disablelongtransactions | | text - postgis | public | dropgeometrycolumn | schema_name character varying, table_name character varying, column_name character varying | text - postgis | public | dropgeometrycolumn | table_name character varying, column_name character varying | text - postgis | public | dropgeometrycolumn | catalog_name character varying, schema_name character varying, table_name character varying, column_name character varying | text - postgis | public | dropgeometrytable | table_name character varying | text - postgis | public | dropgeometrytable | schema_name character varying, table_name character varying | text - postgis | public | dropgeometrytable | catalog_name character varying, schema_name character varying, table_name character varying | text - postgis | public | enablelongtransactions | | text - postgis | public | equals | geom1 geometry, geom2 geometry | boolean - postgis | public | find_srid | character varying, character varying, character varying | integer - postgis | public | geog_brin_inclusion_add_value | internal, internal, internal, internal | boolean - postgis | public | geography | bytea | geography - postgis | public | geography | geometry | geography - postgis | public | geography | geography, integer, boolean | geography - postgis | public | geography_analyze | internal | boolean - postgis | public | geography_cmp | geography, geography | integer - postgis | public | geography_distance_knn | geography, geography | double precision - postgis | public | geography_eq | geography, geography | boolean - postgis | public | geography_ge | geography, geography | boolean - postgis | public | geography_gist_compress | internal | internal - postgis | public | geography_gist_consistent | internal, geography, integer | boolean - postgis | public | geography_gist_decompress | internal | internal - postgis | public | geography_gist_distance | internal, geography, integer | double precision - postgis | public | geography_gist_penalty | internal, internal, internal | internal - postgis | public | geography_gist_picksplit | internal, internal | internal - postgis | public | geography_gist_same | box2d, box2d, internal | internal - postgis | public | geography_gist_union | bytea, internal | internal - postgis | public | geography_gt | geography, geography | boolean - postgis | public | geography_in | cstring, oid, integer | geography - postgis | public | geography_le | geography, geography | boolean - postgis | public | geography_lt | geography, geography | boolean - postgis | public | geography_out | geography | cstring - postgis | public | geography_overlaps | geography, geography | boolean - postgis | public | geography_recv | internal, oid, integer | geography - postgis | public | geography_send | geography | bytea - postgis | public | geography_spgist_choose_nd | internal, internal | void - postgis | public | geography_spgist_compress_nd | internal | internal - postgis | public | geography_spgist_config_nd | internal, internal | void - postgis | public | geography_spgist_inner_consistent_nd | internal, internal | void - postgis | public | geography_spgist_leaf_consistent_nd | internal, internal | boolean - postgis | public | geography_spgist_picksplit_nd | internal, internal | void - postgis | public | geography_typmod_in | cstring[] | integer - postgis | public | geography_typmod_out | integer | cstring - postgis | public | geom2d_brin_inclusion_add_value | internal, internal, internal, internal | boolean - postgis | public | geom3d_brin_inclusion_add_value | internal, internal, internal, internal | boolean - postgis | public | geom4d_brin_inclusion_add_value | internal, internal, internal, internal | boolean - postgis | public | geometry | geometry, integer, boolean | geometry - postgis | public | geometry | box3d | geometry - postgis | public | geometry | text | geometry - postgis | public | geometry | point | geometry - postgis | public | geometry | bytea | geometry - postgis | public | geometry | geography | geometry - postgis | public | geometry | path | geometry - postgis | public | geometry | polygon | geometry - postgis | public | geometry | box2d | geometry - postgis | public | geometry_above | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_analyze | internal | boolean - postgis | public | geometry_below | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_cmp | geom1 geometry, geom2 geometry | integer - postgis | public | geometry_contained_3d | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_contains | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_contains_3d | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_contains_nd | geometry, geometry | boolean - postgis | public | geometry_distance_box | geom1 geometry, geom2 geometry | double precision - postgis | public | geometry_distance_centroid | geom1 geometry, geom2 geometry | double precision - postgis | public | geometry_distance_centroid_nd | geometry, geometry | double precision - postgis | public | geometry_distance_cpa | geometry, geometry | double precision - postgis | public | geometry_eq | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_ge | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_gist_compress_2d | internal | internal - postgis | public | geometry_gist_compress_nd | internal | internal - postgis | public | geometry_gist_consistent_2d | internal, geometry, integer | boolean - postgis | public | geometry_gist_consistent_nd | internal, geometry, integer | boolean - postgis | public | geometry_gist_decompress_2d | internal | internal - postgis | public | geometry_gist_decompress_nd | internal | internal - postgis | public | geometry_gist_distance_2d | internal, geometry, integer | double precision - postgis | public | geometry_gist_distance_nd | internal, geometry, integer | double precision - postgis | public | geometry_gist_penalty_2d | internal, internal, internal | internal - postgis | public | geometry_gist_penalty_nd | internal, internal, internal | internal - postgis | public | geometry_gist_picksplit_2d | internal, internal | internal - postgis | public | geometry_gist_picksplit_nd | internal, internal | internal - postgis | public | geometry_gist_same_2d | geom1 geometry, geom2 geometry, internal | internal - postgis | public | geometry_gist_same_nd | geometry, geometry, internal | internal - postgis | public | geometry_gist_sortsupport_2d | internal | void - postgis | public | geometry_gist_union_2d | bytea, internal | internal - postgis | public | geometry_gist_union_nd | bytea, internal | internal - postgis | public | geometry_gt | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_hash | geometry | integer - postgis | public | geometry_in | cstring | geometry - postgis | public | geometry_le | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_left | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_lt | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_out | geometry | cstring - postgis | public | geometry_overabove | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_overbelow | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_overlaps | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_overlaps_3d | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_overlaps_nd | geometry, geometry | boolean - postgis | public | geometry_overleft | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_overright | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_recv | internal | geometry - postgis | public | geometry_right | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_same | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_same_3d | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_same_nd | geometry, geometry | boolean - postgis | public | geometry_send | geometry | bytea - postgis | public | geometry_sortsupport | internal | void - postgis | public | geometry_spgist_choose_2d | internal, internal | void - postgis | public | geometry_spgist_choose_3d | internal, internal | void - postgis | public | geometry_spgist_choose_nd | internal, internal | void - postgis | public | geometry_spgist_compress_2d | internal | internal - postgis | public | geometry_spgist_compress_3d | internal | internal - postgis | public | geometry_spgist_compress_nd | internal | internal - postgis | public | geometry_spgist_config_2d | internal, internal | void - postgis | public | geometry_spgist_config_3d | internal, internal | void - postgis | public | geometry_spgist_config_nd | internal, internal | void - postgis | public | geometry_spgist_inner_consistent_2d | internal, internal | void - postgis | public | geometry_spgist_inner_consistent_3d | internal, internal | void - postgis | public | geometry_spgist_inner_consistent_nd | internal, internal | void - postgis | public | geometry_spgist_leaf_consistent_2d | internal, internal | boolean - postgis | public | geometry_spgist_leaf_consistent_3d | internal, internal | boolean - postgis | public | geometry_spgist_leaf_consistent_nd | internal, internal | boolean - postgis | public | geometry_spgist_picksplit_2d | internal, internal | void - postgis | public | geometry_spgist_picksplit_3d | internal, internal | void - postgis | public | geometry_spgist_picksplit_nd | internal, internal | void - postgis | public | geometry_typmod_in | cstring[] | integer - postgis | public | geometry_typmod_out | integer | cstring - postgis | public | geometry_within | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_within_nd | geometry, geometry | boolean - postgis | public | geometrytype | geography | text - postgis | public | geometrytype | geometry | text - postgis | public | geomfromewkb | bytea | geometry - postgis | public | geomfromewkt | text | geometry - postgis | public | get_proj4_from_srid | integer | text - postgis | public | gettransactionid | | xid - postgis | public | gidx_in | cstring | gidx - postgis | public | gidx_out | gidx | cstring - postgis | public | gserialized_gist_joinsel_2d | internal, oid, internal, smallint | double precision - postgis | public | gserialized_gist_joinsel_nd | internal, oid, internal, smallint | double precision - postgis | public | gserialized_gist_sel_2d | internal, oid, internal, integer | double precision - postgis | public | gserialized_gist_sel_nd | internal, oid, internal, integer | double precision - postgis | public | is_contained_2d | geometry, box2df | boolean - postgis | public | is_contained_2d | box2df, geometry | boolean - postgis | public | is_contained_2d | box2df, box2df | boolean - postgis | public | json | geometry | json - postgis | public | jsonb | geometry | jsonb - postgis | public | lockrow | text, text, text, timestamp without time zone | integer - postgis | public | lockrow | text, text, text, text | integer - postgis | public | lockrow | text, text, text | integer - postgis | public | lockrow | text, text, text, text, timestamp without time zone | integer - postgis | public | longtransactionsenabled | | boolean - postgis | public | overlaps_2d | geometry, box2df | boolean - postgis | public | overlaps_2d | box2df, geometry | boolean - postgis | public | overlaps_2d | box2df, box2df | boolean - postgis | public | overlaps_geog | gidx, gidx | boolean - postgis | public | overlaps_geog | geography, gidx | boolean - postgis | public | overlaps_geog | gidx, geography | boolean - postgis | public | overlaps_nd | gidx, gidx | boolean - postgis | public | overlaps_nd | geometry, gidx | boolean - postgis | public | overlaps_nd | gidx, geometry | boolean - postgis | public | path | geometry | path - postgis | public | pgis_asflatgeobuf_finalfn | internal | bytea - postgis | public | pgis_asflatgeobuf_transfn | internal, anyelement, boolean | internal - postgis | public | pgis_asflatgeobuf_transfn | internal, anyelement | internal - postgis | public | pgis_asflatgeobuf_transfn | internal, anyelement, boolean, text | internal - postgis | public | pgis_asgeobuf_finalfn | internal | bytea - postgis | public | pgis_asgeobuf_transfn | internal, anyelement | internal - postgis | public | pgis_asgeobuf_transfn | internal, anyelement, text | internal - postgis | public | pgis_asmvt_combinefn | internal, internal | internal - postgis | public | pgis_asmvt_deserialfn | bytea, internal | internal - postgis | public | pgis_asmvt_finalfn | internal | bytea - postgis | public | pgis_asmvt_serialfn | internal | bytea - postgis | public | pgis_asmvt_transfn | internal, anyelement, text, integer, text | internal - postgis | public | pgis_asmvt_transfn | internal, anyelement | internal - postgis | public | pgis_asmvt_transfn | internal, anyelement, text, integer | internal - postgis | public | pgis_asmvt_transfn | internal, anyelement, text | internal - postgis | public | pgis_asmvt_transfn | internal, anyelement, text, integer, text, text | internal - postgis | public | pgis_geometry_accum_transfn | internal, geometry, double precision | internal - postgis | public | pgis_geometry_accum_transfn | internal, geometry | internal - postgis | public | pgis_geometry_accum_transfn | internal, geometry, double precision, integer | internal - postgis | public | pgis_geometry_clusterintersecting_finalfn | internal | geometry[] - postgis | public | pgis_geometry_clusterwithin_finalfn | internal | geometry[] - postgis | public | pgis_geometry_collect_finalfn | internal | geometry - postgis | public | pgis_geometry_makeline_finalfn | internal | geometry - postgis | public | pgis_geometry_polygonize_finalfn | internal | geometry - postgis | public | pgis_geometry_union_parallel_combinefn | internal, internal | internal - postgis | public | pgis_geometry_union_parallel_deserialfn | bytea, internal | internal - postgis | public | pgis_geometry_union_parallel_finalfn | internal | geometry - postgis | public | pgis_geometry_union_parallel_serialfn | internal | bytea - postgis | public | pgis_geometry_union_parallel_transfn | internal, geometry, double precision | internal - postgis | public | pgis_geometry_union_parallel_transfn | internal, geometry | internal - postgis | public | point | geometry | point - postgis | public | polygon | geometry | polygon - postgis | public | populate_geometry_columns | tbl_oid oid, use_typmod boolean | integer - postgis | public | populate_geometry_columns | use_typmod boolean | text - postgis | public | postgis_addbbox | geometry | geometry - postgis | public | postgis_cache_bbox | | trigger - postgis | public | postgis_constraint_dims | geomschema text, geomtable text, geomcolumn text | integer - postgis | public | postgis_constraint_srid | geomschema text, geomtable text, geomcolumn text | integer - postgis | public | postgis_constraint_type | geomschema text, geomtable text, geomcolumn text | character varying - postgis | public | postgis_dropbbox | geometry | geometry - postgis | public | postgis_extensions_upgrade | | text - postgis | public | postgis_full_version | | text - postgis | public | postgis_geos_noop | geometry | geometry - postgis | public | postgis_geos_version | | text - postgis | public | postgis_getbbox | geometry | box2d - postgis | public | postgis_hasbbox | geometry | boolean - postgis | public | postgis_index_supportfn | internal | internal - postgis | public | postgis_lib_build_date | | text - postgis | public | postgis_lib_revision | | text - postgis | public | postgis_lib_version | | text - postgis | public | postgis_libjson_version | | text - postgis | public | postgis_liblwgeom_version | | text - postgis | public | postgis_libprotobuf_version | | text - postgis | public | postgis_libxml_version | | text - postgis | public | postgis_noop | geometry | geometry - postgis | public | postgis_proj_version | | text - postgis | public | postgis_scripts_build_date | | text - postgis | public | postgis_scripts_installed | | text - postgis | public | postgis_scripts_released | | text - postgis | public | postgis_svn_version | | text - postgis | public | postgis_transform_geometry | geom geometry, text, text, integer | geometry - postgis | public | postgis_type_name | geomname character varying, coord_dimension integer, use_new_name boolean | character varying - postgis | public | postgis_typmod_dims | integer | integer - postgis | public | postgis_typmod_srid | integer | integer - postgis | public | postgis_typmod_type | integer | text - postgis | public | postgis_version | | text - postgis | public | postgis_wagyu_version | | text - postgis | public | spheroid_in | cstring | spheroid - postgis | public | spheroid_out | spheroid | cstring - postgis | public | st_3dclosestpoint | geom1 geometry, geom2 geometry | geometry - postgis | public | st_3ddfullywithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | st_3ddistance | geom1 geometry, geom2 geometry | double precision - postgis | public | st_3ddwithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | st_3dextent | geometry | box3d - postgis | public | st_3dintersects | geom1 geometry, geom2 geometry | boolean - postgis | public | st_3dlength | geometry | double precision - postgis | public | st_3dlineinterpolatepoint | geometry, double precision | geometry - postgis | public | st_3dlongestline | geom1 geometry, geom2 geometry | geometry - postgis | public | st_3dmakebox | geom1 geometry, geom2 geometry | box3d - postgis | public | st_3dmaxdistance | geom1 geometry, geom2 geometry | double precision - postgis | public | st_3dperimeter | geometry | double precision - postgis | public | st_3dshortestline | geom1 geometry, geom2 geometry | geometry - postgis | public | st_addmeasure | geometry, double precision, double precision | geometry - postgis | public | st_addpoint | geom1 geometry, geom2 geometry, integer | geometry - postgis | public | st_addpoint | geom1 geometry, geom2 geometry | geometry - postgis | public | st_affine | geometry, double precision, double precision, double precision, double precision, double precision, double precision | geometry - postgis | public | st_affine | geometry, double precision, double precision, double precision, double precision, double precision, double precision, double precision, double precision, double precision, double precision, double precision, double precision | geometry - postgis | public | st_angle | pt1 geometry, pt2 geometry, pt3 geometry, pt4 geometry | double precision - postgis | public | st_angle | line1 geometry, line2 geometry | double precision - postgis | public | st_area | geog geography, use_spheroid boolean | double precision - postgis | public | st_area | text | double precision - postgis | public | st_area | geometry | double precision - postgis | public | st_area2d | geometry | double precision - postgis | public | st_asbinary | geography | bytea - postgis | public | st_asbinary | geometry, text | bytea - postgis | public | st_asbinary | geometry | bytea - postgis | public | st_asbinary | geography, text | bytea - postgis | public | st_asencodedpolyline | geom geometry, nprecision integer | text - postgis | public | st_asewkb | geometry, text | bytea - postgis | public | st_asewkb | geometry | bytea - postgis | public | st_asewkt | text | text - postgis | public | st_asewkt | geography, integer | text - postgis | public | st_asewkt | geography | text - postgis | public | st_asewkt | geometry, integer | text - postgis | public | st_asewkt | geometry | text - postgis | public | st_asflatgeobuf | anyelement | bytea - postgis | public | st_asflatgeobuf | anyelement, boolean | bytea - postgis | public | st_asflatgeobuf | anyelement, boolean, text | bytea - postgis | public | st_asgeobuf | anyelement | bytea - postgis | public | st_asgeobuf | anyelement, text | bytea - postgis | public | st_asgeojson | text | text - postgis | public | st_asgeojson | geom geometry, maxdecimaldigits integer, options integer | text - postgis | public | st_asgeojson | geog geography, maxdecimaldigits integer, options integer | text - postgis | public | st_asgeojson | r record, geom_column text, maxdecimaldigits integer, pretty_bool boolean | text - postgis | public | st_asgml | text | text - postgis | public | st_asgml | version integer, geog geography, maxdecimaldigits integer, options integer, nprefix text, id text | text - postgis | public | st_asgml | geog geography, maxdecimaldigits integer, options integer, nprefix text, id text | text - postgis | public | st_asgml | geom geometry, maxdecimaldigits integer, options integer | text - postgis | public | st_asgml | version integer, geom geometry, maxdecimaldigits integer, options integer, nprefix text, id text | text - postgis | public | st_ashexewkb | geometry, text | text - postgis | public | st_ashexewkb | geometry | text - postgis | public | st_askml | text | text - postgis | public | st_askml | geom geometry, maxdecimaldigits integer, nprefix text | text - postgis | public | st_askml | geog geography, maxdecimaldigits integer, nprefix text | text - postgis | public | st_aslatlontext | geom geometry, tmpl text | text - postgis | public | st_asmarc21 | geom geometry, format text | text - postgis | public | st_asmvt | anyelement | bytea - postgis | public | st_asmvt | anyelement, text, integer, text, text | bytea - postgis | public | st_asmvt | anyelement, text, integer | bytea - postgis | public | st_asmvt | anyelement, text | bytea - postgis | public | st_asmvt | anyelement, text, integer, text | bytea - postgis | public | st_asmvtgeom | geom geometry, bounds box2d, extent integer, buffer integer, clip_geom boolean | geometry - postgis | public | st_assvg | geog geography, rel integer, maxdecimaldigits integer | text - postgis | public | st_assvg | geom geometry, rel integer, maxdecimaldigits integer | text - postgis | public | st_assvg | text | text - postgis | public | st_astext | text | text - postgis | public | st_astext | geography, integer | text - postgis | public | st_astext | geography | text - postgis | public | st_astext | geometry, integer | text - postgis | public | st_astext | geometry | text - postgis | public | st_astwkb | geom geometry[], ids bigint[], prec integer, prec_z integer, prec_m integer, with_sizes boolean, with_boxes boolean | bytea - postgis | public | st_astwkb | geom geometry, prec integer, prec_z integer, prec_m integer, with_sizes boolean, with_boxes boolean | bytea - postgis | public | st_asx3d | geom geometry, maxdecimaldigits integer, options integer | text - postgis | public | st_azimuth | geom1 geometry, geom2 geometry | double precision - postgis | public | st_azimuth | geog1 geography, geog2 geography | double precision - postgis | public | st_bdmpolyfromtext | text, integer | geometry - postgis | public | st_bdpolyfromtext | text, integer | geometry - postgis | public | st_boundary | geometry | geometry - postgis | public | st_boundingdiagonal | geom geometry, fits boolean | geometry - postgis | public | st_box2dfromgeohash | text, integer | box2d - postgis | public | st_buffer | geom geometry, radius double precision, options text | geometry - postgis | public | st_buffer | geography, double precision, text | geography - postgis | public | st_buffer | geography, double precision, integer | geography - postgis | public | st_buffer | geom geometry, radius double precision, quadsegs integer | geometry - postgis | public | st_buffer | text, double precision, text | geometry - postgis | public | st_buffer | geography, double precision | geography - postgis | public | st_buffer | text, double precision, integer | geometry - postgis | public | st_buffer | text, double precision | geometry - postgis | public | st_buildarea | geometry | geometry - postgis | public | st_centroid | text | geometry - postgis | public | st_centroid | geography, use_spheroid boolean | geography - postgis | public | st_centroid | geometry | geometry - postgis | public | st_chaikinsmoothing | geometry, integer, boolean | geometry - postgis | public | st_cleangeometry | geometry | geometry - postgis | public | st_clipbybox2d | geom geometry, box box2d | geometry - postgis | public | st_closestpoint | geom1 geometry, geom2 geometry | geometry - postgis | public | st_closestpointofapproach | geometry, geometry | double precision - postgis | public | st_clusterdbscan | geometry, eps double precision, minpoints integer | integer - postgis | public | st_clusterintersecting | geometry[] | geometry[] - postgis | public | st_clusterintersecting | geometry | geometry[] - postgis | public | st_clusterkmeans | geom geometry, k integer, max_radius double precision | integer - postgis | public | st_clusterwithin | geometry[], double precision | geometry[] - postgis | public | st_clusterwithin | geometry, double precision | geometry[] - postgis | public | st_collect | geom1 geometry, geom2 geometry | geometry - postgis | public | st_collect | geometry[] | geometry - postgis | public | st_collect | geometry | geometry - postgis | public | st_collectionextract | geometry, integer | geometry - postgis | public | st_collectionextract | geometry | geometry - postgis | public | st_collectionhomogenize | geometry | geometry - postgis | public | st_combinebbox | box2d, geometry | box2d - postgis | public | st_combinebbox | box3d, geometry | box3d - postgis | public | st_combinebbox | box3d, box3d | box3d - postgis | public | st_concavehull | param_geom geometry, param_pctconvex double precision, param_allow_holes boolean | geometry - postgis | public | st_contains | geom1 geometry, geom2 geometry | boolean - postgis | public | st_containsproperly | geom1 geometry, geom2 geometry | boolean - postgis | public | st_convexhull | geometry | geometry - postgis | public | st_coorddim | geometry geometry | smallint - postgis | public | st_coveredby | geom1 geometry, geom2 geometry | boolean - postgis | public | st_coveredby | text, text | boolean - postgis | public | st_coveredby | geog1 geography, geog2 geography | boolean - postgis | public | st_covers | geom1 geometry, geom2 geometry | boolean - postgis | public | st_covers | text, text | boolean - postgis | public | st_covers | geog1 geography, geog2 geography | boolean - postgis | public | st_cpawithin | geometry, geometry, double precision | boolean - postgis | public | st_crosses | geom1 geometry, geom2 geometry | boolean - postgis | public | st_curvetoline | geom geometry, tol double precision, toltype integer, flags integer | geometry - postgis | public | st_delaunaytriangles | g1 geometry, tolerance double precision, flags integer | geometry - postgis | public | st_dfullywithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | st_difference | geom1 geometry, geom2 geometry, gridsize double precision | geometry - postgis | public | st_dimension | geometry | integer - postgis | public | st_disjoint | geom1 geometry, geom2 geometry | boolean - postgis | public | st_distance | geom1 geometry, geom2 geometry | double precision - postgis | public | st_distance | text, text | double precision - postgis | public | st_distance | geog1 geography, geog2 geography, use_spheroid boolean | double precision - postgis | public | st_distancecpa | geometry, geometry | double precision - postgis | public | st_distancesphere | geom1 geometry, geom2 geometry | double precision - postgis | public | st_distancesphere | geom1 geometry, geom2 geometry, radius double precision | double precision - postgis | public | st_distancespheroid | geom1 geometry, geom2 geometry, spheroid | double precision - postgis | public | st_distancespheroid | geom1 geometry, geom2 geometry | double precision - postgis | public | st_dump | geometry | SETOF geometry_dump - postgis | public | st_dumppoints | geometry | SETOF geometry_dump - postgis | public | st_dumprings | geometry | SETOF geometry_dump - postgis | public | st_dumpsegments | geometry | SETOF geometry_dump - postgis | public | st_dwithin | text, text, double precision | boolean - postgis | public | st_dwithin | geog1 geography, geog2 geography, tolerance double precision, use_spheroid boolean | boolean - postgis | public | st_dwithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | st_endpoint | geometry | geometry - postgis | public | st_envelope | geometry | geometry - postgis | public | st_equals | geom1 geometry, geom2 geometry | boolean - postgis | public | st_estimatedextent | text, text, text, boolean | box2d - postgis | public | st_estimatedextent | text, text | box2d - postgis | public | st_estimatedextent | text, text, text | box2d - postgis | public | st_expand | box3d, double precision | box3d - postgis | public | st_expand | box box3d, dx double precision, dy double precision, dz double precision | box3d - postgis | public | st_expand | box2d, double precision | box2d - postgis | public | st_expand | box box2d, dx double precision, dy double precision | box2d - postgis | public | st_expand | geometry, double precision | geometry - postgis | public | st_expand | geom geometry, dx double precision, dy double precision, dz double precision, dm double precision | geometry - postgis | public | st_extent | geometry | box2d - postgis | public | st_exteriorring | geometry | geometry - postgis | public | st_filterbym | geometry, double precision, double precision, boolean | geometry - postgis | public | st_findextent | text, text | box2d - postgis | public | st_findextent | text, text, text | box2d - postgis | public | st_flipcoordinates | geometry | geometry - postgis | public | st_force2d | geometry | geometry - postgis | public | st_force3d | geom geometry, zvalue double precision | geometry - postgis | public | st_force3dm | geom geometry, mvalue double precision | geometry - postgis | public | st_force3dz | geom geometry, zvalue double precision | geometry - postgis | public | st_force4d | geom geometry, zvalue double precision, mvalue double precision | geometry - postgis | public | st_forcecollection | geometry | geometry - postgis | public | st_forcecurve | geometry | geometry - postgis | public | st_forcepolygonccw | geometry | geometry - postgis | public | st_forcepolygoncw | geometry | geometry - postgis | public | st_forcerhr | geometry | geometry - postgis | public | st_forcesfs | geometry, version text | geometry - postgis | public | st_forcesfs | geometry | geometry - postgis | public | st_frechetdistance | geom1 geometry, geom2 geometry, double precision | double precision - postgis | public | st_fromflatgeobuf | anyelement, bytea | SETOF anyelement - postgis | public | st_fromflatgeobuftotable | text, text, bytea | void - postgis | public | st_generatepoints | area geometry, npoints integer, seed integer | geometry - postgis | public | st_generatepoints | area geometry, npoints integer | geometry - postgis | public | st_geogfromtext | text | geography - postgis | public | st_geogfromwkb | bytea | geography - postgis | public | st_geographyfromtext | text | geography - postgis | public | st_geohash | geog geography, maxchars integer | text - postgis | public | st_geohash | geom geometry, maxchars integer | text - postgis | public | st_geomcollfromtext | text | geometry - postgis | public | st_geomcollfromtext | text, integer | geometry - postgis | public | st_geomcollfromwkb | bytea, integer | geometry - postgis | public | st_geomcollfromwkb | bytea | geometry - postgis | public | st_geometricmedian | g geometry, tolerance double precision, max_iter integer, fail_if_not_converged boolean | geometry - postgis | public | st_geometryfromtext | text | geometry - postgis | public | st_geometryfromtext | text, integer | geometry - postgis | public | st_geometryn | geometry, integer | geometry - postgis | public | st_geometrytype | geometry | text - postgis | public | st_geomfromewkb | bytea | geometry - postgis | public | st_geomfromewkt | text | geometry - postgis | public | st_geomfromgeohash | text, integer | geometry - postgis | public | st_geomfromgeojson | text | geometry - postgis | public | st_geomfromgeojson | json | geometry - postgis | public | st_geomfromgeojson | jsonb | geometry - postgis | public | st_geomfromgml | text | geometry - postgis | public | st_geomfromgml | text, integer | geometry - postgis | public | st_geomfromkml | text | geometry - postgis | public | st_geomfrommarc21 | marc21xml text | geometry - postgis | public | st_geomfromtext | text | geometry - postgis | public | st_geomfromtext | text, integer | geometry - postgis | public | st_geomfromtwkb | bytea | geometry - postgis | public | st_geomfromwkb | bytea, integer | geometry - postgis | public | st_geomfromwkb | bytea | geometry - postgis | public | st_gmltosql | text | geometry - postgis | public | st_gmltosql | text, integer | geometry - postgis | public | st_hasarc | geometry geometry | boolean - postgis | public | st_hausdorffdistance | geom1 geometry, geom2 geometry | double precision - postgis | public | st_hausdorffdistance | geom1 geometry, geom2 geometry, double precision | double precision - postgis | public | st_hexagon | size double precision, cell_i integer, cell_j integer, origin geometry | geometry - postgis | public | st_hexagongrid | size double precision, bounds geometry, OUT geom geometry, OUT i integer, OUT j integer | SETOF record - postgis | public | st_interiorringn | geometry, integer | geometry - postgis | public | st_interpolatepoint | line geometry, point geometry | double precision - postgis | public | st_intersection | geom1 geometry, geom2 geometry, gridsize double precision | geometry - postgis | public | st_intersection | text, text | geometry - postgis | public | st_intersection | geography, geography | geography - postgis | public | st_intersects | geom1 geometry, geom2 geometry | boolean - postgis | public | st_intersects | text, text | boolean - postgis | public | st_intersects | geog1 geography, geog2 geography | boolean - postgis | public | st_isclosed | geometry | boolean - postgis | public | st_iscollection | geometry | boolean - postgis | public | st_isempty | geometry | boolean - postgis | public | st_ispolygonccw | geometry | boolean - postgis | public | st_ispolygoncw | geometry | boolean - postgis | public | st_isring | geometry | boolean - postgis | public | st_issimple | geometry | boolean - postgis | public | st_isvalid | geometry, integer | boolean - postgis | public | st_isvalid | geometry | boolean - postgis | public | st_isvaliddetail | geom geometry, flags integer | valid_detail - postgis | public | st_isvalidreason | geometry, integer | text - postgis | public | st_isvalidreason | geometry | text - postgis | public | st_isvalidtrajectory | geometry | boolean - postgis | public | st_length | geog geography, use_spheroid boolean | double precision - postgis | public | st_length | text | double precision - postgis | public | st_length | geometry | double precision - postgis | public | st_length2d | geometry | double precision - postgis | public | st_length2dspheroid | geometry, spheroid | double precision - postgis | public | st_lengthspheroid | geometry, spheroid | double precision - postgis | public | st_letters | letters text, font json | geometry - postgis | public | st_linecrossingdirection | line1 geometry, line2 geometry | integer - postgis | public | st_linefromencodedpolyline | txtin text, nprecision integer | geometry - postgis | public | st_linefrommultipoint | geometry | geometry - postgis | public | st_linefromtext | text | geometry - postgis | public | st_linefromtext | text, integer | geometry - postgis | public | st_linefromwkb | bytea, integer | geometry - postgis | public | st_linefromwkb | bytea | geometry - postgis | public | st_lineinterpolatepoint | geometry, double precision | geometry - postgis | public | st_lineinterpolatepoints | geometry, double precision, repeat boolean | geometry - postgis | public | st_linelocatepoint | geom1 geometry, geom2 geometry | double precision - postgis | public | st_linemerge | geometry, boolean | geometry - postgis | public | st_linemerge | geometry | geometry - postgis | public | st_linestringfromwkb | bytea, integer | geometry - postgis | public | st_linestringfromwkb | bytea | geometry - postgis | public | st_linesubstring | geometry, double precision, double precision | geometry - postgis | public | st_linetocurve | geometry geometry | geometry - postgis | public | st_locatealong | geometry geometry, measure double precision, leftrightoffset double precision | geometry - postgis | public | st_locatebetween | geometry geometry, frommeasure double precision, tomeasure double precision, leftrightoffset double precision | geometry - postgis | public | st_locatebetweenelevations | geometry geometry, fromelevation double precision, toelevation double precision | geometry - postgis | public | st_longestline | geom1 geometry, geom2 geometry | geometry - postgis | public | st_m | geometry | double precision - postgis | public | st_makebox2d | geom1 geometry, geom2 geometry | box2d - postgis | public | st_makeenvelope | double precision, double precision, double precision, double precision, integer | geometry - postgis | public | st_makeline | geom1 geometry, geom2 geometry | geometry - postgis | public | st_makeline | geometry[] | geometry - postgis | public | st_makeline | geometry | geometry - postgis | public | st_makepoint | double precision, double precision, double precision, double precision | geometry - postgis | public | st_makepoint | double precision, double precision | geometry - postgis | public | st_makepoint | double precision, double precision, double precision | geometry - postgis | public | st_makepointm | double precision, double precision, double precision | geometry - postgis | public | st_makepolygon | geometry, geometry[] | geometry - postgis | public | st_makepolygon | geometry | geometry - postgis | public | st_makevalid | geom geometry, params text | geometry - postgis | public | st_makevalid | geometry | geometry - postgis | public | st_maxdistance | geom1 geometry, geom2 geometry | double precision - postgis | public | st_maximuminscribedcircle | geometry, OUT center geometry, OUT nearest geometry, OUT radius double precision | record - postgis | public | st_memcollect | geometry | geometry - postgis | public | st_memsize | geometry | integer - postgis | public | st_memunion | geometry | geometry - postgis | public | st_minimumboundingcircle | inputgeom geometry, segs_per_quarter integer | geometry - postgis | public | st_minimumboundingradius | geometry, OUT center geometry, OUT radius double precision | record - postgis | public | st_minimumclearance | geometry | double precision - postgis | public | st_minimumclearanceline | geometry | geometry - postgis | public | st_mlinefromtext | text | geometry - postgis | public | st_mlinefromtext | text, integer | geometry - postgis | public | st_mlinefromwkb | bytea, integer | geometry - postgis | public | st_mlinefromwkb | bytea | geometry - postgis | public | st_mpointfromtext | text | geometry - postgis | public | st_mpointfromtext | text, integer | geometry - postgis | public | st_mpointfromwkb | bytea, integer | geometry - postgis | public | st_mpointfromwkb | bytea | geometry - postgis | public | st_mpolyfromtext | text | geometry - postgis | public | st_mpolyfromtext | text, integer | geometry - postgis | public | st_mpolyfromwkb | bytea, integer | geometry - postgis | public | st_mpolyfromwkb | bytea | geometry - postgis | public | st_multi | geometry | geometry - postgis | public | st_multilinefromwkb | bytea | geometry - postgis | public | st_multilinestringfromtext | text | geometry - postgis | public | st_multilinestringfromtext | text, integer | geometry - postgis | public | st_multipointfromtext | text | geometry - postgis | public | st_multipointfromwkb | bytea, integer | geometry - postgis | public | st_multipointfromwkb | bytea | geometry - postgis | public | st_multipolyfromwkb | bytea, integer | geometry - postgis | public | st_multipolyfromwkb | bytea | geometry - postgis | public | st_multipolygonfromtext | text | geometry - postgis | public | st_multipolygonfromtext | text, integer | geometry - postgis | public | st_ndims | geometry | smallint - postgis | public | st_node | g geometry | geometry - postgis | public | st_normalize | geom geometry | geometry - postgis | public | st_npoints | geometry | integer - postgis | public | st_nrings | geometry | integer - postgis | public | st_numgeometries | geometry | integer - postgis | public | st_numinteriorring | geometry | integer - postgis | public | st_numinteriorrings | geometry | integer - postgis | public | st_numpatches | geometry | integer - postgis | public | st_numpoints | geometry | integer - postgis | public | st_offsetcurve | line geometry, distance double precision, params text | geometry - postgis | public | st_orderingequals | geom1 geometry, geom2 geometry | boolean - postgis | public | st_orientedenvelope | geometry | geometry - postgis | public | st_overlaps | geom1 geometry, geom2 geometry | boolean - postgis | public | st_patchn | geometry, integer | geometry - postgis | public | st_perimeter | geog geography, use_spheroid boolean | double precision - postgis | public | st_perimeter | geometry | double precision - postgis | public | st_perimeter2d | geometry | double precision - postgis | public | st_point | double precision, double precision, srid integer | geometry - postgis | public | st_point | double precision, double precision | geometry - postgis | public | st_pointfromgeohash | text, integer | geometry - postgis | public | st_pointfromtext | text | geometry - postgis | public | st_pointfromtext | text, integer | geometry - postgis | public | st_pointfromwkb | bytea, integer | geometry - postgis | public | st_pointfromwkb | bytea | geometry - postgis | public | st_pointinsidecircle | geometry, double precision, double precision, double precision | boolean - postgis | public | st_pointm | xcoordinate double precision, ycoordinate double precision, mcoordinate double precision, srid integer | geometry - postgis | public | st_pointn | geometry, integer | geometry - postgis | public | st_pointonsurface | geometry | geometry - postgis | public | st_points | geometry | geometry - postgis | public | st_pointz | xcoordinate double precision, ycoordinate double precision, zcoordinate double precision, srid integer | geometry - postgis | public | st_pointzm | xcoordinate double precision, ycoordinate double precision, zcoordinate double precision, mcoordinate double precision, srid integer | geometry - postgis | public | st_polyfromtext | text | geometry - postgis | public | st_polyfromtext | text, integer | geometry - postgis | public | st_polyfromwkb | bytea, integer | geometry - postgis | public | st_polyfromwkb | bytea | geometry - postgis | public | st_polygon | geometry, integer | geometry - postgis | public | st_polygonfromtext | text | geometry - postgis | public | st_polygonfromtext | text, integer | geometry - postgis | public | st_polygonfromwkb | bytea, integer | geometry - postgis | public | st_polygonfromwkb | bytea | geometry - postgis | public | st_polygonize | geometry[] | geometry - postgis | public | st_polygonize | geometry | geometry - postgis | public | st_project | geog geography, distance double precision, azimuth double precision | geography - postgis | public | st_quantizecoordinates | g geometry, prec_x integer, prec_y integer, prec_z integer, prec_m integer | geometry - postgis | public | st_reduceprecision | geom geometry, gridsize double precision | geometry - postgis | public | st_relate | geom1 geometry, geom2 geometry, integer | text - postgis | public | st_relate | geom1 geometry, geom2 geometry | text - postgis | public | st_relate | geom1 geometry, geom2 geometry, text | boolean - postgis | public | st_relatematch | text, text | boolean - postgis | public | st_removepoint | geometry, integer | geometry - postgis | public | st_removerepeatedpoints | geom geometry, tolerance double precision | geometry - postgis | public | st_reverse | geometry | geometry - postgis | public | st_rotate | geometry, double precision, geometry | geometry - postgis | public | st_rotate | geometry, double precision, double precision, double precision | geometry - postgis | public | st_rotate | geometry, double precision | geometry - postgis | public | st_rotatex | geometry, double precision | geometry - postgis | public | st_rotatey | geometry, double precision | geometry - postgis | public | st_rotatez | geometry, double precision | geometry - postgis | public | st_scale | geometry, double precision, double precision | geometry - postgis | public | st_scale | geometry, double precision, double precision, double precision | geometry - postgis | public | st_scale | geometry, geometry, origin geometry | geometry - postgis | public | st_scale | geometry, geometry | geometry - postgis | public | st_scroll | geometry, geometry | geometry - postgis | public | st_segmentize | geog geography, max_segment_length double precision | geography - postgis | public | st_segmentize | geometry, double precision | geometry - postgis | public | st_seteffectivearea | geometry, double precision, integer | geometry - postgis | public | st_setpoint | geometry, integer, geometry | geometry - postgis | public | st_setsrid | geog geography, srid integer | geography - postgis | public | st_setsrid | geom geometry, srid integer | geometry - postgis | public | st_sharedpaths | geom1 geometry, geom2 geometry | geometry - postgis | public | st_shiftlongitude | geometry | geometry - postgis | public | st_shortestline | geom1 geometry, geom2 geometry | geometry - postgis | public | st_simplify | geometry, double precision, boolean | geometry - postgis | public | st_simplify | geometry, double precision | geometry - postgis | public | st_simplifypolygonhull | geom geometry, vertex_fraction double precision, is_outer boolean | geometry - postgis | public | st_simplifypreservetopology | geometry, double precision | geometry - postgis | public | st_simplifyvw | geometry, double precision | geometry - postgis | public | st_snap | geom1 geometry, geom2 geometry, double precision | geometry - postgis | public | st_snaptogrid | geometry, double precision, double precision | geometry - postgis | public | st_snaptogrid | geom1 geometry, geom2 geometry, double precision, double precision, double precision, double precision | geometry - postgis | public | st_snaptogrid | geometry, double precision, double precision, double precision, double precision | geometry - postgis | public | st_snaptogrid | geometry, double precision | geometry - postgis | public | st_split | geom1 geometry, geom2 geometry | geometry - postgis | public | st_square | size double precision, cell_i integer, cell_j integer, origin geometry | geometry - postgis | public | st_squaregrid | size double precision, bounds geometry, OUT geom geometry, OUT i integer, OUT j integer | SETOF record - postgis | public | st_srid | geog geography | integer - postgis | public | st_srid | geom geometry | integer - postgis | public | st_startpoint | geometry | geometry - postgis | public | st_subdivide | geom geometry, maxvertices integer, gridsize double precision | SETOF geometry - postgis | public | st_summary | geography | text - postgis | public | st_summary | geometry | text - postgis | public | st_swapordinates | geom geometry, ords cstring | geometry - postgis | public | st_symdifference | geom1 geometry, geom2 geometry, gridsize double precision | geometry - postgis | public | st_symmetricdifference | geom1 geometry, geom2 geometry | geometry - postgis | public | st_tileenvelope | zoom integer, x integer, y integer, bounds geometry, margin double precision | geometry - postgis | public | st_touches | geom1 geometry, geom2 geometry | boolean - postgis | public | st_transform | geom geometry, to_proj text | geometry - postgis | public | st_transform | geom geometry, from_proj text, to_srid integer | geometry - postgis | public | st_transform | geometry, integer | geometry - postgis | public | st_transform | geom geometry, from_proj text, to_proj text | geometry - postgis | public | st_translate | geometry, double precision, double precision | geometry - postgis | public | st_translate | geometry, double precision, double precision, double precision | geometry - postgis | public | st_transscale | geometry, double precision, double precision, double precision, double precision | geometry - postgis | public | st_triangulatepolygon | g1 geometry | geometry - postgis | public | st_unaryunion | geometry, gridsize double precision | geometry - postgis | public | st_union | geom1 geometry, geom2 geometry, gridsize double precision | geometry - postgis | public | st_union | geom1 geometry, geom2 geometry | geometry - postgis | public | st_union | geometry[] | geometry - postgis | public | st_union | geometry, gridsize double precision | geometry - postgis | public | st_union | geometry | geometry - postgis | public | st_voronoilines | g1 geometry, tolerance double precision, extend_to geometry | geometry - postgis | public | st_voronoipolygons | g1 geometry, tolerance double precision, extend_to geometry | geometry - postgis | public | st_within | geom1 geometry, geom2 geometry | boolean - postgis | public | st_wkbtosql | wkb bytea | geometry - postgis | public | st_wkttosql | text | geometry - postgis | public | st_wrapx | geom geometry, wrap double precision, move double precision | geometry - postgis | public | st_x | geometry | double precision - postgis | public | st_xmax | box3d | double precision - postgis | public | st_xmin | box3d | double precision - postgis | public | st_y | geometry | double precision - postgis | public | st_ymax | box3d | double precision - postgis | public | st_ymin | box3d | double precision - postgis | public | st_z | geometry | double precision - postgis | public | st_zmax | box3d | double precision - postgis | public | st_zmflag | geometry | smallint - postgis | public | st_zmin | box3d | double precision - postgis | public | text | geometry | text - postgis | public | unlockrows | text | integer - postgis | public | updategeometrysrid | catalogn_name character varying, schema_name character varying, table_name character varying, column_name character varying, new_srid_in integer | text - postgis | public | updategeometrysrid | character varying, character varying, character varying, integer | text - postgis | public | updategeometrysrid | character varying, character varying, integer | text - postgis_raster | public | __st_countagg_transfn | agg agg_count, rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision | agg_count - postgis_raster | public | _add_overview_constraint | ovschema name, ovtable name, ovcolumn name, refschema name, reftable name, refcolumn name, factor integer | boolean - postgis_raster | public | _add_raster_constraint | cn name, sql text | boolean - postgis_raster | public | _add_raster_constraint_alignment | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_blocksize | rastschema name, rasttable name, rastcolumn name, axis text | boolean - postgis_raster | public | _add_raster_constraint_coverage_tile | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_extent | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_nodata_values | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_num_bands | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_out_db | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_pixel_types | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_scale | rastschema name, rasttable name, rastcolumn name, axis character | boolean - postgis_raster | public | _add_raster_constraint_spatially_unique | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_srid | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_overview_constraint | ovschema name, ovtable name, ovcolumn name | boolean - postgis_raster | public | _drop_raster_constraint | rastschema name, rasttable name, cn name | boolean - postgis_raster | public | _drop_raster_constraint_alignment | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_blocksize | rastschema name, rasttable name, rastcolumn name, axis text | boolean - postgis_raster | public | _drop_raster_constraint_coverage_tile | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_extent | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_nodata_values | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_num_bands | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_out_db | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_pixel_types | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_regular_blocking | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_scale | rastschema name, rasttable name, rastcolumn name, axis character | boolean - postgis_raster | public | _drop_raster_constraint_spatially_unique | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_srid | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _overview_constraint | ov raster, factor integer, refschema name, reftable name, refcolumn name | boolean - postgis_raster | public | _overview_constraint_info | ovschema name, ovtable name, ovcolumn name, OUT refschema name, OUT reftable name, OUT refcolumn name, OUT factor integer | record - postgis_raster | public | _raster_constraint_info_alignment | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _raster_constraint_info_blocksize | rastschema name, rasttable name, rastcolumn name, axis text | integer - postgis_raster | public | _raster_constraint_info_coverage_tile | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _raster_constraint_info_extent | rastschema name, rasttable name, rastcolumn name | geometry - postgis_raster | public | _raster_constraint_info_index | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _raster_constraint_info_nodata_values | rastschema name, rasttable name, rastcolumn name | double precision[] - postgis_raster | public | _raster_constraint_info_num_bands | rastschema name, rasttable name, rastcolumn name | integer - postgis_raster | public | _raster_constraint_info_out_db | rastschema name, rasttable name, rastcolumn name | boolean[] - postgis_raster | public | _raster_constraint_info_pixel_types | rastschema name, rasttable name, rastcolumn name | text[] - postgis_raster | public | _raster_constraint_info_regular_blocking | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _raster_constraint_info_scale | rastschema name, rasttable name, rastcolumn name, axis character | double precision - postgis_raster | public | _raster_constraint_info_spatially_unique | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _raster_constraint_info_srid | rastschema name, rasttable name, rastcolumn name | integer - postgis_raster | public | _raster_constraint_nodata_values | rast raster | numeric[] - postgis_raster | public | _raster_constraint_out_db | rast raster | boolean[] - postgis_raster | public | _raster_constraint_pixel_types | rast raster | text[] - postgis_raster | public | _st_aspect4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_asraster | geom geometry, scalex double precision, scaley double precision, width integer, height integer, pixeltype text[], value double precision[], nodataval double precision[], upperleftx double precision, upperlefty double precision, gridx double precision, gridy double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | _st_clip | rast raster, nband integer[], geom geometry, nodataval double precision[], crop boolean | raster - postgis_raster | public | _st_colormap | rast raster, nband integer, colormap text, method text | raster - postgis_raster | public | _st_contains | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_containsproperly | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_convertarray4ma | value double precision[] | double precision[] - postgis_raster | public | _st_count | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision | bigint - postgis_raster | public | _st_countagg_finalfn | agg agg_count | bigint - postgis_raster | public | _st_countagg_transfn | agg agg_count, rast raster, nband integer, exclude_nodata_value boolean | agg_count - postgis_raster | public | _st_countagg_transfn | agg agg_count, rast raster, exclude_nodata_value boolean | agg_count - postgis_raster | public | _st_countagg_transfn | agg agg_count, rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision | agg_count - postgis_raster | public | _st_coveredby | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_covers | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_dfullywithin | rast1 raster, nband1 integer, rast2 raster, nband2 integer, distance double precision | boolean - postgis_raster | public | _st_dwithin | rast1 raster, nband1 integer, rast2 raster, nband2 integer, distance double precision | boolean - postgis_raster | public | _st_gdalwarp | rast raster, algorithm text, maxerr double precision, srid integer, scalex double precision, scaley double precision, gridx double precision, gridy double precision, skewx double precision, skewy double precision, width integer, height integer | raster - postgis_raster | public | _st_grayscale4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_hillshade4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_histogram | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision, bins integer, width double precision[], "right" boolean, min double precision, max double precision, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | _st_intersects | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_intersects | geom geometry, rast raster, nband integer | boolean - postgis_raster | public | _st_mapalgebra | rastbandargset rastbandarg[], expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision | raster - postgis_raster | public | _st_mapalgebra | rastbandargset rastbandarg[], callbackfunc regprocedure, pixeltype text, distancex integer, distancey integer, extenttype text, customextent raster, mask double precision[], weighted boolean, VARIADIC userargs text[] | raster - postgis_raster | public | _st_neighborhood | rast raster, band integer, columnx integer, rowy integer, distancex integer, distancey integer, exclude_nodata_value boolean | double precision[] - postgis_raster | public | _st_overlaps | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_pixelascentroids | rast raster, band integer, columnx integer, rowy integer, exclude_nodata_value boolean | TABLE(geom geometry, val double precision, x integer, y integer) - postgis_raster | public | _st_pixelaspolygons | rast raster, band integer, columnx integer, rowy integer, exclude_nodata_value boolean | TABLE(geom geometry, val double precision, x integer, y integer) - postgis_raster | public | _st_quantile | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | _st_rastertoworldcoord | rast raster, columnx integer, rowy integer, OUT longitude double precision, OUT latitude double precision | record - postgis_raster | public | _st_reclass | rast raster, VARIADIC reclassargset reclassarg[] | raster - postgis_raster | public | _st_roughness4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_samealignment_finalfn | agg agg_samealignment | boolean - postgis_raster | public | _st_samealignment_transfn | agg agg_samealignment, rast raster | agg_samealignment - postgis_raster | public | _st_setvalues | rast raster, nband integer, x integer, y integer, newvalueset double precision[], noset boolean[], hasnosetvalue boolean, nosetvalue double precision, keepnodata boolean | raster - postgis_raster | public | _st_slope4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_summarystats | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision | summarystats - postgis_raster | public | _st_summarystats_finalfn | internal | summarystats - postgis_raster | public | _st_summarystats_transfn | internal, raster, integer, boolean, double precision | internal - postgis_raster | public | _st_summarystats_transfn | internal, raster, boolean, double precision | internal - postgis_raster | public | _st_summarystats_transfn | internal, raster, integer, boolean | internal - postgis_raster | public | _st_tile | rast raster, width integer, height integer, nband integer[], padwithnodata boolean, nodataval double precision | SETOF raster - postgis_raster | public | _st_touches | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_tpi4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_tri4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_union_finalfn | internal | raster - postgis_raster | public | _st_union_transfn | internal, raster, integer, text | internal - postgis_raster | public | _st_union_transfn | internal, raster | internal - postgis_raster | public | _st_union_transfn | internal, raster, text | internal - postgis_raster | public | _st_union_transfn | internal, raster, integer | internal - postgis_raster | public | _st_union_transfn | internal, raster, unionarg[] | internal - postgis_raster | public | _st_valuecount | rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer, OUT percent double precision | SETOF record - postgis_raster | public | _st_valuecount | rast raster, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer, OUT percent double precision | SETOF record - postgis_raster | public | _st_within | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_worldtorastercoord | rast raster, longitude double precision, latitude double precision, OUT columnx integer, OUT rowy integer | record - postgis_raster | public | _updaterastersrid | schema_name name, table_name name, column_name name, new_srid integer | boolean - postgis_raster | public | addoverviewconstraints | ovschema name, ovtable name, ovcolumn name, refschema name, reftable name, refcolumn name, ovfactor integer | boolean - postgis_raster | public | addoverviewconstraints | ovtable name, ovcolumn name, reftable name, refcolumn name, ovfactor integer | boolean - postgis_raster | public | addrasterconstraints | rastschema name, rasttable name, rastcolumn name, srid boolean, scale_x boolean, scale_y boolean, blocksize_x boolean, blocksize_y boolean, same_alignment boolean, regular_blocking boolean, num_bands boolean, pixel_types boolean, nodata_values boolean, out_db boolean, extent boolean | boolean - postgis_raster | public | addrasterconstraints | rasttable name, rastcolumn name, VARIADIC constraints text[] | boolean - postgis_raster | public | addrasterconstraints | rastschema name, rasttable name, rastcolumn name, VARIADIC constraints text[] | boolean - postgis_raster | public | addrasterconstraints | rasttable name, rastcolumn name, srid boolean, scale_x boolean, scale_y boolean, blocksize_x boolean, blocksize_y boolean, same_alignment boolean, regular_blocking boolean, num_bands boolean, pixel_types boolean, nodata_values boolean, out_db boolean, extent boolean | boolean - postgis_raster | public | box3d | raster | box3d - postgis_raster | public | bytea | raster | bytea - postgis_raster | public | dropoverviewconstraints | ovtable name, ovcolumn name | boolean - postgis_raster | public | dropoverviewconstraints | ovschema name, ovtable name, ovcolumn name | boolean - postgis_raster | public | droprasterconstraints | rastschema name, rasttable name, rastcolumn name, srid boolean, scale_x boolean, scale_y boolean, blocksize_x boolean, blocksize_y boolean, same_alignment boolean, regular_blocking boolean, num_bands boolean, pixel_types boolean, nodata_values boolean, out_db boolean, extent boolean | boolean - postgis_raster | public | droprasterconstraints | rasttable name, rastcolumn name, VARIADIC constraints text[] | boolean - postgis_raster | public | droprasterconstraints | rastschema name, rasttable name, rastcolumn name, VARIADIC constraints text[] | boolean - postgis_raster | public | droprasterconstraints | rasttable name, rastcolumn name, srid boolean, scale_x boolean, scale_y boolean, blocksize_x boolean, blocksize_y boolean, same_alignment boolean, regular_blocking boolean, num_bands boolean, pixel_types boolean, nodata_values boolean, out_db boolean, extent boolean | boolean - postgis_raster | public | geometry_contained_by_raster | geometry, raster | boolean - postgis_raster | public | geometry_raster_contain | geometry, raster | boolean - postgis_raster | public | geometry_raster_overlap | geometry, raster | boolean - postgis_raster | public | postgis_gdal_version | | text - postgis_raster | public | postgis_noop | raster | geometry - postgis_raster | public | postgis_raster_lib_build_date | | text - postgis_raster | public | postgis_raster_lib_version | | text - postgis_raster | public | postgis_raster_scripts_installed | | text - postgis_raster | public | raster_above | raster, raster | boolean - postgis_raster | public | raster_below | raster, raster | boolean - postgis_raster | public | raster_contain | raster, raster | boolean - postgis_raster | public | raster_contained | raster, raster | boolean - postgis_raster | public | raster_contained_by_geometry | raster, geometry | boolean - postgis_raster | public | raster_eq | raster, raster | boolean - postgis_raster | public | raster_geometry_contain | raster, geometry | boolean - postgis_raster | public | raster_geometry_overlap | raster, geometry | boolean - postgis_raster | public | raster_hash | raster | integer - postgis_raster | public | raster_in | cstring | raster - postgis_raster | public | raster_left | raster, raster | boolean - postgis_raster | public | raster_out | raster | cstring - postgis_raster | public | raster_overabove | raster, raster | boolean - postgis_raster | public | raster_overbelow | raster, raster | boolean - postgis_raster | public | raster_overlap | raster, raster | boolean - postgis_raster | public | raster_overleft | raster, raster | boolean - postgis_raster | public | raster_overright | raster, raster | boolean - postgis_raster | public | raster_right | raster, raster | boolean - postgis_raster | public | raster_same | raster, raster | boolean - postgis_raster | public | st_addband | rast raster, index integer, outdbfile text, outdbindex integer[], nodataval double precision | raster - postgis_raster | public | st_addband | rast raster, outdbfile text, outdbindex integer[], index integer, nodataval double precision | raster - postgis_raster | public | st_addband | rast raster, addbandargset addbandarg[] | raster - postgis_raster | public | st_addband | rast raster, pixeltype text, initialvalue double precision, nodataval double precision | raster - postgis_raster | public | st_addband | rast raster, index integer, pixeltype text, initialvalue double precision, nodataval double precision | raster - postgis_raster | public | st_addband | torast raster, fromrast raster, fromband integer, torastindex integer | raster - postgis_raster | public | st_addband | torast raster, fromrasts raster[], fromband integer, torastindex integer | raster - postgis_raster | public | st_approxcount | rast raster, exclude_nodata_value boolean, sample_percent double precision | bigint - postgis_raster | public | st_approxcount | rast raster, sample_percent double precision | bigint - postgis_raster | public | st_approxcount | rast raster, nband integer, sample_percent double precision | bigint - postgis_raster | public | st_approxcount | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision | bigint - postgis_raster | public | st_approxhistogram | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision, bins integer, "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_approxhistogram | rast raster, sample_percent double precision, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_approxhistogram | rast raster, nband integer, sample_percent double precision, bins integer, width double precision[], "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_approxhistogram | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision, bins integer, width double precision[], "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_approxhistogram | rast raster, nband integer, sample_percent double precision, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_approxhistogram | rast raster, nband integer, sample_percent double precision, bins integer, "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_approxquantile | rast raster, exclude_nodata_value boolean, quantile double precision | double precision - postgis_raster | public | st_approxquantile | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision, quantile double precision | double precision - postgis_raster | public | st_approxquantile | rast raster, nband integer, sample_percent double precision, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_approxquantile | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_approxquantile | rast raster, quantile double precision | double precision - postgis_raster | public | st_approxquantile | rast raster, sample_percent double precision, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_approxquantile | rast raster, nband integer, sample_percent double precision, quantile double precision | double precision - postgis_raster | public | st_approxquantile | rast raster, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_approxquantile | rast raster, sample_percent double precision, quantile double precision | double precision - postgis_raster | public | st_approxsummarystats | rast raster, exclude_nodata_value boolean, sample_percent double precision | summarystats - postgis_raster | public | st_approxsummarystats | rast raster, sample_percent double precision | summarystats - postgis_raster | public | st_approxsummarystats | rast raster, nband integer, sample_percent double precision | summarystats - postgis_raster | public | st_approxsummarystats | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision | summarystats - postgis_raster | public | st_asbinary | raster, outasin boolean | bytea - postgis_raster | public | st_asgdalraster | rast raster, format text, options text[], srid integer | bytea - postgis_raster | public | st_ashexwkb | raster, outasin boolean | text - postgis_raster | public | st_asjpeg | rast raster, options text[] | bytea - postgis_raster | public | st_asjpeg | rast raster, nbands integer[], options text[] | bytea - postgis_raster | public | st_asjpeg | rast raster, nband integer, options text[] | bytea - postgis_raster | public | st_asjpeg | rast raster, nbands integer[], quality integer | bytea - postgis_raster | public | st_asjpeg | rast raster, nband integer, quality integer | bytea - postgis_raster | public | st_aspect | rast raster, nband integer, customextent raster, pixeltype text, units text, interpolate_nodata boolean | raster - postgis_raster | public | st_aspect | rast raster, nband integer, pixeltype text, units text, interpolate_nodata boolean | raster - postgis_raster | public | st_aspng | rast raster, options text[] | bytea - postgis_raster | public | st_aspng | rast raster, nbands integer[], options text[] | bytea - postgis_raster | public | st_aspng | rast raster, nband integer, compression integer | bytea - postgis_raster | public | st_aspng | rast raster, nband integer, options text[] | bytea - postgis_raster | public | st_aspng | rast raster, nbands integer[], compression integer | bytea - postgis_raster | public | st_asraster | geom geometry, ref raster, pixeltype text[], value double precision[], nodataval double precision[], touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, scalex double precision, scaley double precision, pixeltype text, value double precision, nodataval double precision, upperleftx double precision, upperlefty double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, width integer, height integer, pixeltype text[], value double precision[], nodataval double precision[], upperleftx double precision, upperlefty double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, scalex double precision, scaley double precision, gridx double precision, gridy double precision, pixeltype text[], value double precision[], nodataval double precision[], skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, width integer, height integer, gridx double precision, gridy double precision, pixeltype text, value double precision, nodataval double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, ref raster, pixeltype text, value double precision, nodataval double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, scalex double precision, scaley double precision, gridx double precision, gridy double precision, pixeltype text, value double precision, nodataval double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, width integer, height integer, gridx double precision, gridy double precision, pixeltype text[], value double precision[], nodataval double precision[], skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, width integer, height integer, pixeltype text, value double precision, nodataval double precision, upperleftx double precision, upperlefty double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, scalex double precision, scaley double precision, pixeltype text[], value double precision[], nodataval double precision[], upperleftx double precision, upperlefty double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_astiff | rast raster, options text[], srid integer | bytea - postgis_raster | public | st_astiff | rast raster, compression text, srid integer | bytea - postgis_raster | public | st_astiff | rast raster, nbands integer[], compression text, srid integer | bytea - postgis_raster | public | st_astiff | rast raster, nbands integer[], options text[], srid integer | bytea - postgis_raster | public | st_aswkb | raster, outasin boolean | bytea - postgis_raster | public | st_band | rast raster, nbands text, delimiter character | raster - postgis_raster | public | st_band | rast raster, nbands integer[] | raster - postgis_raster | public | st_band | rast raster, nband integer | raster - postgis_raster | public | st_bandfilesize | rast raster, band integer | bigint - postgis_raster | public | st_bandfiletimestamp | rast raster, band integer | bigint - postgis_raster | public | st_bandisnodata | rast raster, forcechecking boolean | boolean - postgis_raster | public | st_bandisnodata | rast raster, band integer, forcechecking boolean | boolean - postgis_raster | public | st_bandmetadata | rast raster, band integer | TABLE(pixeltype text, nodatavalue double precision, isoutdb boolean, path text, outdbbandnum integer, filesize bigint, filetimestamp bigint) - postgis_raster | public | st_bandmetadata | rast raster, band integer[] | TABLE(bandnum integer, pixeltype text, nodatavalue double precision, isoutdb boolean, path text, outdbbandnum integer, filesize bigint, filetimestamp bigint) - postgis_raster | public | st_bandnodatavalue | rast raster, band integer | double precision - postgis_raster | public | st_bandpath | rast raster, band integer | text - postgis_raster | public | st_bandpixeltype | rast raster, band integer | text - postgis_raster | public | st_clip | rast raster, geom geometry, nodataval double precision[], crop boolean | raster - postgis_raster | public | st_clip | rast raster, geom geometry, nodataval double precision, crop boolean | raster - postgis_raster | public | st_clip | rast raster, nband integer, geom geometry, nodataval double precision, crop boolean | raster - postgis_raster | public | st_clip | rast raster, nband integer[], geom geometry, nodataval double precision[], crop boolean | raster - postgis_raster | public | st_clip | rast raster, geom geometry, crop boolean | raster - postgis_raster | public | st_clip | rast raster, nband integer, geom geometry, crop boolean | raster - postgis_raster | public | st_colormap | rast raster, colormap text, method text | raster - postgis_raster | public | st_colormap | rast raster, nband integer, colormap text, method text | raster - postgis_raster | public | st_contains | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_contains | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_containsproperly | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_containsproperly | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_contour | rast raster, bandnumber integer, level_interval double precision, level_base double precision, fixed_levels double precision[], polygonize boolean | TABLE(geom geometry, id integer, value double precision) - postgis_raster | public | st_convexhull | raster | geometry - postgis_raster | public | st_count | rast raster, nband integer, exclude_nodata_value boolean | bigint - postgis_raster | public | st_count | rast raster, exclude_nodata_value boolean | bigint - postgis_raster | public | st_countagg | raster, integer, boolean, double precision | bigint - postgis_raster | public | st_countagg | raster, integer, boolean | bigint - postgis_raster | public | st_countagg | raster, boolean | bigint - postgis_raster | public | st_coveredby | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_coveredby | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_covers | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_covers | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_createoverview | tab regclass, col name, factor integer, algo text | regclass - postgis_raster | public | st_dfullywithin | rast1 raster, nband1 integer, rast2 raster, nband2 integer, distance double precision | boolean - postgis_raster | public | st_dfullywithin | rast1 raster, rast2 raster, distance double precision | boolean - postgis_raster | public | st_disjoint | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_disjoint | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_distinct4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_distinct4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_dumpaspolygons | rast raster, band integer, exclude_nodata_value boolean | SETOF geomval - postgis_raster | public | st_dumpvalues | rast raster, nband integer, exclude_nodata_value boolean | double precision[] - postgis_raster | public | st_dumpvalues | rast raster, nband integer[], exclude_nodata_value boolean | TABLE(nband integer, valarray double precision[]) - postgis_raster | public | st_dwithin | rast1 raster, nband1 integer, rast2 raster, nband2 integer, distance double precision | boolean - postgis_raster | public | st_dwithin | rast1 raster, rast2 raster, distance double precision | boolean - postgis_raster | public | st_envelope | raster | geometry - postgis_raster | public | st_fromgdalraster | gdaldata bytea, srid integer | raster - postgis_raster | public | st_gdaldrivers | OUT idx integer, OUT short_name text, OUT long_name text, OUT can_read boolean, OUT can_write boolean, OUT create_options text | SETOF record - postgis_raster | public | st_georeference | rast raster, format text | text - postgis_raster | public | st_geotransform | raster, OUT imag double precision, OUT jmag double precision, OUT theta_i double precision, OUT theta_ij double precision, OUT xoffset double precision, OUT yoffset double precision | record - postgis_raster | public | st_grayscale | rastbandargset rastbandarg[], extenttype text | raster - postgis_raster | public | st_grayscale | rast raster, redband integer, greenband integer, blueband integer, extenttype text | raster - postgis_raster | public | st_hasnoband | rast raster, nband integer | boolean - postgis_raster | public | st_height | raster | integer - postgis_raster | public | st_hillshade | rast raster, nband integer, customextent raster, pixeltype text, azimuth double precision, altitude double precision, max_bright double precision, scale double precision, interpolate_nodata boolean | raster - postgis_raster | public | st_hillshade | rast raster, nband integer, pixeltype text, azimuth double precision, altitude double precision, max_bright double precision, scale double precision, interpolate_nodata boolean | raster - postgis_raster | public | st_histogram | rast raster, nband integer, bins integer, "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_histogram | rast raster, nband integer, bins integer, width double precision[], "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_histogram | rast raster, nband integer, exclude_nodata_value boolean, bins integer, "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_histogram | rast raster, nband integer, exclude_nodata_value boolean, bins integer, width double precision[], "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_interpolateraster | geom geometry, options text, rast raster, bandnumber integer | raster - postgis_raster | public | st_intersection | rast1 raster, rast2 raster, returnband text, nodataval double precision[] | raster - postgis_raster | public | st_intersection | rast1 raster, band1 integer, rast2 raster, band2 integer, returnband text, nodataval double precision | raster - postgis_raster | public | st_intersection | rast1 raster, band1 integer, rast2 raster, band2 integer, returnband text, nodataval double precision[] | raster - postgis_raster | public | st_intersection | geomin geometry, rast raster, band integer | SETOF geomval - postgis_raster | public | st_intersection | rast1 raster, rast2 raster, nodataval double precision | raster - postgis_raster | public | st_intersection | rast1 raster, band1 integer, rast2 raster, band2 integer, nodataval double precision | raster - postgis_raster | public | st_intersection | rast1 raster, rast2 raster, returnband text, nodataval double precision | raster - postgis_raster | public | st_intersection | rast raster, band integer, geomin geometry | SETOF geomval - postgis_raster | public | st_intersection | rast1 raster, band1 integer, rast2 raster, band2 integer, nodataval double precision[] | raster - postgis_raster | public | st_intersection | rast raster, geomin geometry | SETOF geomval - postgis_raster | public | st_intersection | rast1 raster, rast2 raster, nodataval double precision[] | raster - postgis_raster | public | st_intersects | rast raster, geom geometry, nband integer | boolean - postgis_raster | public | st_intersects | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_intersects | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_intersects | rast raster, nband integer, geom geometry | boolean - postgis_raster | public | st_intersects | geom geometry, rast raster, nband integer | boolean - postgis_raster | public | st_invdistweight4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_iscoveragetile | rast raster, coverage raster, tilewidth integer, tileheight integer | boolean - postgis_raster | public | st_isempty | rast raster | boolean - postgis_raster | public | st_makeemptycoverage | tilewidth integer, tileheight integer, width integer, height integer, upperleftx double precision, upperlefty double precision, scalex double precision, scaley double precision, skewx double precision, skewy double precision, srid integer | SETOF raster - postgis_raster | public | st_makeemptyraster | width integer, height integer, upperleftx double precision, upperlefty double precision, scalex double precision, scaley double precision, skewx double precision, skewy double precision, srid integer | raster - postgis_raster | public | st_makeemptyraster | width integer, height integer, upperleftx double precision, upperlefty double precision, pixelsize double precision | raster - postgis_raster | public | st_makeemptyraster | rast raster | raster - postgis_raster | public | st_mapalgebra | rast1 raster, rast2 raster, expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision | raster - postgis_raster | public | st_mapalgebra | rast raster, pixeltype text, expression text, nodataval double precision | raster - postgis_raster | public | st_mapalgebra | rast1 raster, band1 integer, rast2 raster, band2 integer, expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision | raster - postgis_raster | public | st_mapalgebra | rast raster, nband integer[], callbackfunc regprocedure, pixeltype text, extenttype text, customextent raster, distancex integer, distancey integer, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebra | rast raster, nband integer, callbackfunc regprocedure, mask double precision[], weighted boolean, pixeltype text, extenttype text, customextent raster, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebra | rastbandargset rastbandarg[], callbackfunc regprocedure, pixeltype text, extenttype text, customextent raster, distancex integer, distancey integer, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebra | rast1 raster, nband1 integer, rast2 raster, nband2 integer, callbackfunc regprocedure, pixeltype text, extenttype text, customextent raster, distancex integer, distancey integer, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebra | rast raster, nband integer, callbackfunc regprocedure, pixeltype text, extenttype text, customextent raster, distancex integer, distancey integer, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebra | rast raster, nband integer, pixeltype text, expression text, nodataval double precision | raster - postgis_raster | public | st_mapalgebraexpr | rast1 raster, rast2 raster, expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision | raster - postgis_raster | public | st_mapalgebraexpr | rast raster, pixeltype text, expression text, nodataval double precision | raster - postgis_raster | public | st_mapalgebraexpr | rast1 raster, band1 integer, rast2 raster, band2 integer, expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision | raster - postgis_raster | public | st_mapalgebraexpr | rast raster, band integer, pixeltype text, expression text, nodataval double precision | raster - postgis_raster | public | st_mapalgebrafct | rast raster, onerastuserfunc regprocedure | raster - postgis_raster | public | st_mapalgebrafct | rast1 raster, band1 integer, rast2 raster, band2 integer, tworastuserfunc regprocedure, pixeltype text, extenttype text, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebrafct | rast raster, pixeltype text, onerastuserfunc regprocedure | raster - postgis_raster | public | st_mapalgebrafct | rast raster, onerastuserfunc regprocedure, VARIADIC args text[] | raster - postgis_raster | public | st_mapalgebrafct | rast raster, pixeltype text, onerastuserfunc regprocedure, VARIADIC args text[] | raster - postgis_raster | public | st_mapalgebrafct | rast raster, band integer, onerastuserfunc regprocedure, VARIADIC args text[] | raster - postgis_raster | public | st_mapalgebrafct | rast raster, band integer, pixeltype text, onerastuserfunc regprocedure | raster - postgis_raster | public | st_mapalgebrafct | rast1 raster, rast2 raster, tworastuserfunc regprocedure, pixeltype text, extenttype text, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebrafct | rast raster, band integer, pixeltype text, onerastuserfunc regprocedure, VARIADIC args text[] | raster - postgis_raster | public | st_mapalgebrafct | rast raster, band integer, onerastuserfunc regprocedure | raster - postgis_raster | public | st_mapalgebrafctngb | rast raster, band integer, pixeltype text, ngbwidth integer, ngbheight integer, onerastngbuserfunc regprocedure, nodatamode text, VARIADIC args text[] | raster - postgis_raster | public | st_max4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_max4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_mean4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_mean4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_memsize | raster | integer - postgis_raster | public | st_metadata | rast raster, OUT upperleftx double precision, OUT upperlefty double precision, OUT width integer, OUT height integer, OUT scalex double precision, OUT scaley double precision, OUT skewx double precision, OUT skewy double precision, OUT srid integer, OUT numbands integer | record - postgis_raster | public | st_min4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_min4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_minconvexhull | rast raster, nband integer | geometry - postgis_raster | public | st_mindist4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_minpossiblevalue | pixeltype text | double precision - postgis_raster | public | st_nearestvalue | rast raster, columnx integer, rowy integer, exclude_nodata_value boolean | double precision - postgis_raster | public | st_nearestvalue | rast raster, band integer, columnx integer, rowy integer, exclude_nodata_value boolean | double precision - postgis_raster | public | st_nearestvalue | rast raster, band integer, pt geometry, exclude_nodata_value boolean | double precision - postgis_raster | public | st_nearestvalue | rast raster, pt geometry, exclude_nodata_value boolean | double precision - postgis_raster | public | st_neighborhood | rast raster, columnx integer, rowy integer, distancex integer, distancey integer, exclude_nodata_value boolean | double precision[] - postgis_raster | public | st_neighborhood | rast raster, band integer, pt geometry, distancex integer, distancey integer, exclude_nodata_value boolean | double precision[] - postgis_raster | public | st_neighborhood | rast raster, band integer, columnx integer, rowy integer, distancex integer, distancey integer, exclude_nodata_value boolean | double precision[] - postgis_raster | public | st_neighborhood | rast raster, pt geometry, distancex integer, distancey integer, exclude_nodata_value boolean | double precision[] - postgis_raster | public | st_notsamealignmentreason | rast1 raster, rast2 raster | text - postgis_raster | public | st_numbands | raster | integer - postgis_raster | public | st_overlaps | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_overlaps | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_pixelascentroid | rast raster, x integer, y integer | geometry - postgis_raster | public | st_pixelascentroids | rast raster, band integer, exclude_nodata_value boolean | TABLE(geom geometry, val double precision, x integer, y integer) - postgis_raster | public | st_pixelaspoint | rast raster, x integer, y integer | geometry - postgis_raster | public | st_pixelaspoints | rast raster, band integer, exclude_nodata_value boolean | TABLE(geom geometry, val double precision, x integer, y integer) - postgis_raster | public | st_pixelaspolygon | rast raster, x integer, y integer | geometry - postgis_raster | public | st_pixelaspolygons | rast raster, band integer, exclude_nodata_value boolean | TABLE(geom geometry, val double precision, x integer, y integer) - postgis_raster | public | st_pixelheight | raster | double precision - postgis_raster | public | st_pixelofvalue | rast raster, nband integer, search double precision, exclude_nodata_value boolean | TABLE(x integer, y integer) - postgis_raster | public | st_pixelofvalue | rast raster, search double precision, exclude_nodata_value boolean | TABLE(x integer, y integer) - postgis_raster | public | st_pixelofvalue | rast raster, nband integer, search double precision[], exclude_nodata_value boolean | TABLE(val double precision, x integer, y integer) - postgis_raster | public | st_pixelofvalue | rast raster, search double precision[], exclude_nodata_value boolean | TABLE(val double precision, x integer, y integer) - postgis_raster | public | st_pixelwidth | raster | double precision - postgis_raster | public | st_polygon | rast raster, band integer | geometry - postgis_raster | public | st_quantile | rast raster, exclude_nodata_value boolean, quantile double precision | double precision - postgis_raster | public | st_quantile | rast raster, nband integer, quantile double precision | double precision - postgis_raster | public | st_quantile | rast raster, nband integer, exclude_nodata_value boolean, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_quantile | rast raster, quantile double precision | double precision - postgis_raster | public | st_quantile | rast raster, nband integer, exclude_nodata_value boolean, quantile double precision | double precision - postgis_raster | public | st_quantile | rast raster, nband integer, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_quantile | rast raster, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_range4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_range4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_rastertoworldcoord | rast raster, columnx integer, rowy integer, OUT longitude double precision, OUT latitude double precision | record - postgis_raster | public | st_rastertoworldcoordx | rast raster, xr integer | double precision - postgis_raster | public | st_rastertoworldcoordx | rast raster, xr integer, yr integer | double precision - postgis_raster | public | st_rastertoworldcoordy | rast raster, xr integer, yr integer | double precision - postgis_raster | public | st_rastertoworldcoordy | rast raster, yr integer | double precision - postgis_raster | public | st_rastfromhexwkb | text | raster - postgis_raster | public | st_rastfromwkb | bytea | raster - postgis_raster | public | st_reclass | rast raster, nband integer, reclassexpr text, pixeltype text, nodataval double precision | raster - postgis_raster | public | st_reclass | rast raster, VARIADIC reclassargset reclassarg[] | raster - postgis_raster | public | st_reclass | rast raster, reclassexpr text, pixeltype text | raster - postgis_raster | public | st_resample | rast raster, ref raster, usescale boolean, algorithm text, maxerr double precision | raster - postgis_raster | public | st_resample | rast raster, width integer, height integer, gridx double precision, gridy double precision, skewx double precision, skewy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_resample | rast raster, scalex double precision, scaley double precision, gridx double precision, gridy double precision, skewx double precision, skewy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_resample | rast raster, ref raster, algorithm text, maxerr double precision, usescale boolean | raster - postgis_raster | public | st_rescale | rast raster, scalexy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_rescale | rast raster, scalex double precision, scaley double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_resize | rast raster, width integer, height integer, algorithm text, maxerr double precision | raster - postgis_raster | public | st_resize | rast raster, width text, height text, algorithm text, maxerr double precision | raster - postgis_raster | public | st_resize | rast raster, percentwidth double precision, percentheight double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_reskew | rast raster, skewx double precision, skewy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_reskew | rast raster, skewxy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_retile | tab regclass, col name, ext geometry, sfx double precision, sfy double precision, tw integer, th integer, algo text | SETOF raster - postgis_raster | public | st_rotation | raster | double precision - postgis_raster | public | st_roughness | rast raster, nband integer, customextent raster, pixeltype text, interpolate_nodata boolean | raster - postgis_raster | public | st_roughness | rast raster, nband integer, pixeltype text, interpolate_nodata boolean | raster - postgis_raster | public | st_samealignment | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_samealignment | raster | boolean - postgis_raster | public | st_samealignment | ulx1 double precision, uly1 double precision, scalex1 double precision, scaley1 double precision, skewx1 double precision, skewy1 double precision, ulx2 double precision, uly2 double precision, scalex2 double precision, scaley2 double precision, skewx2 double precision, skewy2 double precision | boolean - postgis_raster | public | st_scalex | raster | double precision - postgis_raster | public | st_scaley | raster | double precision - postgis_raster | public | st_setbandindex | rast raster, band integer, outdbindex integer, force boolean | raster - postgis_raster | public | st_setbandisnodata | rast raster, band integer | raster - postgis_raster | public | st_setbandnodatavalue | rast raster, band integer, nodatavalue double precision, forcechecking boolean | raster - postgis_raster | public | st_setbandnodatavalue | rast raster, nodatavalue double precision | raster - postgis_raster | public | st_setbandpath | rast raster, band integer, outdbpath text, outdbindex integer, force boolean | raster - postgis_raster | public | st_setgeoreference | rast raster, upperleftx double precision, upperlefty double precision, scalex double precision, scaley double precision, skewx double precision, skewy double precision | raster - postgis_raster | public | st_setgeoreference | rast raster, georef text, format text | raster - postgis_raster | public | st_setgeotransform | rast raster, imag double precision, jmag double precision, theta_i double precision, theta_ij double precision, xoffset double precision, yoffset double precision | raster - postgis_raster | public | st_setm | rast raster, geom geometry, resample text, band integer | geometry - postgis_raster | public | st_setrotation | rast raster, rotation double precision | raster - postgis_raster | public | st_setscale | rast raster, scalex double precision, scaley double precision | raster - postgis_raster | public | st_setscale | rast raster, scale double precision | raster - postgis_raster | public | st_setskew | rast raster, skewx double precision, skewy double precision | raster - postgis_raster | public | st_setskew | rast raster, skew double precision | raster - postgis_raster | public | st_setsrid | rast raster, srid integer | raster - postgis_raster | public | st_setupperleft | rast raster, upperleftx double precision, upperlefty double precision | raster - postgis_raster | public | st_setvalue | rast raster, nband integer, geom geometry, newvalue double precision | raster - postgis_raster | public | st_setvalue | rast raster, geom geometry, newvalue double precision | raster - postgis_raster | public | st_setvalue | rast raster, x integer, y integer, newvalue double precision | raster - postgis_raster | public | st_setvalue | rast raster, band integer, x integer, y integer, newvalue double precision | raster - postgis_raster | public | st_setvalues | rast raster, nband integer, x integer, y integer, newvalueset double precision[], nosetvalue double precision, keepnodata boolean | raster - postgis_raster | public | st_setvalues | rast raster, nband integer, x integer, y integer, newvalueset double precision[], noset boolean[], keepnodata boolean | raster - postgis_raster | public | st_setvalues | rast raster, nband integer, x integer, y integer, width integer, height integer, newvalue double precision, keepnodata boolean | raster - postgis_raster | public | st_setvalues | rast raster, x integer, y integer, width integer, height integer, newvalue double precision, keepnodata boolean | raster - postgis_raster | public | st_setvalues | rast raster, nband integer, geomvalset geomval[], keepnodata boolean | raster - postgis_raster | public | st_setz | rast raster, geom geometry, resample text, band integer | geometry - postgis_raster | public | st_skewx | raster | double precision - postgis_raster | public | st_skewy | raster | double precision - postgis_raster | public | st_slope | rast raster, nband integer, customextent raster, pixeltype text, units text, scale double precision, interpolate_nodata boolean | raster - postgis_raster | public | st_slope | rast raster, nband integer, pixeltype text, units text, scale double precision, interpolate_nodata boolean | raster - postgis_raster | public | st_snaptogrid | rast raster, gridx double precision, gridy double precision, scalex double precision, scaley double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_snaptogrid | rast raster, gridx double precision, gridy double precision, algorithm text, maxerr double precision, scalex double precision, scaley double precision | raster - postgis_raster | public | st_snaptogrid | rast raster, gridx double precision, gridy double precision, scalexy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_srid | raster | integer - postgis_raster | public | st_stddev4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_stddev4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_sum4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_sum4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_summary | rast raster | text - postgis_raster | public | st_summarystats | rast raster, nband integer, exclude_nodata_value boolean | summarystats - postgis_raster | public | st_summarystats | rast raster, exclude_nodata_value boolean | summarystats - postgis_raster | public | st_summarystatsagg | raster, integer, boolean, double precision | summarystats - postgis_raster | public | st_summarystatsagg | raster, integer, boolean | summarystats - postgis_raster | public | st_summarystatsagg | raster, boolean, double precision | summarystats - postgis_raster | public | st_tile | rast raster, nband integer, width integer, height integer, padwithnodata boolean, nodataval double precision | SETOF raster - postgis_raster | public | st_tile | rast raster, nband integer[], width integer, height integer, padwithnodata boolean, nodataval double precision | SETOF raster - postgis_raster | public | st_tile | rast raster, width integer, height integer, padwithnodata boolean, nodataval double precision | SETOF raster - postgis_raster | public | st_touches | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_touches | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_tpi | rast raster, nband integer, customextent raster, pixeltype text, interpolate_nodata boolean | raster - postgis_raster | public | st_tpi | rast raster, nband integer, pixeltype text, interpolate_nodata boolean | raster - postgis_raster | public | st_transform | rast raster, srid integer, algorithm text, maxerr double precision, scalex double precision, scaley double precision | raster - postgis_raster | public | st_transform | rast raster, srid integer, scalexy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_transform | rast raster, alignto raster, algorithm text, maxerr double precision | raster - postgis_raster | public | st_transform | rast raster, srid integer, scalex double precision, scaley double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_tri | rast raster, nband integer, customextent raster, pixeltype text, interpolate_nodata boolean | raster - postgis_raster | public | st_tri | rast raster, nband integer, pixeltype text, interpolate_nodata boolean | raster - postgis_raster | public | st_union | raster, integer | raster - postgis_raster | public | st_union | raster | raster - postgis_raster | public | st_union | raster, unionarg[] | raster - postgis_raster | public | st_union | raster, integer, text | raster - postgis_raster | public | st_union | raster, text | raster - postgis_raster | public | st_upperleftx | raster | double precision - postgis_raster | public | st_upperlefty | raster | double precision - postgis_raster | public | st_value | rast raster, band integer, x integer, y integer, exclude_nodata_value boolean | double precision - postgis_raster | public | st_value | rast raster, x integer, y integer, exclude_nodata_value boolean | double precision - postgis_raster | public | st_value | rast raster, band integer, pt geometry, exclude_nodata_value boolean, resample text | double precision - postgis_raster | public | st_value | rast raster, pt geometry, exclude_nodata_value boolean | double precision - postgis_raster | public | st_valuecount | rastertable text, rastercolumn text, nband integer, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer | SETOF record - postgis_raster | public | st_valuecount | rast raster, nband integer, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer | SETOF record - postgis_raster | public | st_valuecount | rastertable text, rastercolumn text, nband integer, searchvalue double precision, roundto double precision | integer - postgis_raster | public | st_valuecount | rastertable text, rastercolumn text, searchvalue double precision, roundto double precision | integer - postgis_raster | public | st_valuecount | rast raster, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer | SETOF record - postgis_raster | public | st_valuecount | rast raster, nband integer, searchvalue double precision, roundto double precision | integer - postgis_raster | public | st_valuecount | rast raster, searchvalue double precision, roundto double precision | integer - postgis_raster | public | st_valuecount | rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer | SETOF record - postgis_raster | public | st_valuecount | rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalue double precision, roundto double precision | integer - postgis_raster | public | st_valuecount | rast raster, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer | SETOF record - postgis_raster | public | st_valuecount | rastertable text, rastercolumn text, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer | SETOF record - postgis_raster | public | st_valuecount | rast raster, nband integer, exclude_nodata_value boolean, searchvalue double precision, roundto double precision | integer - postgis_raster | public | st_valuepercent | rast raster, searchvalues double precision[], roundto double precision, OUT value double precision, OUT percent double precision | SETOF record - postgis_raster | public | st_valuepercent | rastertable text, rastercolumn text, nband integer, searchvalue double precision, roundto double precision | double precision - postgis_raster | public | st_valuepercent | rastertable text, rastercolumn text, searchvalue double precision, roundto double precision | double precision - postgis_raster | public | st_valuepercent | rastertable text, rastercolumn text, searchvalues double precision[], roundto double precision, OUT value double precision, OUT percent double precision | SETOF record - postgis_raster | public | st_valuepercent | rast raster, nband integer, searchvalue double precision, roundto double precision | double precision - postgis_raster | public | st_valuepercent | rast raster, searchvalue double precision, roundto double precision | double precision - postgis_raster | public | st_valuepercent | rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT percent double precision | SETOF record - postgis_raster | public | st_valuepercent | rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalue double precision, roundto double precision | double precision - postgis_raster | public | st_valuepercent | rast raster, nband integer, searchvalues double precision[], roundto double precision, OUT value double precision, OUT percent double precision | SETOF record - postgis_raster | public | st_valuepercent | rastertable text, rastercolumn text, nband integer, searchvalues double precision[], roundto double precision, OUT value double precision, OUT percent double precision | SETOF record - postgis_raster | public | st_valuepercent | rast raster, nband integer, exclude_nodata_value boolean, searchvalue double precision, roundto double precision | double precision - postgis_raster | public | st_valuepercent | rast raster, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT percent double precision | SETOF record - postgis_raster | public | st_width | raster | integer - postgis_raster | public | st_within | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_within | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_worldtorastercoord | rast raster, longitude double precision, latitude double precision, OUT columnx integer, OUT rowy integer | record - postgis_raster | public | st_worldtorastercoord | rast raster, pt geometry, OUT columnx integer, OUT rowy integer | record - postgis_raster | public | st_worldtorastercoordx | rast raster, xw double precision | integer - postgis_raster | public | st_worldtorastercoordx | rast raster, xw double precision, yw double precision | integer - postgis_raster | public | st_worldtorastercoordx | rast raster, pt geometry | integer - postgis_raster | public | st_worldtorastercoordy | rast raster, xw double precision, yw double precision | integer - postgis_raster | public | st_worldtorastercoordy | rast raster, pt geometry | integer - postgis_raster | public | st_worldtorastercoordy | rast raster, yw double precision | integer - postgis_raster | public | updaterastersrid | table_name name, column_name name, new_srid integer | boolean - postgis_raster | public | updaterastersrid | schema_name name, table_name name, column_name name, new_srid integer | boolean - postgis_sfcgal | public | postgis_sfcgal_full_version | | text - postgis_sfcgal | public | postgis_sfcgal_noop | geometry | geometry - postgis_sfcgal | public | postgis_sfcgal_scripts_installed | | text - postgis_sfcgal | public | postgis_sfcgal_version | | text - postgis_sfcgal | public | st_3darea | geometry | double precision - postgis_sfcgal | public | st_3dconvexhull | geometry | geometry - postgis_sfcgal | public | st_3ddifference | geom1 geometry, geom2 geometry | geometry - postgis_sfcgal | public | st_3dintersection | geom1 geometry, geom2 geometry | geometry - postgis_sfcgal | public | st_3dunion | geom1 geometry, geom2 geometry | geometry - postgis_sfcgal | public | st_3dunion | geometry | geometry - postgis_sfcgal | public | st_alphashape | g1 geometry, alpha double precision, allow_holes boolean | geometry - postgis_sfcgal | public | st_approximatemedialaxis | geometry | geometry - postgis_sfcgal | public | st_constraineddelaunaytriangles | geometry | geometry - postgis_sfcgal | public | st_extrude | geometry, double precision, double precision, double precision | geometry - postgis_sfcgal | public | st_forcelhr | geometry | geometry - postgis_sfcgal | public | st_isplanar | geometry | boolean - postgis_sfcgal | public | st_issolid | geometry | boolean - postgis_sfcgal | public | st_makesolid | geometry | geometry - postgis_sfcgal | public | st_minkowskisum | geometry, geometry | geometry - postgis_sfcgal | public | st_optimalalphashape | g1 geometry, allow_holes boolean, nb_components integer | geometry - postgis_sfcgal | public | st_orientation | geometry | integer - postgis_sfcgal | public | st_straightskeleton | geometry | geometry - postgis_sfcgal | public | st_tesselate | geometry | geometry - postgis_sfcgal | public | st_volume | geometry | double precision - postgis_tiger_geocoder | tiger | count_words | character varying | integer - postgis_tiger_geocoder | tiger | create_census_base_tables | | text - postgis_tiger_geocoder | tiger | cull_null | character varying | character varying - postgis_tiger_geocoder | tiger | diff_zip | zip1 character varying, zip2 character varying | integer - postgis_tiger_geocoder | tiger | drop_dupe_featnames_generate_script | | text - postgis_tiger_geocoder | tiger | drop_indexes_generate_script | tiger_data_schema text | text - postgis_tiger_geocoder | tiger | drop_nation_tables_generate_script | param_schema text | text - postgis_tiger_geocoder | tiger | drop_state_tables_generate_script | param_state text, param_schema text | text - postgis_tiger_geocoder | tiger | end_soundex | character varying | character varying - postgis_tiger_geocoder | tiger | geocode | input character varying, max_results integer, restrict_geom geometry, OUT addy norm_addy, OUT geomout geometry, OUT rating integer | SETOF record - postgis_tiger_geocoder | tiger | geocode | in_addy norm_addy, max_results integer, restrict_geom geometry, OUT addy norm_addy, OUT geomout geometry, OUT rating integer | SETOF record - postgis_tiger_geocoder | tiger | geocode_address | parsed norm_addy, max_results integer, restrict_geom geometry, OUT addy norm_addy, OUT geomout geometry, OUT rating integer | SETOF record - postgis_tiger_geocoder | tiger | geocode_intersection | roadway1 text, roadway2 text, in_state text, in_city text, in_zip text, num_results integer, OUT addy norm_addy, OUT geomout geometry, OUT rating integer | SETOF record - postgis_tiger_geocoder | tiger | geocode_location | parsed norm_addy, restrict_geom geometry, OUT addy norm_addy, OUT geomout geometry, OUT rating integer | SETOF record - postgis_tiger_geocoder | tiger | get_geocode_setting | setting_name text | text - postgis_tiger_geocoder | tiger | get_last_words | inputstring character varying, count integer | character varying - postgis_tiger_geocoder | tiger | get_tract | loc_geom geometry, output_field text | text - postgis_tiger_geocoder | tiger | greatest_hn | fromhn character varying, tohn character varying | integer - postgis_tiger_geocoder | tiger | includes_address | given_address integer, addr1 integer, addr2 integer, addr3 integer, addr4 integer | boolean - postgis_tiger_geocoder | tiger | install_geocode_settings | | void - postgis_tiger_geocoder | tiger | install_missing_indexes | | boolean - postgis_tiger_geocoder | tiger | install_pagc_tables | | void - postgis_tiger_geocoder | tiger | interpolate_from_address | given_address integer, in_addr1 character varying, in_addr2 character varying, in_road geometry, in_side character varying, in_offset_m double precision | geometry - postgis_tiger_geocoder | tiger | is_pretype | text | boolean - postgis_tiger_geocoder | tiger | least_hn | fromhn character varying, tohn character varying | integer - postgis_tiger_geocoder | tiger | levenshtein_ignore_case | character varying, character varying | integer - postgis_tiger_geocoder | tiger | loader_generate_census_script | param_states text[], os text | SETOF text - postgis_tiger_geocoder | tiger | loader_generate_nation_script | os text | SETOF text - postgis_tiger_geocoder | tiger | loader_generate_script | param_states text[], os text | SETOF text - postgis_tiger_geocoder | tiger | loader_load_staged_data | param_staging_table text, param_target_table text | integer - postgis_tiger_geocoder | tiger | loader_load_staged_data | param_staging_table text, param_target_table text, param_columns_exclude text[] | integer - postgis_tiger_geocoder | tiger | loader_macro_replace | param_input text, param_keys text[], param_values text[] | text - postgis_tiger_geocoder | tiger | location_extract | fullstreet character varying, stateabbrev character varying | character varying - postgis_tiger_geocoder | tiger | location_extract_countysub_exact | fullstreet character varying, stateabbrev character varying | character varying - postgis_tiger_geocoder | tiger | location_extract_countysub_fuzzy | fullstreet character varying, stateabbrev character varying | character varying - postgis_tiger_geocoder | tiger | location_extract_place_exact | fullstreet character varying, stateabbrev character varying | character varying - postgis_tiger_geocoder | tiger | location_extract_place_fuzzy | fullstreet character varying, stateabbrev character varying | character varying - postgis_tiger_geocoder | tiger | missing_indexes_generate_script | | text - postgis_tiger_geocoder | tiger | normalize_address | in_rawinput character varying | norm_addy - postgis_tiger_geocoder | tiger | nullable_levenshtein | character varying, character varying | integer - postgis_tiger_geocoder | tiger | numeric_streets_equal | input_street character varying, output_street character varying | boolean - postgis_tiger_geocoder | tiger | pagc_normalize_address | in_rawinput character varying | norm_addy - postgis_tiger_geocoder | tiger | pprint_addy | input norm_addy | character varying - postgis_tiger_geocoder | tiger | rate_attributes | dirpa character varying, dirpb character varying, streetnamea character varying, streetnameb character varying, streettypea character varying, streettypeb character varying, dirsa character varying, dirsb character varying, prequalabr character varying | integer - postgis_tiger_geocoder | tiger | rate_attributes | dirpa character varying, dirpb character varying, streetnamea character varying, streetnameb character varying, streettypea character varying, streettypeb character varying, dirsa character varying, dirsb character varying, locationa character varying, locationb character varying, prequalabr character varying | integer - postgis_tiger_geocoder | tiger | reverse_geocode | pt geometry, include_strnum_range boolean, OUT intpt geometry[], OUT addy norm_addy[], OUT street character varying[] | record - postgis_tiger_geocoder | tiger | set_geocode_setting | setting_name text, setting_value text | text - postgis_tiger_geocoder | tiger | setsearchpathforinstall | a_schema_name text | text - postgis_tiger_geocoder | tiger | state_extract | rawinput character varying | character varying - postgis_tiger_geocoder | tiger | topology_load_tiger | toponame character varying, region_type character varying, region_id character varying | text - postgis_tiger_geocoder | tiger | utmzone | geometry | integer - postgis_tiger_geocoder | tiger | zip_range | zip text, range_start integer, range_end integer | character varying[] - postgis_topology | topology | _asgmledge | edge_id integer, start_node integer, end_node integer, line geometry, visitedtable regclass, nsprefix_in text, prec integer, options integer, idprefix text, gmlver integer | text - postgis_topology | topology | _asgmlface | toponame text, face_id integer, visitedtable regclass, nsprefix_in text, prec integer, options integer, idprefix text, gmlver integer | text - postgis_topology | topology | _asgmlnode | id integer, point geometry, nsprefix_in text, prec integer, options integer, idprefix text, gmlver integer | text - postgis_topology | topology | _checkedgelinking | curedge_edge_id integer, prevedge_edge_id integer, prevedge_next_left_edge integer, prevedge_next_right_edge integer | validatetopology_returntype - postgis_topology | topology | _st_adjacentedges | atopology character varying, anode integer, anedge integer | integer[] - postgis_topology | topology | _st_mintolerance | ageom geometry | double precision - postgis_topology | topology | _st_mintolerance | atopology character varying, ageom geometry | double precision - postgis_topology | topology | _validatetopologyedgelinking | bbox geometry | SETOF validatetopology_returntype - postgis_topology | topology | _validatetopologygetfaceshellmaximaledgering | atopology character varying, aface integer | geometry - postgis_topology | topology | _validatetopologygetringedges | starting_edge integer | integer[] - postgis_topology | topology | _validatetopologyrings | bbox geometry | SETOF validatetopology_returntype - postgis_topology | topology | addedge | atopology character varying, aline geometry | integer - postgis_topology | topology | addface | atopology character varying, apoly geometry, force_new boolean | integer - postgis_topology | topology | addnode | atopology character varying, apoint geometry, allowedgesplitting boolean, setcontainingface boolean | integer - postgis_topology | topology | addtopogeometrycolumn | toponame character varying, schema character varying, tbl character varying, col character varying, ltype character varying, child integer | integer - postgis_topology | topology | addtopogeometrycolumn | character varying, character varying, character varying, character varying, character varying | integer - postgis_topology | topology | addtosearchpath | a_schema_name character varying | text - postgis_topology | topology | asgml | tg topogeometry, nsprefix text, prec integer, options integer, vis regclass | text - postgis_topology | topology | asgml | tg topogeometry, nsprefix text, prec integer, opts integer | text - postgis_topology | topology | asgml | tg topogeometry, nsprefix text | text - postgis_topology | topology | asgml | tg topogeometry, nsprefix_in text, precision_in integer, options_in integer, visitedtable regclass, idprefix text, gmlver integer | text - postgis_topology | topology | asgml | tg topogeometry | text - postgis_topology | topology | asgml | tg topogeometry, nsprefix text, prec integer, options integer, visitedtable regclass, idprefix text | text - postgis_topology | topology | asgml | tg topogeometry, visitedtable regclass, nsprefix text | text - postgis_topology | topology | asgml | tg topogeometry, visitedtable regclass | text - postgis_topology | topology | astopojson | tg topogeometry, edgemaptable regclass | text - postgis_topology | topology | cleartopogeom | tg topogeometry | topogeometry - postgis_topology | topology | copytopology | atopology character varying, newtopo character varying | integer - postgis_topology | topology | createtopogeom | toponame character varying, tg_type integer, layer_id integer, tg_objs topoelementarray | topogeometry - postgis_topology | topology | createtopogeom | toponame character varying, tg_type integer, layer_id integer | topogeometry - postgis_topology | topology | createtopology | atopology character varying, srid integer, prec double precision, hasz boolean | integer - postgis_topology | topology | createtopology | character varying, integer | integer - postgis_topology | topology | createtopology | toponame character varying, srid integer, prec double precision | integer - postgis_topology | topology | createtopology | character varying | integer - postgis_topology | topology | droptopogeometrycolumn | schema character varying, tbl character varying, col character varying | text - postgis_topology | topology | droptopology | atopology character varying | text - postgis_topology | topology | equals | tg1 topogeometry, tg2 topogeometry | boolean - postgis_topology | topology | findlayer | schema_name name, table_name name, feature_column name | layer - postgis_topology | topology | findlayer | topology_id integer, layer_id integer | layer - postgis_topology | topology | findlayer | layer_table regclass, feature_column name | layer - postgis_topology | topology | findlayer | tg topogeometry | layer - postgis_topology | topology | findtopology | integer | topology - postgis_topology | topology | findtopology | text | topology - postgis_topology | topology | findtopology | topogeometry | topology - postgis_topology | topology | findtopology | name, name, name | topology - postgis_topology | topology | findtopology | regclass, name | topology - postgis_topology | topology | geometry | topogeom topogeometry | geometry - postgis_topology | topology | geometrytype | tg topogeometry | text - postgis_topology | topology | getedgebypoint | atopology character varying, apoint geometry, tol1 double precision | integer - postgis_topology | topology | getfacebypoint | atopology character varying, apoint geometry, tol1 double precision | integer - postgis_topology | topology | getfacecontainingpoint | atopology text, apoint geometry | integer - postgis_topology | topology | getnodebypoint | atopology character varying, apoint geometry, tol1 double precision | integer - postgis_topology | topology | getnodeedges | atopology character varying, anode integer | SETOF getfaceedges_returntype - postgis_topology | topology | getringedges | atopology character varying, anedge integer, maxedges integer | SETOF getfaceedges_returntype - postgis_topology | topology | gettopogeomelementarray | toponame character varying, layer_id integer, tgid integer | topoelementarray - postgis_topology | topology | gettopogeomelementarray | tg topogeometry | topoelementarray - postgis_topology | topology | gettopogeomelements | tg topogeometry | SETOF topoelement - postgis_topology | topology | gettopogeomelements | toponame character varying, layerid integer, tgid integer | SETOF topoelement - postgis_topology | topology | gettopologyid | toponame character varying | integer - postgis_topology | topology | gettopologyname | topoid integer | character varying - postgis_topology | topology | gettopologysrid | toponame character varying | integer - postgis_topology | topology | intersects | tg1 topogeometry, tg2 topogeometry | boolean - postgis_topology | topology | layertrigger | | trigger - postgis_topology | topology | polygonize | toponame character varying | text - postgis_topology | topology | populate_topology_layer | | TABLE(schema_name text, table_name text, feature_column text) - postgis_topology | topology | postgis_topology_scripts_installed | | text - postgis_topology | topology | relationtrigger | | trigger - postgis_topology | topology | removeunusedprimitives | atopology text, bbox geometry | integer - postgis_topology | topology | st_addedgemodface | atopology character varying, anode integer, anothernode integer, acurve geometry | integer - postgis_topology | topology | st_addedgenewfaces | atopology character varying, anode integer, anothernode integer, acurve geometry | integer - postgis_topology | topology | st_addisoedge | atopology character varying, anode integer, anothernode integer, acurve geometry | integer - postgis_topology | topology | st_addisonode | atopology character varying, aface integer, apoint geometry | integer - postgis_topology | topology | st_changeedgegeom | atopology character varying, anedge integer, acurve geometry | text - postgis_topology | topology | st_createtopogeo | atopology character varying, acollection geometry | text - postgis_topology | topology | st_geometrytype | tg topogeometry | text - postgis_topology | topology | st_getfaceedges | toponame character varying, face_id integer | SETOF getfaceedges_returntype - postgis_topology | topology | st_getfacegeometry | toponame character varying, aface integer | geometry - postgis_topology | topology | st_inittopogeo | atopology character varying | text - postgis_topology | topology | st_modedgeheal | toponame character varying, e1id integer, e2id integer | integer - postgis_topology | topology | st_modedgesplit | atopology character varying, anedge integer, apoint geometry | integer - postgis_topology | topology | st_moveisonode | atopology character varying, anode integer, apoint geometry | text - postgis_topology | topology | st_newedgeheal | toponame character varying, e1id integer, e2id integer | integer - postgis_topology | topology | st_newedgessplit | atopology character varying, anedge integer, apoint geometry | integer - postgis_topology | topology | st_remedgemodface | toponame character varying, e1id integer | integer - postgis_topology | topology | st_remedgenewface | toponame character varying, e1id integer | integer - postgis_topology | topology | st_remisonode | character varying, integer | text - postgis_topology | topology | st_removeisoedge | atopology character varying, anedge integer | text - postgis_topology | topology | st_removeisonode | atopology character varying, anode integer | text - postgis_topology | topology | st_simplify | tg topogeometry, tolerance double precision | geometry - postgis_topology | topology | st_srid | tg topogeometry | integer - postgis_topology | topology | topoelementarray_agg | topoelement | topoelementarray - postgis_topology | topology | topoelementarray_append | topoelementarray, topoelement | topoelementarray - postgis_topology | topology | topogeo_addgeometry | atopology character varying, ageom geometry, tolerance double precision | void - postgis_topology | topology | topogeo_addlinestring | atopology character varying, aline geometry, tolerance double precision | SETOF integer - postgis_topology | topology | topogeo_addpoint | atopology character varying, apoint geometry, tolerance double precision | integer - postgis_topology | topology | topogeo_addpolygon | atopology character varying, apoly geometry, tolerance double precision | SETOF integer - postgis_topology | topology | topogeom_addelement | tg topogeometry, el topoelement | topogeometry - postgis_topology | topology | topogeom_addtopogeom | tgt topogeometry, src topogeometry | topogeometry - postgis_topology | topology | topogeom_remelement | tg topogeometry, el topoelement | topogeometry - postgis_topology | topology | topologysummary | atopology character varying | text - postgis_topology | topology | totopogeom | ageom geometry, atopology character varying, alayer integer, atolerance double precision | topogeometry - postgis_topology | topology | totopogeom | ageom geometry, tg topogeometry, atolerance double precision | topogeometry - postgis_topology | topology | validatetopology | toponame character varying, bbox geometry | SETOF validatetopology_returntype - postgis_topology | topology | validatetopologyrelation | toponame character varying | TABLE(error text, layer_id integer, topogeo_id integer, element_id integer) - postgres_fdw | public | postgres_fdw_disconnect | text | boolean - postgres_fdw | public | postgres_fdw_disconnect_all | | boolean - postgres_fdw | public | postgres_fdw_get_connections | OUT server_name text, OUT valid boolean | SETOF record - postgres_fdw | public | postgres_fdw_handler | | fdw_handler - postgres_fdw | public | postgres_fdw_validator | text[], oid | void - refint | public | check_foreign_key | | trigger - refint | public | check_primary_key | | trigger - rum | public | rum_anyarray_config | internal | void - rum | public | rum_anyarray_consistent | internal, smallint, anyarray, integer, internal, internal, internal, internal | boolean - rum | public | rum_anyarray_distance | anyarray, anyarray | double precision - rum | public | rum_anyarray_ordering | internal, smallint, anyarray, integer, internal, internal, internal, internal, internal | double precision - rum | public | rum_anyarray_similar | anyarray, anyarray | boolean - rum | public | rum_bit_compare_prefix | bit, bit, smallint, internal | integer - rum | public | rum_bit_extract_query | bit, internal, smallint, internal, internal | internal - rum | public | rum_bit_extract_value | bit, internal | internal - rum | public | rum_btree_consistent | internal, smallint, internal, integer, internal, internal, internal, internal | boolean - rum | public | rum_bytea_compare_prefix | bytea, bytea, smallint, internal | integer - rum | public | rum_bytea_extract_query | bytea, internal, smallint, internal, internal | internal - rum | public | rum_bytea_extract_value | bytea, internal | internal - rum | public | rum_char_compare_prefix | "char", "char", smallint, internal | integer - rum | public | rum_char_extract_query | "char", internal, smallint, internal, internal | internal - rum | public | rum_char_extract_value | "char", internal | internal - rum | public | rum_cidr_compare_prefix | cidr, cidr, smallint, internal | integer - rum | public | rum_cidr_extract_query | cidr, internal, smallint, internal, internal | internal - rum | public | rum_cidr_extract_value | cidr, internal | internal - rum | public | rum_date_compare_prefix | date, date, smallint, internal | integer - rum | public | rum_date_extract_query | date, internal, smallint, internal, internal | internal - rum | public | rum_date_extract_value | date, internal | internal - rum | public | rum_extract_anyarray | anyarray, internal, internal, internal, internal | internal - rum | public | rum_extract_anyarray_query | anyarray, internal, smallint, internal, internal, internal, internal | internal - rum | public | rum_extract_tsquery | tsquery, internal, smallint, internal, internal, internal, internal | internal - rum | public | rum_extract_tsquery_hash | tsquery, internal, smallint, internal, internal, internal, internal | internal - rum | public | rum_extract_tsvector | tsvector, internal, internal, internal, internal | internal - rum | public | rum_extract_tsvector_hash | tsvector, internal, internal, internal, internal | internal - rum | public | rum_float4_compare_prefix | real, real, smallint, internal | integer - rum | public | rum_float4_config | internal | void - rum | public | rum_float4_distance | real, real | double precision - rum | public | rum_float4_extract_query | real, internal, smallint, internal, internal | internal - rum | public | rum_float4_extract_value | real, internal | internal - rum | public | rum_float4_key_distance | real, real, smallint | double precision - rum | public | rum_float4_left_distance | real, real | double precision - rum | public | rum_float4_outer_distance | real, real, smallint | double precision - rum | public | rum_float4_right_distance | real, real | double precision - rum | public | rum_float8_compare_prefix | double precision, double precision, smallint, internal | integer - rum | public | rum_float8_config | internal | void - rum | public | rum_float8_distance | double precision, double precision | double precision - rum | public | rum_float8_extract_query | double precision, internal, smallint, internal, internal | internal - rum | public | rum_float8_extract_value | double precision, internal | internal - rum | public | rum_float8_key_distance | double precision, double precision, smallint | double precision - rum | public | rum_float8_left_distance | double precision, double precision | double precision - rum | public | rum_float8_outer_distance | double precision, double precision, smallint | double precision - rum | public | rum_float8_right_distance | double precision, double precision | double precision - rum | public | rum_inet_compare_prefix | inet, inet, smallint, internal | integer - rum | public | rum_inet_extract_query | inet, internal, smallint, internal, internal | internal - rum | public | rum_inet_extract_value | inet, internal | internal - rum | public | rum_int2_compare_prefix | smallint, smallint, smallint, internal | integer - rum | public | rum_int2_config | internal | void - rum | public | rum_int2_distance | smallint, smallint | double precision - rum | public | rum_int2_extract_query | smallint, internal, smallint, internal, internal | internal - rum | public | rum_int2_extract_value | smallint, internal | internal - rum | public | rum_int2_key_distance | smallint, smallint, smallint | double precision - rum | public | rum_int2_left_distance | smallint, smallint | double precision - rum | public | rum_int2_outer_distance | smallint, smallint, smallint | double precision - rum | public | rum_int2_right_distance | smallint, smallint | double precision - rum | public | rum_int4_compare_prefix | integer, integer, smallint, internal | integer - rum | public | rum_int4_config | internal | void - rum | public | rum_int4_distance | integer, integer | double precision - rum | public | rum_int4_extract_query | integer, internal, smallint, internal, internal | internal - rum | public | rum_int4_extract_value | integer, internal | internal - rum | public | rum_int4_key_distance | integer, integer, smallint | double precision - rum | public | rum_int4_left_distance | integer, integer | double precision - rum | public | rum_int4_outer_distance | integer, integer, smallint | double precision - rum | public | rum_int4_right_distance | integer, integer | double precision - rum | public | rum_int8_compare_prefix | bigint, bigint, smallint, internal | integer - rum | public | rum_int8_config | internal | void - rum | public | rum_int8_distance | bigint, bigint | double precision - rum | public | rum_int8_extract_query | bigint, internal, smallint, internal, internal | internal - rum | public | rum_int8_extract_value | bigint, internal | internal - rum | public | rum_int8_key_distance | bigint, bigint, smallint | double precision - rum | public | rum_int8_left_distance | bigint, bigint | double precision - rum | public | rum_int8_outer_distance | bigint, bigint, smallint | double precision - rum | public | rum_int8_right_distance | bigint, bigint | double precision - rum | public | rum_interval_compare_prefix | interval, interval, smallint, internal | integer - rum | public | rum_interval_extract_query | interval, internal, smallint, internal, internal | internal - rum | public | rum_interval_extract_value | interval, internal | internal - rum | public | rum_macaddr_compare_prefix | macaddr, macaddr, smallint, internal | integer - rum | public | rum_macaddr_extract_query | macaddr, internal, smallint, internal, internal | internal - rum | public | rum_macaddr_extract_value | macaddr, internal | internal - rum | public | rum_money_compare_prefix | money, money, smallint, internal | integer - rum | public | rum_money_config | internal | void - rum | public | rum_money_distance | money, money | double precision - rum | public | rum_money_extract_query | money, internal, smallint, internal, internal | internal - rum | public | rum_money_extract_value | money, internal | internal - rum | public | rum_money_key_distance | money, money, smallint | double precision - rum | public | rum_money_left_distance | money, money | double precision - rum | public | rum_money_outer_distance | money, money, smallint | double precision - rum | public | rum_money_right_distance | money, money | double precision - rum | public | rum_numeric_cmp | numeric, numeric | integer - rum | public | rum_numeric_compare_prefix | numeric, numeric, smallint, internal | integer - rum | public | rum_numeric_extract_query | numeric, internal, smallint, internal, internal | internal - rum | public | rum_numeric_extract_value | numeric, internal | internal - rum | public | rum_oid_compare_prefix | oid, oid, smallint, internal | integer - rum | public | rum_oid_config | internal | void - rum | public | rum_oid_distance | oid, oid | double precision - rum | public | rum_oid_extract_query | oid, internal, smallint, internal, internal | internal - rum | public | rum_oid_extract_value | oid, internal | internal - rum | public | rum_oid_key_distance | oid, oid, smallint | double precision - rum | public | rum_oid_left_distance | oid, oid | double precision - rum | public | rum_oid_outer_distance | oid, oid, smallint | double precision - rum | public | rum_oid_right_distance | oid, oid | double precision - rum | public | rum_text_compare_prefix | text, text, smallint, internal | integer - rum | public | rum_text_extract_query | text, internal, smallint, internal, internal | internal - rum | public | rum_text_extract_value | text, internal | internal - rum | public | rum_time_compare_prefix | time without time zone, time without time zone, smallint, internal | integer - rum | public | rum_time_extract_query | time without time zone, internal, smallint, internal, internal | internal - rum | public | rum_time_extract_value | time without time zone, internal | internal - rum | public | rum_timestamp_compare_prefix | timestamp without time zone, timestamp without time zone, smallint, internal | integer - rum | public | rum_timestamp_config | internal | void - rum | public | rum_timestamp_consistent | internal, smallint, timestamp without time zone, integer, internal, internal, internal, internal | boolean - rum | public | rum_timestamp_distance | timestamp without time zone, timestamp without time zone | double precision - rum | public | rum_timestamp_extract_query | timestamp without time zone, internal, smallint, internal, internal, internal, internal | internal - rum | public | rum_timestamp_extract_value | timestamp without time zone, internal, internal, internal, internal | internal - rum | public | rum_timestamp_key_distance | timestamp without time zone, timestamp without time zone, smallint | double precision - rum | public | rum_timestamp_left_distance | timestamp without time zone, timestamp without time zone | double precision - rum | public | rum_timestamp_outer_distance | timestamp without time zone, timestamp without time zone, smallint | double precision - rum | public | rum_timestamp_right_distance | timestamp without time zone, timestamp without time zone | double precision - rum | public | rum_timestamptz_distance | timestamp with time zone, timestamp with time zone | double precision - rum | public | rum_timestamptz_key_distance | timestamp with time zone, timestamp with time zone, smallint | double precision - rum | public | rum_timestamptz_left_distance | timestamp with time zone, timestamp with time zone | double precision - rum | public | rum_timestamptz_right_distance | timestamp with time zone, timestamp with time zone | double precision - rum | public | rum_timetz_compare_prefix | time with time zone, time with time zone, smallint, internal | integer - rum | public | rum_timetz_extract_query | time with time zone, internal, smallint, internal, internal | internal - rum | public | rum_timetz_extract_value | time with time zone, internal | internal - rum | public | rum_ts_distance | tsvector, tsquery, integer | real - rum | public | rum_ts_distance | tsvector, tsquery | real - rum | public | rum_ts_distance | tsvector, rum_distance_query | real - rum | public | rum_ts_join_pos | internal, internal | bytea - rum | public | rum_ts_score | tsvector, tsquery, integer | real - rum | public | rum_ts_score | tsvector, tsquery | real - rum | public | rum_ts_score | tsvector, rum_distance_query | real - rum | public | rum_tsquery_addon_consistent | internal, smallint, tsvector, integer, internal, internal, internal, internal | boolean - rum | public | rum_tsquery_consistent | internal, smallint, tsvector, integer, internal, internal, internal, internal | boolean - rum | public | rum_tsquery_distance | internal, smallint, tsvector, integer, internal, internal, internal, internal, internal | double precision - rum | public | rum_tsquery_pre_consistent | internal, smallint, tsvector, integer, internal, internal, internal, internal | boolean - rum | public | rum_tsvector_config | internal | void - rum | public | rum_varbit_compare_prefix | bit varying, bit varying, smallint, internal | integer - rum | public | rum_varbit_extract_query | bit varying, internal, smallint, internal, internal | internal - rum | public | rum_varbit_extract_value | bit varying, internal | internal - rum | public | rumhandler | internal | index_am_handler - rum | public | ruminv_extract_tsquery | tsquery, internal, internal, internal, internal | internal - rum | public | ruminv_extract_tsvector | tsvector, internal, smallint, internal, internal, internal, internal | internal - rum | public | ruminv_tsquery_config | internal | void - rum | public | ruminv_tsvector_consistent | internal, smallint, tsvector, integer, internal, internal, internal, internal | boolean - rum | public | tsquery_to_distance_query | tsquery | rum_distance_query - seg | public | gseg_consistent | internal, seg, smallint, oid, internal | boolean - seg | public | gseg_penalty | internal, internal, internal | internal - seg | public | gseg_picksplit | internal, internal | internal - seg | public | gseg_same | seg, seg, internal | internal - seg | public | gseg_union | internal, internal | seg - seg | public | seg_center | seg | real - seg | public | seg_cmp | seg, seg | integer - seg | public | seg_contained | seg, seg | boolean - seg | public | seg_contains | seg, seg | boolean - seg | public | seg_different | seg, seg | boolean - seg | public | seg_ge | seg, seg | boolean - seg | public | seg_gt | seg, seg | boolean - seg | public | seg_in | cstring | seg - seg | public | seg_inter | seg, seg | seg - seg | public | seg_le | seg, seg | boolean - seg | public | seg_left | seg, seg | boolean - seg | public | seg_lower | seg | real - seg | public | seg_lt | seg, seg | boolean - seg | public | seg_out | seg | cstring - seg | public | seg_over_left | seg, seg | boolean - seg | public | seg_over_right | seg, seg | boolean - seg | public | seg_overlap | seg, seg | boolean - seg | public | seg_right | seg, seg | boolean - seg | public | seg_same | seg, seg | boolean - seg | public | seg_size | seg | real - seg | public | seg_union | seg, seg | seg - seg | public | seg_upper | seg | real - sslinfo | public | ssl_cipher | | text - sslinfo | public | ssl_client_cert_present | | boolean - sslinfo | public | ssl_client_dn | | text - sslinfo | public | ssl_client_dn_field | text | text - sslinfo | public | ssl_client_serial | | numeric - sslinfo | public | ssl_extension_info | OUT name text, OUT value text, OUT critical boolean | SETOF record - sslinfo | public | ssl_is_used | | boolean - sslinfo | public | ssl_issuer_dn | | text - sslinfo | public | ssl_issuer_field | text | text - sslinfo | public | ssl_version | | text - supabase_vault | vault | _crypto_aead_det_decrypt | message bytea, additional bytea, key_id bigint, context bytea, nonce bytea | bytea - supabase_vault | vault | _crypto_aead_det_encrypt | message bytea, additional bytea, key_id bigint, context bytea, nonce bytea | bytea - supabase_vault | vault | _crypto_aead_det_noncegen | | bytea - supabase_vault | vault | create_secret | new_secret text, new_name text, new_description text, new_key_id uuid | uuid - supabase_vault | vault | update_secret | secret_id uuid, new_secret text, new_name text, new_description text, new_key_id uuid | void - tablefunc | public | connectby | text, text, text, text, integer, text | SETOF record - tablefunc | public | connectby | text, text, text, text, text, integer, text | SETOF record - tablefunc | public | connectby | text, text, text, text, integer | SETOF record - tablefunc | public | connectby | text, text, text, text, text, integer | SETOF record - tablefunc | public | crosstab | text | SETOF record - tablefunc | public | crosstab | text, integer | SETOF record - tablefunc | public | crosstab | text, text | SETOF record - tablefunc | public | crosstab2 | text | SETOF tablefunc_crosstab_2 - tablefunc | public | crosstab3 | text | SETOF tablefunc_crosstab_3 - tablefunc | public | crosstab4 | text | SETOF tablefunc_crosstab_4 - tablefunc | public | normal_rand | integer, double precision, double precision | SETOF double precision - tcn | public | triggered_change_notification | | trigger - timescaledb | _timescaledb_debug | extension_state | | text - timescaledb | _timescaledb_functions | alter_job_set_hypertable_id | job_id integer, hypertable regclass | integer - timescaledb | _timescaledb_functions | attach_osm_table_chunk | hypertable regclass, chunk regclass | boolean - timescaledb | _timescaledb_functions | bookend_deserializefunc | bytea, internal | internal - timescaledb | _timescaledb_functions | bookend_finalfunc | internal, anyelement, "any" | anyelement - timescaledb | _timescaledb_functions | bookend_serializefunc | internal | bytea - timescaledb | _timescaledb_functions | cagg_get_bucket_function_info | mat_hypertable_id integer, OUT bucket_func regprocedure, OUT bucket_width text, OUT bucket_origin text, OUT bucket_offset text, OUT bucket_timezone text, OUT bucket_fixed_width boolean | record - timescaledb | _timescaledb_functions | cagg_migrate_create_plan | IN _cagg_data _timescaledb_catalog.continuous_agg, IN _cagg_name_new text, IN _override boolean, IN _drop_old boolean | - timescaledb | _timescaledb_functions | cagg_migrate_execute_copy_data | IN _cagg_data _timescaledb_catalog.continuous_agg, IN _plan_step _timescaledb_catalog.continuous_agg_migrate_plan_step | - timescaledb | _timescaledb_functions | cagg_migrate_execute_copy_policies | IN _cagg_data _timescaledb_catalog.continuous_agg, IN _plan_step _timescaledb_catalog.continuous_agg_migrate_plan_step | - timescaledb | _timescaledb_functions | cagg_migrate_execute_create_new_cagg | IN _cagg_data _timescaledb_catalog.continuous_agg, IN _plan_step _timescaledb_catalog.continuous_agg_migrate_plan_step | - timescaledb | _timescaledb_functions | cagg_migrate_execute_disable_policies | IN _cagg_data _timescaledb_catalog.continuous_agg, IN _plan_step _timescaledb_catalog.continuous_agg_migrate_plan_step | - timescaledb | _timescaledb_functions | cagg_migrate_execute_drop_old_cagg | IN _cagg_data _timescaledb_catalog.continuous_agg, IN _plan_step _timescaledb_catalog.continuous_agg_migrate_plan_step | - timescaledb | _timescaledb_functions | cagg_migrate_execute_enable_policies | IN _cagg_data _timescaledb_catalog.continuous_agg, IN _plan_step _timescaledb_catalog.continuous_agg_migrate_plan_step | - timescaledb | _timescaledb_functions | cagg_migrate_execute_override_cagg | IN _cagg_data _timescaledb_catalog.continuous_agg, IN _plan_step _timescaledb_catalog.continuous_agg_migrate_plan_step | - timescaledb | _timescaledb_functions | cagg_migrate_execute_plan | IN _cagg_data _timescaledb_catalog.continuous_agg | - timescaledb | _timescaledb_functions | cagg_migrate_execute_refresh_new_cagg | IN _cagg_data _timescaledb_catalog.continuous_agg, IN _plan_step _timescaledb_catalog.continuous_agg_migrate_plan_step | - timescaledb | _timescaledb_functions | cagg_migrate_plan_exists | _hypertable_id integer | boolean - timescaledb | _timescaledb_functions | cagg_migrate_pre_validation | _cagg_schema text, _cagg_name text, _cagg_name_new text | _timescaledb_catalog.continuous_agg - timescaledb | _timescaledb_functions | cagg_migrate_to_time_bucket | IN cagg regclass | - timescaledb | _timescaledb_functions | cagg_validate_query | query text, OUT is_valid boolean, OUT error_level text, OUT error_code text, OUT error_message text, OUT error_detail text, OUT error_hint text | record - timescaledb | _timescaledb_functions | cagg_watermark | hypertable_id integer | bigint - timescaledb | _timescaledb_functions | cagg_watermark_materialized | hypertable_id integer | bigint - timescaledb | _timescaledb_functions | calculate_chunk_interval | dimension_id integer, dimension_coord bigint, chunk_target_size bigint | bigint - timescaledb | _timescaledb_functions | chunk_constraint_add_table_constraint | chunk_constraint_row _timescaledb_catalog.chunk_constraint | void - timescaledb | _timescaledb_functions | chunk_id_from_relid | relid oid | integer - timescaledb | _timescaledb_functions | chunk_index_clone | chunk_index_oid oid | oid - timescaledb | _timescaledb_functions | chunk_index_replace | chunk_index_oid_old oid, chunk_index_oid_new oid | void - timescaledb | _timescaledb_functions | chunk_status | regclass | integer - timescaledb | _timescaledb_functions | chunks_local_size | schema_name_in name, table_name_in name | TABLE(chunk_id integer, chunk_schema name, chunk_name name, table_bytes bigint, index_bytes bigint, toast_bytes bigint, total_bytes bigint) - timescaledb | _timescaledb_functions | compressed_chunk_local_stats | schema_name_in name, table_name_in name | TABLE(chunk_schema name, chunk_name name, compression_status text, before_compression_table_bytes bigint, before_compression_index_bytes bigint, before_compression_toast_bytes bigint, before_compression_total_bytes bigint, after_compression_table_bytes bigint, after_compression_index_bytes bigint, after_compression_toast_bytes bigint, after_compression_total_bytes bigint) - timescaledb | _timescaledb_functions | compressed_data_in | cstring | _timescaledb_internal.compressed_data - timescaledb | _timescaledb_functions | compressed_data_out | _timescaledb_internal.compressed_data | cstring - timescaledb | _timescaledb_functions | compressed_data_recv | internal | _timescaledb_internal.compressed_data - timescaledb | _timescaledb_functions | compressed_data_send | _timescaledb_internal.compressed_data | bytea - timescaledb | _timescaledb_functions | constraint_clone | constraint_oid oid, target_oid regclass | void - timescaledb | _timescaledb_functions | continuous_agg_invalidation_trigger | | trigger - timescaledb | _timescaledb_functions | create_chunk | hypertable regclass, slices jsonb, schema_name name, table_name name, chunk_table regclass | TABLE(chunk_id integer, hypertable_id integer, schema_name name, table_name name, relkind "char", slices jsonb, created boolean) - timescaledb | _timescaledb_functions | create_chunk_table | hypertable regclass, slices jsonb, schema_name name, table_name name | boolean - timescaledb | _timescaledb_functions | create_compressed_chunk | chunk regclass, chunk_table regclass, uncompressed_heap_size bigint, uncompressed_toast_size bigint, uncompressed_index_size bigint, compressed_heap_size bigint, compressed_toast_size bigint, compressed_index_size bigint, numrows_pre_compression bigint, numrows_post_compression bigint | regclass - timescaledb | _timescaledb_functions | dimension_info_in | cstring | _timescaledb_internal.dimension_info - timescaledb | _timescaledb_functions | dimension_info_out | _timescaledb_internal.dimension_info | cstring - timescaledb | _timescaledb_functions | drop_chunk | chunk regclass | boolean - timescaledb | _timescaledb_functions | finalize_agg | agg_name text, inner_agg_collation_schema name, inner_agg_collation_name name, inner_agg_input_types name[], inner_agg_serialized_state bytea, return_type_dummy_val anyelement | anyelement - timescaledb | _timescaledb_functions | finalize_agg_ffunc | tstate internal, aggfn text, inner_agg_collation_schema name, inner_agg_collation_name name, inner_agg_input_types name[], inner_agg_serialized_state bytea, return_type_dummy_val anyelement | anyelement - timescaledb | _timescaledb_functions | finalize_agg_sfunc | tstate internal, aggfn text, inner_agg_collation_schema name, inner_agg_collation_name name, inner_agg_input_types name[], inner_agg_serialized_state bytea, return_type_dummy_val anyelement | internal - timescaledb | _timescaledb_functions | first_combinefunc | internal, internal | internal - timescaledb | _timescaledb_functions | first_sfunc | internal, anyelement, "any" | internal - timescaledb | _timescaledb_functions | freeze_chunk | chunk regclass | boolean - timescaledb | _timescaledb_functions | generate_uuid | | uuid - timescaledb | _timescaledb_functions | get_approx_row_count | relation regclass | bigint - timescaledb | _timescaledb_functions | get_compressed_chunk_index_for_recompression | uncompressed_chunk regclass | regclass - timescaledb | _timescaledb_functions | get_create_command | table_name name | text - timescaledb | _timescaledb_functions | get_git_commit | | TABLE(commit_tag text, commit_hash text, commit_time timestamp with time zone) - timescaledb | _timescaledb_functions | get_orderby_defaults | relation regclass, segment_by_cols text[] | jsonb - timescaledb | _timescaledb_functions | get_os_info | | TABLE(sysname text, version text, release text, version_pretty text) - timescaledb | _timescaledb_functions | get_partition_for_key | val anyelement | integer - timescaledb | _timescaledb_functions | get_partition_hash | val anyelement | integer - timescaledb | _timescaledb_functions | get_segmentby_defaults | relation regclass | jsonb - timescaledb | _timescaledb_functions | hist_combinefunc | state1 internal, state2 internal | internal - timescaledb | _timescaledb_functions | hist_deserializefunc | bytea, internal | internal - timescaledb | _timescaledb_functions | hist_finalfunc | state internal, val double precision, min double precision, max double precision, nbuckets integer | integer[] - timescaledb | _timescaledb_functions | hist_serializefunc | internal | bytea - timescaledb | _timescaledb_functions | hist_sfunc | state internal, val double precision, min double precision, max double precision, nbuckets integer | internal - timescaledb | _timescaledb_functions | hypertable_local_size | schema_name_in name, table_name_in name | TABLE(table_bytes bigint, index_bytes bigint, toast_bytes bigint, total_bytes bigint) - timescaledb | _timescaledb_functions | hypertable_osm_range_update | hypertable regclass, range_start anyelement, range_end anyelement, empty boolean | boolean - timescaledb | _timescaledb_functions | indexes_local_size | schema_name_in name, index_name_in name | TABLE(hypertable_id integer, total_bytes bigint) - timescaledb | _timescaledb_functions | insert_blocker | | trigger - timescaledb | _timescaledb_functions | interval_to_usec | chunk_interval interval | bigint - timescaledb | _timescaledb_functions | last_combinefunc | internal, internal | internal - timescaledb | _timescaledb_functions | last_sfunc | internal, anyelement, "any" | internal - timescaledb | _timescaledb_functions | makeaclitem | regrole, regrole, text, boolean | aclitem - timescaledb | _timescaledb_functions | metadata_insert_trigger | | trigger - timescaledb | _timescaledb_functions | partialize_agg | arg anyelement | bytea - timescaledb | _timescaledb_functions | policy_compression | IN job_id integer, IN config jsonb | - timescaledb | _timescaledb_functions | policy_compression_check | config jsonb | void - timescaledb | _timescaledb_functions | policy_compression_execute | IN job_id integer, IN htid integer, IN lag anyelement, IN maxchunks integer, IN verbose_log boolean, IN recompress_enabled boolean, IN use_creation_time boolean | - timescaledb | _timescaledb_functions | policy_job_stat_history_retention | job_id integer, config jsonb | integer - timescaledb | _timescaledb_functions | policy_job_stat_history_retention_check | config jsonb | void - timescaledb | _timescaledb_functions | policy_recompression | IN job_id integer, IN config jsonb | - timescaledb | _timescaledb_functions | policy_refresh_continuous_aggregate | IN job_id integer, IN config jsonb | - timescaledb | _timescaledb_functions | policy_refresh_continuous_aggregate_check | config jsonb | void - timescaledb | _timescaledb_functions | policy_reorder | IN job_id integer, IN config jsonb | - timescaledb | _timescaledb_functions | policy_reorder_check | config jsonb | void - timescaledb | _timescaledb_functions | policy_retention | IN job_id integer, IN config jsonb | - timescaledb | _timescaledb_functions | policy_retention_check | config jsonb | void - timescaledb | _timescaledb_functions | process_ddl_event | | event_trigger - timescaledb | _timescaledb_functions | range_value_to_pretty | time_value bigint, column_type regtype | text - timescaledb | _timescaledb_functions | recompress_chunk_segmentwise | uncompressed_chunk regclass, if_compressed boolean | regclass - timescaledb | _timescaledb_functions | relation_approximate_size | relation regclass | TABLE(total_size bigint, heap_size bigint, index_size bigint, toast_size bigint) - timescaledb | _timescaledb_functions | relation_size | relation regclass | TABLE(total_size bigint, heap_size bigint, index_size bigint, toast_size bigint) - timescaledb | _timescaledb_functions | remove_dropped_chunk_metadata | _hypertable_id integer | integer - timescaledb | _timescaledb_functions | repair_relation_acls | | - timescaledb | _timescaledb_functions | restart_background_workers | | boolean - timescaledb | _timescaledb_functions | show_chunk | chunk regclass | TABLE(chunk_id integer, hypertable_id integer, schema_name name, table_name name, relkind "char", slices jsonb) - timescaledb | _timescaledb_functions | start_background_workers | | boolean - timescaledb | _timescaledb_functions | stop_background_workers | | boolean - timescaledb | _timescaledb_functions | subtract_integer_from_now | hypertable_relid regclass, lag bigint | bigint - timescaledb | _timescaledb_functions | time_to_internal | time_val anyelement | bigint - timescaledb | _timescaledb_functions | to_date | unixtime_us bigint | date - timescaledb | _timescaledb_functions | to_interval | unixtime_us bigint | interval - timescaledb | _timescaledb_functions | to_timestamp | unixtime_us bigint | timestamp with time zone - timescaledb | _timescaledb_functions | to_timestamp_without_timezone | unixtime_us bigint | timestamp without time zone - timescaledb | _timescaledb_functions | to_unix_microseconds | ts timestamp with time zone | bigint - timescaledb | _timescaledb_functions | tsl_loaded | | boolean - timescaledb | _timescaledb_functions | unfreeze_chunk | chunk regclass | boolean - timescaledb | _timescaledb_internal | alter_job_set_hypertable_id | job_id integer, hypertable regclass | integer - timescaledb | _timescaledb_internal | attach_osm_table_chunk | hypertable regclass, chunk regclass | boolean - timescaledb | _timescaledb_internal | cagg_migrate_create_plan | IN _cagg_data _timescaledb_catalog.continuous_agg, IN _cagg_name_new text, IN _override boolean, IN _drop_old boolean | - timescaledb | _timescaledb_internal | cagg_migrate_execute_copy_data | IN _cagg_data _timescaledb_catalog.continuous_agg, IN _plan_step _timescaledb_catalog.continuous_agg_migrate_plan_step | - timescaledb | _timescaledb_internal | cagg_migrate_execute_copy_policies | IN _cagg_data _timescaledb_catalog.continuous_agg, IN _plan_step _timescaledb_catalog.continuous_agg_migrate_plan_step | - timescaledb | _timescaledb_internal | cagg_migrate_execute_create_new_cagg | IN _cagg_data _timescaledb_catalog.continuous_agg, IN _plan_step _timescaledb_catalog.continuous_agg_migrate_plan_step | - timescaledb | _timescaledb_internal | cagg_migrate_execute_disable_policies | IN _cagg_data _timescaledb_catalog.continuous_agg, IN _plan_step _timescaledb_catalog.continuous_agg_migrate_plan_step | - timescaledb | _timescaledb_internal | cagg_migrate_execute_drop_old_cagg | IN _cagg_data _timescaledb_catalog.continuous_agg, IN _plan_step _timescaledb_catalog.continuous_agg_migrate_plan_step | - timescaledb | _timescaledb_internal | cagg_migrate_execute_enable_policies | IN _cagg_data _timescaledb_catalog.continuous_agg, IN _plan_step _timescaledb_catalog.continuous_agg_migrate_plan_step | - timescaledb | _timescaledb_internal | cagg_migrate_execute_override_cagg | IN _cagg_data _timescaledb_catalog.continuous_agg, IN _plan_step _timescaledb_catalog.continuous_agg_migrate_plan_step | - timescaledb | _timescaledb_internal | cagg_migrate_execute_plan | IN _cagg_data _timescaledb_catalog.continuous_agg | - timescaledb | _timescaledb_internal | cagg_migrate_execute_refresh_new_cagg | IN _cagg_data _timescaledb_catalog.continuous_agg, IN _plan_step _timescaledb_catalog.continuous_agg_migrate_plan_step | - timescaledb | _timescaledb_internal | cagg_migrate_plan_exists | _hypertable_id integer | boolean - timescaledb | _timescaledb_internal | cagg_migrate_pre_validation | _cagg_schema text, _cagg_name text, _cagg_name_new text | _timescaledb_catalog.continuous_agg - timescaledb | _timescaledb_internal | cagg_watermark | hypertable_id integer | bigint - timescaledb | _timescaledb_internal | cagg_watermark_materialized | hypertable_id integer | bigint - timescaledb | _timescaledb_internal | calculate_chunk_interval | dimension_id integer, dimension_coord bigint, chunk_target_size bigint | bigint - timescaledb | _timescaledb_internal | chunk_constraint_add_table_constraint | chunk_constraint_row _timescaledb_catalog.chunk_constraint | void - timescaledb | _timescaledb_internal | chunk_id_from_relid | relid oid | integer - timescaledb | _timescaledb_internal | chunk_index_clone | chunk_index_oid oid | oid - timescaledb | _timescaledb_internal | chunk_index_replace | chunk_index_oid_old oid, chunk_index_oid_new oid | void - timescaledb | _timescaledb_internal | chunk_status | regclass | integer - timescaledb | _timescaledb_internal | chunks_local_size | schema_name_in name, table_name_in name | TABLE(chunk_id integer, chunk_schema name, chunk_name name, table_bytes bigint, index_bytes bigint, toast_bytes bigint, total_bytes bigint) - timescaledb | _timescaledb_internal | compressed_chunk_local_stats | schema_name_in name, table_name_in name | TABLE(chunk_schema name, chunk_name name, compression_status text, before_compression_table_bytes bigint, before_compression_index_bytes bigint, before_compression_toast_bytes bigint, before_compression_total_bytes bigint, after_compression_table_bytes bigint, after_compression_index_bytes bigint, after_compression_toast_bytes bigint, after_compression_total_bytes bigint) - timescaledb | _timescaledb_internal | compressed_chunk_remote_stats | schema_name_in name, table_name_in name | TABLE(chunk_schema name, chunk_name name, compression_status text, before_compression_table_bytes bigint, before_compression_index_bytes bigint, before_compression_toast_bytes bigint, before_compression_total_bytes bigint, after_compression_table_bytes bigint, after_compression_index_bytes bigint, after_compression_toast_bytes bigint, after_compression_total_bytes bigint, node_name name) - timescaledb | _timescaledb_internal | continuous_agg_invalidation_trigger | | trigger - timescaledb | _timescaledb_internal | create_chunk | hypertable regclass, _slices jsonb, _schema_name name, _table_name name, chunk_table regclass | TABLE(chunk_id integer, hypertable_id integer, schema_name name, table_name name, relkind "char", slices jsonb, created boolean) - timescaledb | _timescaledb_internal | create_chunk_table | hypertable regclass, slices jsonb, schema_name name, table_name name | boolean - timescaledb | _timescaledb_internal | create_compressed_chunk | chunk regclass, chunk_table regclass, uncompressed_heap_size bigint, uncompressed_toast_size bigint, uncompressed_index_size bigint, compressed_heap_size bigint, compressed_toast_size bigint, compressed_index_size bigint, numrows_pre_compression bigint, numrows_post_compression bigint | regclass - timescaledb | _timescaledb_internal | drop_chunk | chunk regclass | boolean - timescaledb | _timescaledb_internal | finalize_agg | agg_name text, inner_agg_collation_schema name, inner_agg_collation_name name, inner_agg_input_types name[], inner_agg_serialized_state bytea, return_type_dummy_val anyelement | anyelement - timescaledb | _timescaledb_internal | finalize_agg_ffunc | tstate internal, aggfn text, inner_agg_collation_schema name, inner_agg_collation_name name, inner_agg_input_types name[], inner_agg_serialized_state bytea, return_type_dummy_val anyelement | anyelement - timescaledb | _timescaledb_internal | finalize_agg_sfunc | tstate internal, aggfn text, inner_agg_collation_schema name, inner_agg_collation_name name, inner_agg_input_types name[], inner_agg_serialized_state bytea, return_type_dummy_val anyelement | internal - timescaledb | _timescaledb_internal | freeze_chunk | chunk regclass | boolean - timescaledb | _timescaledb_internal | generate_uuid | | uuid - timescaledb | _timescaledb_internal | get_approx_row_count | relation regclass | bigint - timescaledb | _timescaledb_internal | get_compressed_chunk_index_for_recompression | uncompressed_chunk regclass | regclass - timescaledb | _timescaledb_internal | get_create_command | table_name name | text - timescaledb | _timescaledb_internal | get_git_commit | | TABLE(commit_tag text, commit_hash text, commit_time timestamp with time zone) - timescaledb | _timescaledb_internal | get_os_info | | TABLE(sysname text, version text, release text, version_pretty text) - timescaledb | _timescaledb_internal | get_partition_for_key | val anyelement | integer - timescaledb | _timescaledb_internal | get_partition_hash | val anyelement | integer - timescaledb | _timescaledb_internal | hypertable_local_size | schema_name_in name, table_name_in name | TABLE(table_bytes bigint, index_bytes bigint, toast_bytes bigint, total_bytes bigint) - timescaledb | _timescaledb_internal | indexes_local_size | schema_name_in name, table_name_in name | TABLE(hypertable_id integer, total_bytes bigint) - timescaledb | _timescaledb_internal | insert_blocker | | trigger - timescaledb | _timescaledb_internal | interval_to_usec | chunk_interval interval | bigint - timescaledb | _timescaledb_internal | partialize_agg | arg anyelement | bytea - timescaledb | _timescaledb_internal | policy_compression | IN job_id integer, IN config jsonb | - timescaledb | _timescaledb_internal | policy_compression_check | config jsonb | void - timescaledb | _timescaledb_internal | policy_compression_execute | IN job_id integer, IN htid integer, IN lag anyelement, IN maxchunks integer, IN verbose_log boolean, IN recompress_enabled boolean, IN use_creation_time boolean | - timescaledb | _timescaledb_internal | policy_job_stat_history_retention | job_id integer, config jsonb | integer - timescaledb | _timescaledb_internal | policy_job_stat_history_retention_check | config jsonb | void - timescaledb | _timescaledb_internal | policy_recompression | IN job_id integer, IN config jsonb | - timescaledb | _timescaledb_internal | policy_refresh_continuous_aggregate | IN job_id integer, IN config jsonb | - timescaledb | _timescaledb_internal | policy_refresh_continuous_aggregate_check | config jsonb | void - timescaledb | _timescaledb_internal | policy_reorder | IN job_id integer, IN config jsonb | - timescaledb | _timescaledb_internal | policy_reorder_check | config jsonb | void - timescaledb | _timescaledb_internal | policy_retention | IN job_id integer, IN config jsonb | - timescaledb | _timescaledb_internal | policy_retention_check | config jsonb | void - timescaledb | _timescaledb_internal | process_ddl_event | | event_trigger - timescaledb | _timescaledb_internal | range_value_to_pretty | time_value bigint, column_type regtype | text - timescaledb | _timescaledb_internal | recompress_chunk_segmentwise | uncompressed_chunk regclass, if_compressed boolean | regclass - timescaledb | _timescaledb_internal | relation_size | relation regclass | TABLE(total_size bigint, heap_size bigint, index_size bigint, toast_size bigint) - timescaledb | _timescaledb_internal | restart_background_workers | | boolean - timescaledb | _timescaledb_internal | show_chunk | chunk regclass | TABLE(chunk_id integer, hypertable_id integer, schema_name name, table_name name, relkind "char", slices jsonb) - timescaledb | _timescaledb_internal | start_background_workers | | boolean - timescaledb | _timescaledb_internal | stop_background_workers | | boolean - timescaledb | _timescaledb_internal | subtract_integer_from_now | hypertable_relid regclass, lag bigint | bigint - timescaledb | _timescaledb_internal | time_to_internal | time_val anyelement | bigint - timescaledb | _timescaledb_internal | to_date | unixtime_us bigint | date - timescaledb | _timescaledb_internal | to_interval | unixtime_us bigint | interval - timescaledb | _timescaledb_internal | to_timestamp | unixtime_us bigint | timestamp with time zone - timescaledb | _timescaledb_internal | to_timestamp_without_timezone | unixtime_us bigint | timestamp without time zone - timescaledb | _timescaledb_internal | to_unix_microseconds | ts timestamp with time zone | bigint - timescaledb | _timescaledb_internal | tsl_loaded | | boolean - timescaledb | _timescaledb_internal | unfreeze_chunk | chunk regclass | boolean - timescaledb | public | add_compression_policy | hypertable regclass, compress_after "any", if_not_exists boolean, schedule_interval interval, initial_start timestamp with time zone, timezone text, compress_created_before interval | integer - timescaledb | public | add_continuous_aggregate_policy | continuous_aggregate regclass, start_offset "any", end_offset "any", schedule_interval interval, if_not_exists boolean, initial_start timestamp with time zone, timezone text | integer - timescaledb | public | add_dimension | hypertable regclass, column_name name, number_partitions integer, chunk_time_interval anyelement, partitioning_func regproc, if_not_exists boolean | TABLE(dimension_id integer, schema_name name, table_name name, column_name name, created boolean) - timescaledb | public | add_dimension | hypertable regclass, dimension _timescaledb_internal.dimension_info, if_not_exists boolean | TABLE(dimension_id integer, created boolean) - timescaledb | public | add_job | proc regproc, schedule_interval interval, config jsonb, initial_start timestamp with time zone, scheduled boolean, check_config regproc, fixed_schedule boolean, timezone text | integer - timescaledb | public | add_reorder_policy | hypertable regclass, index_name name, if_not_exists boolean, initial_start timestamp with time zone, timezone text | integer - timescaledb | public | add_retention_policy | relation regclass, drop_after "any", if_not_exists boolean, schedule_interval interval, initial_start timestamp with time zone, timezone text, drop_created_before interval | integer - timescaledb | public | alter_job | job_id integer, schedule_interval interval, max_runtime interval, max_retries integer, retry_period interval, scheduled boolean, config jsonb, next_start timestamp with time zone, if_exists boolean, check_config regproc, fixed_schedule boolean, initial_start timestamp with time zone, timezone text | TABLE(job_id integer, schedule_interval interval, max_runtime interval, max_retries integer, retry_period interval, scheduled boolean, config jsonb, next_start timestamp with time zone, check_config text, fixed_schedule boolean, initial_start timestamp with time zone, timezone text) - timescaledb | public | approximate_row_count | relation regclass | bigint - timescaledb | public | attach_tablespace | tablespace name, hypertable regclass, if_not_attached boolean | void - timescaledb | public | by_hash | column_name name, number_partitions integer, partition_func regproc | _timescaledb_internal.dimension_info - timescaledb | public | by_range | column_name name, partition_interval anyelement, partition_func regproc | _timescaledb_internal.dimension_info - timescaledb | public | cagg_migrate | IN cagg regclass, IN override boolean, IN drop_old boolean | - timescaledb | public | chunk_compression_stats | hypertable regclass | TABLE(chunk_schema name, chunk_name name, compression_status text, before_compression_table_bytes bigint, before_compression_index_bytes bigint, before_compression_toast_bytes bigint, before_compression_total_bytes bigint, after_compression_table_bytes bigint, after_compression_index_bytes bigint, after_compression_toast_bytes bigint, after_compression_total_bytes bigint, node_name name) - timescaledb | public | chunks_detailed_size | hypertable regclass | TABLE(chunk_schema name, chunk_name name, table_bytes bigint, index_bytes bigint, toast_bytes bigint, total_bytes bigint, node_name name) - timescaledb | public | compress_chunk | uncompressed_chunk regclass, if_not_compressed boolean, recompress boolean | regclass - timescaledb | public | create_hypertable | relation regclass, time_column_name name, partitioning_column name, number_partitions integer, associated_schema_name name, associated_table_prefix name, chunk_time_interval anyelement, create_default_indexes boolean, if_not_exists boolean, partitioning_func regproc, migrate_data boolean, chunk_target_size text, chunk_sizing_func regproc, time_partitioning_func regproc | TABLE(hypertable_id integer, schema_name name, table_name name, created boolean) - timescaledb | public | create_hypertable | relation regclass, dimension _timescaledb_internal.dimension_info, create_default_indexes boolean, if_not_exists boolean, migrate_data boolean | TABLE(hypertable_id integer, created boolean) - timescaledb | public | decompress_chunk | uncompressed_chunk regclass, if_compressed boolean | regclass - timescaledb | public | delete_job | job_id integer | void - timescaledb | public | detach_tablespace | tablespace name, hypertable regclass, if_attached boolean | integer - timescaledb | public | detach_tablespaces | hypertable regclass | integer - timescaledb | public | disable_chunk_skipping | hypertable regclass, column_name name, if_not_exists boolean | TABLE(hypertable_id integer, column_name name, disabled boolean) - timescaledb | public | drop_chunks | relation regclass, older_than "any", newer_than "any", "verbose" boolean, created_before "any", created_after "any" | SETOF text - timescaledb | public | enable_chunk_skipping | hypertable regclass, column_name name, if_not_exists boolean | TABLE(column_stats_id integer, enabled boolean) - timescaledb | public | first | anyelement, "any" | anyelement - timescaledb | public | get_telemetry_report | | jsonb - timescaledb | public | histogram | double precision, double precision, double precision, integer | integer[] - timescaledb | public | hypertable_approximate_detailed_size | relation regclass | TABLE(table_bytes bigint, index_bytes bigint, toast_bytes bigint, total_bytes bigint) - timescaledb | public | hypertable_approximate_size | hypertable regclass | bigint - timescaledb | public | hypertable_compression_stats | hypertable regclass | TABLE(total_chunks bigint, number_compressed_chunks bigint, before_compression_table_bytes bigint, before_compression_index_bytes bigint, before_compression_toast_bytes bigint, before_compression_total_bytes bigint, after_compression_table_bytes bigint, after_compression_index_bytes bigint, after_compression_toast_bytes bigint, after_compression_total_bytes bigint, node_name name) - timescaledb | public | hypertable_detailed_size | hypertable regclass | TABLE(table_bytes bigint, index_bytes bigint, toast_bytes bigint, total_bytes bigint, node_name name) - timescaledb | public | hypertable_index_size | index_name regclass | bigint - timescaledb | public | hypertable_size | hypertable regclass | bigint - timescaledb | public | interpolate | value double precision, prev record, next record | double precision - timescaledb | public | interpolate | value real, prev record, next record | real - timescaledb | public | interpolate | value bigint, prev record, next record | bigint - timescaledb | public | interpolate | value integer, prev record, next record | integer - timescaledb | public | interpolate | value smallint, prev record, next record | smallint - timescaledb | public | last | anyelement, "any" | anyelement - timescaledb | public | locf | value anyelement, prev anyelement, treat_null_as_missing boolean | anyelement - timescaledb | public | move_chunk | chunk regclass, destination_tablespace name, index_destination_tablespace name, reorder_index regclass, "verbose" boolean | void - timescaledb | public | recompress_chunk | IN chunk regclass, IN if_not_compressed boolean | - timescaledb | public | refresh_continuous_aggregate | IN continuous_aggregate regclass, IN window_start "any", IN window_end "any" | - timescaledb | public | remove_compression_policy | hypertable regclass, if_exists boolean | boolean - timescaledb | public | remove_continuous_aggregate_policy | continuous_aggregate regclass, if_not_exists boolean, if_exists boolean | void - timescaledb | public | remove_reorder_policy | hypertable regclass, if_exists boolean | void - timescaledb | public | remove_retention_policy | relation regclass, if_exists boolean | void - timescaledb | public | reorder_chunk | chunk regclass, index regclass, "verbose" boolean | void - timescaledb | public | run_job | IN job_id integer | - timescaledb | public | set_adaptive_chunking | hypertable regclass, chunk_target_size text, INOUT chunk_sizing_func regproc, OUT chunk_target_size bigint | record - timescaledb | public | set_chunk_time_interval | hypertable regclass, chunk_time_interval anyelement, dimension_name name | void - timescaledb | public | set_integer_now_func | hypertable regclass, integer_now_func regproc, replace_if_exists boolean | void - timescaledb | public | set_number_partitions | hypertable regclass, number_partitions integer, dimension_name name | void - timescaledb | public | set_partitioning_interval | hypertable regclass, partition_interval anyelement, dimension_name name | void - timescaledb | public | show_chunks | relation regclass, older_than "any", newer_than "any", created_before "any", created_after "any" | SETOF regclass - timescaledb | public | show_tablespaces | hypertable regclass | SETOF name - timescaledb | public | time_bucket | bucket_width bigint, ts bigint | bigint - timescaledb | public | time_bucket | bucket_width interval, ts timestamp with time zone, "offset" interval | timestamp with time zone - timescaledb | public | time_bucket | bucket_width interval, ts timestamp with time zone, origin timestamp with time zone | timestamp with time zone - timescaledb | public | time_bucket | bucket_width smallint, ts smallint, "offset" smallint | smallint - timescaledb | public | time_bucket | bucket_width interval, ts timestamp without time zone, "offset" interval | timestamp without time zone - timescaledb | public | time_bucket | bucket_width interval, ts timestamp without time zone | timestamp without time zone - timescaledb | public | time_bucket | bucket_width integer, ts integer | integer - timescaledb | public | time_bucket | bucket_width bigint, ts bigint, "offset" bigint | bigint - timescaledb | public | time_bucket | bucket_width smallint, ts smallint | smallint - timescaledb | public | time_bucket | bucket_width interval, ts date | date - timescaledb | public | time_bucket | bucket_width interval, ts timestamp with time zone, timezone text, origin timestamp with time zone, "offset" interval | timestamp with time zone - timescaledb | public | time_bucket | bucket_width interval, ts date, "offset" interval | date - timescaledb | public | time_bucket | bucket_width interval, ts timestamp without time zone, origin timestamp without time zone | timestamp without time zone - timescaledb | public | time_bucket | bucket_width integer, ts integer, "offset" integer | integer - timescaledb | public | time_bucket | bucket_width interval, ts timestamp with time zone | timestamp with time zone - timescaledb | public | time_bucket | bucket_width interval, ts date, origin date | date - timescaledb | public | time_bucket_gapfill | bucket_width interval, ts timestamp with time zone, timezone text, start timestamp with time zone, finish timestamp with time zone | timestamp with time zone - timescaledb | public | time_bucket_gapfill | bucket_width interval, ts date, start date, finish date | date - timescaledb | public | time_bucket_gapfill | bucket_width smallint, ts smallint, start smallint, finish smallint | smallint - timescaledb | public | time_bucket_gapfill | bucket_width interval, ts timestamp with time zone, start timestamp with time zone, finish timestamp with time zone | timestamp with time zone - timescaledb | public | time_bucket_gapfill | bucket_width bigint, ts bigint, start bigint, finish bigint | bigint - timescaledb | public | time_bucket_gapfill | bucket_width interval, ts timestamp without time zone, start timestamp without time zone, finish timestamp without time zone | timestamp without time zone - timescaledb | public | time_bucket_gapfill | bucket_width integer, ts integer, start integer, finish integer | integer - timescaledb | public | timescaledb_post_restore | | boolean - timescaledb | public | timescaledb_pre_restore | | boolean - timescaledb | timescaledb_experimental | add_policies | relation regclass, if_not_exists boolean, refresh_start_offset "any", refresh_end_offset "any", compress_after "any", drop_after "any" | boolean - timescaledb | timescaledb_experimental | alter_policies | relation regclass, if_exists boolean, refresh_start_offset "any", refresh_end_offset "any", compress_after "any", drop_after "any" | boolean - timescaledb | timescaledb_experimental | remove_all_policies | relation regclass, if_exists boolean | boolean - timescaledb | timescaledb_experimental | remove_policies | relation regclass, if_exists boolean, VARIADIC policy_names text[] | boolean - timescaledb | timescaledb_experimental | show_policies | relation regclass | SETOF jsonb - timescaledb | timescaledb_experimental | time_bucket_ng | bucket_width interval, ts timestamp with time zone, origin timestamp with time zone, timezone text | timestamp with time zone - timescaledb | timescaledb_experimental | time_bucket_ng | bucket_width interval, ts timestamp with time zone, origin timestamp with time zone | timestamp with time zone - timescaledb | timescaledb_experimental | time_bucket_ng | bucket_width interval, ts timestamp without time zone | timestamp without time zone - timescaledb | timescaledb_experimental | time_bucket_ng | bucket_width interval, ts timestamp with time zone, timezone text | timestamp with time zone - timescaledb | timescaledb_experimental | time_bucket_ng | bucket_width interval, ts date | date - timescaledb | timescaledb_experimental | time_bucket_ng | bucket_width interval, ts timestamp without time zone, origin timestamp without time zone | timestamp without time zone - timescaledb | timescaledb_experimental | time_bucket_ng | bucket_width interval, ts timestamp with time zone | timestamp with time zone - timescaledb | timescaledb_experimental | time_bucket_ng | bucket_width interval, ts date, origin date | date - tsm_system_rows | public | system_rows | internal | tsm_handler - unaccent | public | unaccent | text | text - unaccent | public | unaccent | regdictionary, text | text - unaccent | public | unaccent_init | internal | internal - unaccent | public | unaccent_lexize | internal, internal, internal, internal | internal - uuid-ossp | extensions | uuid_generate_v1 | | uuid - uuid-ossp | extensions | uuid_generate_v1mc | | uuid - uuid-ossp | extensions | uuid_generate_v3 | namespace uuid, name text | uuid - uuid-ossp | extensions | uuid_generate_v4 | | uuid - uuid-ossp | extensions | uuid_generate_v5 | namespace uuid, name text | uuid - uuid-ossp | extensions | uuid_nil | | uuid - uuid-ossp | extensions | uuid_ns_dns | | uuid - uuid-ossp | extensions | uuid_ns_oid | | uuid - uuid-ossp | extensions | uuid_ns_url | | uuid - uuid-ossp | extensions | uuid_ns_x500 | | uuid - vector | public | array_to_halfvec | real[], integer, boolean | halfvec - vector | public | array_to_halfvec | integer[], integer, boolean | halfvec - vector | public | array_to_halfvec | numeric[], integer, boolean | halfvec - vector | public | array_to_halfvec | double precision[], integer, boolean | halfvec - vector | public | array_to_sparsevec | real[], integer, boolean | sparsevec - vector | public | array_to_sparsevec | integer[], integer, boolean | sparsevec - vector | public | array_to_sparsevec | numeric[], integer, boolean | sparsevec - vector | public | array_to_sparsevec | double precision[], integer, boolean | sparsevec - vector | public | array_to_vector | real[], integer, boolean | vector - vector | public | array_to_vector | integer[], integer, boolean | vector - vector | public | array_to_vector | numeric[], integer, boolean | vector - vector | public | array_to_vector | double precision[], integer, boolean | vector - vector | public | avg | vector | vector - vector | public | avg | halfvec | halfvec - vector | public | binary_quantize | vector | bit - vector | public | binary_quantize | halfvec | bit - vector | public | cosine_distance | vector, vector | double precision - vector | public | cosine_distance | halfvec, halfvec | double precision - vector | public | cosine_distance | sparsevec, sparsevec | double precision - vector | public | halfvec | halfvec, integer, boolean | halfvec - vector | public | halfvec_accum | double precision[], halfvec | double precision[] - vector | public | halfvec_add | halfvec, halfvec | halfvec - vector | public | halfvec_avg | double precision[] | halfvec - vector | public | halfvec_cmp | halfvec, halfvec | integer - vector | public | halfvec_combine | double precision[], double precision[] | double precision[] - vector | public | halfvec_concat | halfvec, halfvec | halfvec - vector | public | halfvec_eq | halfvec, halfvec | boolean - vector | public | halfvec_ge | halfvec, halfvec | boolean - vector | public | halfvec_gt | halfvec, halfvec | boolean - vector | public | halfvec_in | cstring, oid, integer | halfvec - vector | public | halfvec_l2_squared_distance | halfvec, halfvec | double precision - vector | public | halfvec_le | halfvec, halfvec | boolean - vector | public | halfvec_lt | halfvec, halfvec | boolean - vector | public | halfvec_mul | halfvec, halfvec | halfvec - vector | public | halfvec_ne | halfvec, halfvec | boolean - vector | public | halfvec_negative_inner_product | halfvec, halfvec | double precision - vector | public | halfvec_out | halfvec | cstring - vector | public | halfvec_recv | internal, oid, integer | halfvec - vector | public | halfvec_send | halfvec | bytea - vector | public | halfvec_spherical_distance | halfvec, halfvec | double precision - vector | public | halfvec_sub | halfvec, halfvec | halfvec - vector | public | halfvec_to_float4 | halfvec, integer, boolean | real[] - vector | public | halfvec_to_sparsevec | halfvec, integer, boolean | sparsevec - vector | public | halfvec_to_vector | halfvec, integer, boolean | vector - vector | public | halfvec_typmod_in | cstring[] | integer - vector | public | hamming_distance | bit, bit | double precision - vector | public | hnsw_bit_support | internal | internal - vector | public | hnsw_halfvec_support | internal | internal - vector | public | hnsw_sparsevec_support | internal | internal - vector | public | hnswhandler | internal | index_am_handler - vector | public | inner_product | vector, vector | double precision - vector | public | inner_product | halfvec, halfvec | double precision - vector | public | inner_product | sparsevec, sparsevec | double precision - vector | public | ivfflat_bit_support | internal | internal - vector | public | ivfflat_halfvec_support | internal | internal - vector | public | ivfflathandler | internal | index_am_handler - vector | public | jaccard_distance | bit, bit | double precision - vector | public | l1_distance | vector, vector | double precision - vector | public | l1_distance | halfvec, halfvec | double precision - vector | public | l1_distance | sparsevec, sparsevec | double precision - vector | public | l2_distance | vector, vector | double precision - vector | public | l2_distance | halfvec, halfvec | double precision - vector | public | l2_distance | sparsevec, sparsevec | double precision - vector | public | l2_norm | halfvec | double precision - vector | public | l2_norm | sparsevec | double precision - vector | public | l2_normalize | vector | vector - vector | public | l2_normalize | halfvec | halfvec - vector | public | l2_normalize | sparsevec | sparsevec - vector | public | sparsevec | sparsevec, integer, boolean | sparsevec - vector | public | sparsevec_cmp | sparsevec, sparsevec | integer - vector | public | sparsevec_eq | sparsevec, sparsevec | boolean - vector | public | sparsevec_ge | sparsevec, sparsevec | boolean - vector | public | sparsevec_gt | sparsevec, sparsevec | boolean - vector | public | sparsevec_in | cstring, oid, integer | sparsevec - vector | public | sparsevec_l2_squared_distance | sparsevec, sparsevec | double precision - vector | public | sparsevec_le | sparsevec, sparsevec | boolean - vector | public | sparsevec_lt | sparsevec, sparsevec | boolean - vector | public | sparsevec_ne | sparsevec, sparsevec | boolean - vector | public | sparsevec_negative_inner_product | sparsevec, sparsevec | double precision - vector | public | sparsevec_out | sparsevec | cstring - vector | public | sparsevec_recv | internal, oid, integer | sparsevec - vector | public | sparsevec_send | sparsevec | bytea - vector | public | sparsevec_to_halfvec | sparsevec, integer, boolean | halfvec - vector | public | sparsevec_to_vector | sparsevec, integer, boolean | vector - vector | public | sparsevec_typmod_in | cstring[] | integer - vector | public | subvector | halfvec, integer, integer | halfvec - vector | public | subvector | vector, integer, integer | vector - vector | public | sum | vector | vector - vector | public | sum | halfvec | halfvec - vector | public | vector | vector, integer, boolean | vector - vector | public | vector_accum | double precision[], vector | double precision[] - vector | public | vector_add | vector, vector | vector - vector | public | vector_avg | double precision[] | vector - vector | public | vector_cmp | vector, vector | integer - vector | public | vector_combine | double precision[], double precision[] | double precision[] - vector | public | vector_concat | vector, vector | vector - vector | public | vector_dims | vector | integer - vector | public | vector_dims | halfvec | integer - vector | public | vector_eq | vector, vector | boolean - vector | public | vector_ge | vector, vector | boolean - vector | public | vector_gt | vector, vector | boolean - vector | public | vector_in | cstring, oid, integer | vector - vector | public | vector_l2_squared_distance | vector, vector | double precision - vector | public | vector_le | vector, vector | boolean - vector | public | vector_lt | vector, vector | boolean - vector | public | vector_mul | vector, vector | vector - vector | public | vector_ne | vector, vector | boolean - vector | public | vector_negative_inner_product | vector, vector | double precision - vector | public | vector_norm | vector | double precision - vector | public | vector_out | vector | cstring - vector | public | vector_recv | internal, oid, integer | vector - vector | public | vector_send | vector | bytea - vector | public | vector_spherical_distance | vector, vector | double precision - vector | public | vector_sub | vector, vector | vector - vector | public | vector_to_float4 | vector, integer, boolean | real[] - vector | public | vector_to_halfvec | vector, integer, boolean | halfvec - vector | public | vector_to_sparsevec | vector, integer, boolean | sparsevec - vector | public | vector_typmod_in | cstring[] | integer - wrappers | public | airtable_fdw_handler | | fdw_handler - wrappers | public | airtable_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | airtable_fdw_validator | options text[], catalog oid | void - wrappers | public | auth0_fdw_handler | | fdw_handler - wrappers | public | auth0_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | auth0_fdw_validator | options text[], catalog oid | void - wrappers | public | big_query_fdw_handler | | fdw_handler - wrappers | public | big_query_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | big_query_fdw_validator | options text[], catalog oid | void - wrappers | public | click_house_fdw_handler | | fdw_handler - wrappers | public | click_house_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | click_house_fdw_validator | options text[], catalog oid | void - wrappers | public | cognito_fdw_handler | | fdw_handler - wrappers | public | cognito_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | cognito_fdw_validator | options text[], catalog oid | void - wrappers | public | duckdb_fdw_handler | | fdw_handler - wrappers | public | duckdb_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | duckdb_fdw_validator | options text[], catalog oid | void - wrappers | public | firebase_fdw_handler | | fdw_handler - wrappers | public | firebase_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | firebase_fdw_validator | options text[], catalog oid | void - wrappers | public | hello_world_fdw_handler | | fdw_handler - wrappers | public | hello_world_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | hello_world_fdw_validator | options text[], catalog oid | void - wrappers | public | iceberg_fdw_handler | | fdw_handler - wrappers | public | iceberg_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | iceberg_fdw_validator | options text[], catalog oid | void - wrappers | public | logflare_fdw_handler | | fdw_handler - wrappers | public | logflare_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | logflare_fdw_validator | options text[], catalog oid | void - wrappers | public | mssql_fdw_handler | | fdw_handler - wrappers | public | mssql_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | mssql_fdw_validator | options text[], catalog oid | void - wrappers | public | redis_fdw_handler | | fdw_handler - wrappers | public | redis_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | redis_fdw_validator | options text[], catalog oid | void - wrappers | public | s3_fdw_handler | | fdw_handler - wrappers | public | s3_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | s3_fdw_validator | options text[], catalog oid | void - wrappers | public | stripe_fdw_handler | | fdw_handler - wrappers | public | stripe_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | stripe_fdw_validator | options text[], catalog oid | void - wrappers | public | wasm_fdw_handler | | fdw_handler - wrappers | public | wasm_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | wasm_fdw_validator | options text[], catalog oid | void - xml2 | public | xml_encode_special_chars | text | text - xml2 | public | xml_valid | text | boolean - xml2 | public | xpath_bool | text, text | boolean - xml2 | public | xpath_list | text, text | text - xml2 | public | xpath_list | text, text, text | text - xml2 | public | xpath_nodeset | text, text, text, text | text - xml2 | public | xpath_nodeset | text, text | text - xml2 | public | xpath_nodeset | text, text, text | text - xml2 | public | xpath_number | text, text | real - xml2 | public | xpath_string | text, text | text - xml2 | public | xpath_table | text, text, text, text, text | SETOF record - xml2 | public | xslt_process | text, text | text - xml2 | public | xslt_process | text, text, text | text -(5071 rows) - +ERROR: current transaction is aborted, commands ignored until end of transaction block /* Monitor extension public table/view/matview/index interface @@ -5273,1115 +204,6 @@ order by n.nspname, pc.relname, pa.attname; - extension_name | schema_name | entity_name | attname -------------------------------+--------------------------+--------------------------------------------------+----------------------------------- - address_standardizer_data_us | public | us_gaz | id - address_standardizer_data_us | public | us_gaz | is_custom - address_standardizer_data_us | public | us_gaz | seq - address_standardizer_data_us | public | us_gaz | stdword - address_standardizer_data_us | public | us_gaz | token - address_standardizer_data_us | public | us_gaz | word - address_standardizer_data_us | public | us_lex | id - address_standardizer_data_us | public | us_lex | is_custom - address_standardizer_data_us | public | us_lex | seq - address_standardizer_data_us | public | us_lex | stdword - address_standardizer_data_us | public | us_lex | token - address_standardizer_data_us | public | us_lex | word - address_standardizer_data_us | public | us_rules | id - address_standardizer_data_us | public | us_rules | is_custom - address_standardizer_data_us | public | us_rules | rule - hypopg | public | hypopg_hidden_indexes | am_name - hypopg | public | hypopg_hidden_indexes | index_name - hypopg | public | hypopg_hidden_indexes | indexrelid - hypopg | public | hypopg_hidden_indexes | is_hypo - hypopg | public | hypopg_hidden_indexes | schema_name - hypopg | public | hypopg_hidden_indexes | table_name - hypopg | public | hypopg_list_indexes | am_name - hypopg | public | hypopg_list_indexes | index_name - hypopg | public | hypopg_list_indexes | indexrelid - hypopg | public | hypopg_list_indexes | schema_name - hypopg | public | hypopg_list_indexes | table_name - pg_buffercache | public | pg_buffercache | bufferid - pg_buffercache | public | pg_buffercache | isdirty - pg_buffercache | public | pg_buffercache | pinning_backends - pg_buffercache | public | pg_buffercache | relblocknumber - pg_buffercache | public | pg_buffercache | reldatabase - pg_buffercache | public | pg_buffercache | relfilenode - pg_buffercache | public | pg_buffercache | relforknumber - pg_buffercache | public | pg_buffercache | reltablespace - pg_buffercache | public | pg_buffercache | usagecount - pg_net | net | _http_response | content - pg_net | net | _http_response | content_type - pg_net | net | _http_response | created - pg_net | net | _http_response | error_msg - pg_net | net | _http_response | headers - pg_net | net | _http_response | id - pg_net | net | _http_response | status_code - pg_net | net | _http_response | timed_out - pg_net | net | http_request_queue | body - pg_net | net | http_request_queue | headers - pg_net | net | http_request_queue | id - pg_net | net | http_request_queue | method - pg_net | net | http_request_queue | timeout_milliseconds - pg_net | net | http_request_queue | url - pg_repack | repack | primary_keys | indexrelid - pg_repack | repack | primary_keys | indrelid - pg_repack | repack | tables | alter_col_storage - pg_repack | repack | tables | ckey - pg_repack | repack | tables | ckid - pg_repack | repack | tables | copy_data - pg_repack | repack | tables | create_log - pg_repack | repack | tables | create_pktype - pg_repack | repack | tables | create_table - pg_repack | repack | tables | create_trigger - pg_repack | repack | tables | delete_log - pg_repack | repack | tables | drop_columns - pg_repack | repack | tables | enable_trigger - pg_repack | repack | tables | lock_table - pg_repack | repack | tables | pkid - pg_repack | repack | tables | relid - pg_repack | repack | tables | relname - pg_repack | repack | tables | reltoastidxid - pg_repack | repack | tables | reltoastrelid - pg_repack | repack | tables | schemaname - pg_repack | repack | tables | sql_delete - pg_repack | repack | tables | sql_insert - pg_repack | repack | tables | sql_peek - pg_repack | repack | tables | sql_pop - pg_repack | repack | tables | sql_update - pg_repack | repack | tables | tablespace_orig - pg_stat_monitor | public | pg_stat_monitor | application_name - pg_stat_monitor | public | pg_stat_monitor | blk_read_time - pg_stat_monitor | public | pg_stat_monitor | blk_write_time - pg_stat_monitor | public | pg_stat_monitor | bucket - pg_stat_monitor | public | pg_stat_monitor | bucket_done - pg_stat_monitor | public | pg_stat_monitor | bucket_start_time - pg_stat_monitor | public | pg_stat_monitor | calls - pg_stat_monitor | public | pg_stat_monitor | client_ip - pg_stat_monitor | public | pg_stat_monitor | cmd_type - pg_stat_monitor | public | pg_stat_monitor | cmd_type_text - pg_stat_monitor | public | pg_stat_monitor | comments - pg_stat_monitor | public | pg_stat_monitor | cpu_sys_time - pg_stat_monitor | public | pg_stat_monitor | cpu_user_time - pg_stat_monitor | public | pg_stat_monitor | datname - pg_stat_monitor | public | pg_stat_monitor | dbid - pg_stat_monitor | public | pg_stat_monitor | elevel - pg_stat_monitor | public | pg_stat_monitor | jit_emission_count - pg_stat_monitor | public | pg_stat_monitor | jit_emission_time - pg_stat_monitor | public | pg_stat_monitor | jit_functions - pg_stat_monitor | public | pg_stat_monitor | jit_generation_time - pg_stat_monitor | public | pg_stat_monitor | jit_inlining_count - pg_stat_monitor | public | pg_stat_monitor | jit_inlining_time - pg_stat_monitor | public | pg_stat_monitor | jit_optimization_count - pg_stat_monitor | public | pg_stat_monitor | jit_optimization_time - pg_stat_monitor | public | pg_stat_monitor | local_blks_dirtied - pg_stat_monitor | public | pg_stat_monitor | local_blks_hit - pg_stat_monitor | public | pg_stat_monitor | local_blks_read - pg_stat_monitor | public | pg_stat_monitor | local_blks_written - pg_stat_monitor | public | pg_stat_monitor | max_exec_time - pg_stat_monitor | public | pg_stat_monitor | max_plan_time - pg_stat_monitor | public | pg_stat_monitor | mean_exec_time - pg_stat_monitor | public | pg_stat_monitor | mean_plan_time - pg_stat_monitor | public | pg_stat_monitor | message - pg_stat_monitor | public | pg_stat_monitor | min_exec_time - pg_stat_monitor | public | pg_stat_monitor | min_plan_time - pg_stat_monitor | public | pg_stat_monitor | pgsm_query_id - pg_stat_monitor | public | pg_stat_monitor | planid - pg_stat_monitor | public | pg_stat_monitor | plans - pg_stat_monitor | public | pg_stat_monitor | query - pg_stat_monitor | public | pg_stat_monitor | query_plan - pg_stat_monitor | public | pg_stat_monitor | queryid - pg_stat_monitor | public | pg_stat_monitor | relations - pg_stat_monitor | public | pg_stat_monitor | resp_calls - pg_stat_monitor | public | pg_stat_monitor | rows - pg_stat_monitor | public | pg_stat_monitor | shared_blks_dirtied - pg_stat_monitor | public | pg_stat_monitor | shared_blks_hit - pg_stat_monitor | public | pg_stat_monitor | shared_blks_read - pg_stat_monitor | public | pg_stat_monitor | shared_blks_written - pg_stat_monitor | public | pg_stat_monitor | sqlcode - pg_stat_monitor | public | pg_stat_monitor | stddev_exec_time - pg_stat_monitor | public | pg_stat_monitor | stddev_plan_time - pg_stat_monitor | public | pg_stat_monitor | temp_blk_read_time - pg_stat_monitor | public | pg_stat_monitor | temp_blk_write_time - pg_stat_monitor | public | pg_stat_monitor | temp_blks_read - pg_stat_monitor | public | pg_stat_monitor | temp_blks_written - pg_stat_monitor | public | pg_stat_monitor | top_query - pg_stat_monitor | public | pg_stat_monitor | top_queryid - pg_stat_monitor | public | pg_stat_monitor | toplevel - pg_stat_monitor | public | pg_stat_monitor | total_exec_time - pg_stat_monitor | public | pg_stat_monitor | total_plan_time - pg_stat_monitor | public | pg_stat_monitor | userid - pg_stat_monitor | public | pg_stat_monitor | username - pg_stat_monitor | public | pg_stat_monitor | wal_bytes - pg_stat_monitor | public | pg_stat_monitor | wal_fpi - pg_stat_monitor | public | pg_stat_monitor | wal_records - pg_stat_statements | extensions | pg_stat_statements | blk_read_time - pg_stat_statements | extensions | pg_stat_statements | blk_write_time - pg_stat_statements | extensions | pg_stat_statements | calls - pg_stat_statements | extensions | pg_stat_statements | dbid - pg_stat_statements | extensions | pg_stat_statements | jit_emission_count - pg_stat_statements | extensions | pg_stat_statements | jit_emission_time - pg_stat_statements | extensions | pg_stat_statements | jit_functions - pg_stat_statements | extensions | pg_stat_statements | jit_generation_time - pg_stat_statements | extensions | pg_stat_statements | jit_inlining_count - pg_stat_statements | extensions | pg_stat_statements | jit_inlining_time - pg_stat_statements | extensions | pg_stat_statements | jit_optimization_count - pg_stat_statements | extensions | pg_stat_statements | jit_optimization_time - pg_stat_statements | extensions | pg_stat_statements | local_blks_dirtied - pg_stat_statements | extensions | pg_stat_statements | local_blks_hit - pg_stat_statements | extensions | pg_stat_statements | local_blks_read - pg_stat_statements | extensions | pg_stat_statements | local_blks_written - pg_stat_statements | extensions | pg_stat_statements | max_exec_time - pg_stat_statements | extensions | pg_stat_statements | max_plan_time - pg_stat_statements | extensions | pg_stat_statements | mean_exec_time - pg_stat_statements | extensions | pg_stat_statements | mean_plan_time - pg_stat_statements | extensions | pg_stat_statements | min_exec_time - pg_stat_statements | extensions | pg_stat_statements | min_plan_time - pg_stat_statements | extensions | pg_stat_statements | plans - pg_stat_statements | extensions | pg_stat_statements | query - pg_stat_statements | extensions | pg_stat_statements | queryid - pg_stat_statements | extensions | pg_stat_statements | rows - pg_stat_statements | extensions | pg_stat_statements | shared_blks_dirtied - pg_stat_statements | extensions | pg_stat_statements | shared_blks_hit - pg_stat_statements | extensions | pg_stat_statements | shared_blks_read - pg_stat_statements | extensions | pg_stat_statements | shared_blks_written - pg_stat_statements | extensions | pg_stat_statements | stddev_exec_time - pg_stat_statements | extensions | pg_stat_statements | stddev_plan_time - pg_stat_statements | extensions | pg_stat_statements | temp_blk_read_time - pg_stat_statements | extensions | pg_stat_statements | temp_blk_write_time - pg_stat_statements | extensions | pg_stat_statements | temp_blks_read - pg_stat_statements | extensions | pg_stat_statements | temp_blks_written - pg_stat_statements | extensions | pg_stat_statements | toplevel - pg_stat_statements | extensions | pg_stat_statements | total_exec_time - pg_stat_statements | extensions | pg_stat_statements | total_plan_time - pg_stat_statements | extensions | pg_stat_statements | userid - pg_stat_statements | extensions | pg_stat_statements | wal_bytes - pg_stat_statements | extensions | pg_stat_statements | wal_fpi - pg_stat_statements | extensions | pg_stat_statements | wal_records - pg_stat_statements | extensions | pg_stat_statements_info | dealloc - pg_stat_statements | extensions | pg_stat_statements_info | stats_reset - pg_tle | pgtle | feature_info | feature - pg_tle | pgtle | feature_info | obj_identity - pg_tle | pgtle | feature_info | proname - pg_tle | pgtle | feature_info | schema_name - pgmq | pgmq | a_foo | archived_at - pgmq | pgmq | a_foo | enqueued_at - pgmq | pgmq | a_foo | headers - pgmq | pgmq | a_foo | message - pgmq | pgmq | a_foo | msg_id - pgmq | pgmq | a_foo | read_ct - pgmq | pgmq | a_foo | vt - pgmq | pgmq | meta | created_at - pgmq | pgmq | meta | is_partitioned - pgmq | pgmq | meta | is_unlogged - pgmq | pgmq | meta | queue_name - pgmq | pgmq | q_foo | enqueued_at - pgmq | pgmq | q_foo | headers - pgmq | pgmq | q_foo | message - pgmq | pgmq | q_foo | msg_id - pgmq | pgmq | q_foo | read_ct - pgmq | pgmq | q_foo | vt - pgsodium | pgsodium | decrypted_key | associated_data - pgsodium | pgsodium | decrypted_key | comment - pgsodium | pgsodium | decrypted_key | created - pgsodium | pgsodium | decrypted_key | decrypted_raw_key - pgsodium | pgsodium | decrypted_key | expires - pgsodium | pgsodium | decrypted_key | id - pgsodium | pgsodium | decrypted_key | key_context - pgsodium | pgsodium | decrypted_key | key_id - pgsodium | pgsodium | decrypted_key | key_type - pgsodium | pgsodium | decrypted_key | name - pgsodium | pgsodium | decrypted_key | parent_key - pgsodium | pgsodium | decrypted_key | raw_key - pgsodium | pgsodium | decrypted_key | raw_key_nonce - pgsodium | pgsodium | decrypted_key | status - pgsodium | pgsodium | key | associated_data - pgsodium | pgsodium | key | comment - pgsodium | pgsodium | key | created - pgsodium | pgsodium | key | expires - pgsodium | pgsodium | key | id - pgsodium | pgsodium | key | key_context - pgsodium | pgsodium | key | key_id - pgsodium | pgsodium | key | key_type - pgsodium | pgsodium | key | name - pgsodium | pgsodium | key | parent_key - pgsodium | pgsodium | key | raw_key - pgsodium | pgsodium | key | raw_key_nonce - pgsodium | pgsodium | key | status - pgsodium | pgsodium | key | user_data - pgsodium | pgsodium | mask_columns | associated_columns - pgsodium | pgsodium | mask_columns | attname - pgsodium | pgsodium | mask_columns | attrelid - pgsodium | pgsodium | mask_columns | format_type - pgsodium | pgsodium | mask_columns | key_id - pgsodium | pgsodium | mask_columns | key_id_column - pgsodium | pgsodium | mask_columns | nonce_column - pgsodium | pgsodium | masking_rule | associated_columns - pgsodium | pgsodium | masking_rule | attname - pgsodium | pgsodium | masking_rule | attnum - pgsodium | pgsodium | masking_rule | attrelid - pgsodium | pgsodium | masking_rule | col_description - pgsodium | pgsodium | masking_rule | format_type - pgsodium | pgsodium | masking_rule | key_id - pgsodium | pgsodium | masking_rule | key_id_column - pgsodium | pgsodium | masking_rule | nonce_column - pgsodium | pgsodium | masking_rule | priority - pgsodium | pgsodium | masking_rule | relname - pgsodium | pgsodium | masking_rule | relnamespace - pgsodium | pgsodium | masking_rule | security_invoker - pgsodium | pgsodium | masking_rule | view_name - pgsodium | pgsodium | valid_key | associated_data - pgsodium | pgsodium | valid_key | created - pgsodium | pgsodium | valid_key | expires - pgsodium | pgsodium | valid_key | id - pgsodium | pgsodium | valid_key | key_context - pgsodium | pgsodium | valid_key | key_id - pgsodium | pgsodium | valid_key | key_type - pgsodium | pgsodium | valid_key | name - pgsodium | pgsodium | valid_key | status - pgtap | public | pg_all_foreign_keys | fk_columns - pgtap | public | pg_all_foreign_keys | fk_constraint_name - pgtap | public | pg_all_foreign_keys | fk_schema_name - pgtap | public | pg_all_foreign_keys | fk_table_name - pgtap | public | pg_all_foreign_keys | fk_table_oid - pgtap | public | pg_all_foreign_keys | is_deferrable - pgtap | public | pg_all_foreign_keys | is_deferred - pgtap | public | pg_all_foreign_keys | match_type - pgtap | public | pg_all_foreign_keys | on_delete - pgtap | public | pg_all_foreign_keys | on_update - pgtap | public | pg_all_foreign_keys | pk_columns - pgtap | public | pg_all_foreign_keys | pk_constraint_name - pgtap | public | pg_all_foreign_keys | pk_index_name - pgtap | public | pg_all_foreign_keys | pk_schema_name - pgtap | public | pg_all_foreign_keys | pk_table_name - pgtap | public | pg_all_foreign_keys | pk_table_oid - pgtap | public | tap_funky | args - pgtap | public | tap_funky | is_definer - pgtap | public | tap_funky | is_strict - pgtap | public | tap_funky | is_visible - pgtap | public | tap_funky | kind - pgtap | public | tap_funky | langoid - pgtap | public | tap_funky | name - pgtap | public | tap_funky | oid - pgtap | public | tap_funky | owner - pgtap | public | tap_funky | returns - pgtap | public | tap_funky | returns_set - pgtap | public | tap_funky | schema - pgtap | public | tap_funky | volatility - postgis | public | geography_columns | coord_dimension - postgis | public | geography_columns | f_geography_column - postgis | public | geography_columns | f_table_catalog - postgis | public | geography_columns | f_table_name - postgis | public | geography_columns | f_table_schema - postgis | public | geography_columns | srid - postgis | public | geography_columns | type - postgis | public | geometry_columns | coord_dimension - postgis | public | geometry_columns | f_geometry_column - postgis | public | geometry_columns | f_table_catalog - postgis | public | geometry_columns | f_table_name - postgis | public | geometry_columns | f_table_schema - postgis | public | geometry_columns | srid - postgis | public | geometry_columns | type - postgis | public | spatial_ref_sys | auth_name - postgis | public | spatial_ref_sys | auth_srid - postgis | public | spatial_ref_sys | proj4text - postgis | public | spatial_ref_sys | srid - postgis | public | spatial_ref_sys | srtext - postgis_raster | public | raster_columns | blocksize_x - postgis_raster | public | raster_columns | blocksize_y - postgis_raster | public | raster_columns | extent - postgis_raster | public | raster_columns | nodata_values - postgis_raster | public | raster_columns | num_bands - postgis_raster | public | raster_columns | out_db - postgis_raster | public | raster_columns | pixel_types - postgis_raster | public | raster_columns | r_raster_column - postgis_raster | public | raster_columns | r_table_catalog - postgis_raster | public | raster_columns | r_table_name - postgis_raster | public | raster_columns | r_table_schema - postgis_raster | public | raster_columns | regular_blocking - postgis_raster | public | raster_columns | same_alignment - postgis_raster | public | raster_columns | scale_x - postgis_raster | public | raster_columns | scale_y - postgis_raster | public | raster_columns | spatial_index - postgis_raster | public | raster_columns | srid - postgis_raster | public | raster_overviews | o_raster_column - postgis_raster | public | raster_overviews | o_table_catalog - postgis_raster | public | raster_overviews | o_table_name - postgis_raster | public | raster_overviews | o_table_schema - postgis_raster | public | raster_overviews | overview_factor - postgis_raster | public | raster_overviews | r_raster_column - postgis_raster | public | raster_overviews | r_table_catalog - postgis_raster | public | raster_overviews | r_table_name - postgis_raster | public | raster_overviews | r_table_schema - postgis_tiger_geocoder | tiger | addr | arid - postgis_tiger_geocoder | tiger | addr | fromarmid - postgis_tiger_geocoder | tiger | addr | fromhn - postgis_tiger_geocoder | tiger | addr | fromtyp - postgis_tiger_geocoder | tiger | addr | gid - postgis_tiger_geocoder | tiger | addr | mtfcc - postgis_tiger_geocoder | tiger | addr | plus4 - postgis_tiger_geocoder | tiger | addr | side - postgis_tiger_geocoder | tiger | addr | statefp - postgis_tiger_geocoder | tiger | addr | tlid - postgis_tiger_geocoder | tiger | addr | toarmid - postgis_tiger_geocoder | tiger | addr | tohn - postgis_tiger_geocoder | tiger | addr | totyp - postgis_tiger_geocoder | tiger | addr | zip - postgis_tiger_geocoder | tiger | addrfeat | aridl - postgis_tiger_geocoder | tiger | addrfeat | aridr - postgis_tiger_geocoder | tiger | addrfeat | edge_mtfcc - postgis_tiger_geocoder | tiger | addrfeat | fullname - postgis_tiger_geocoder | tiger | addrfeat | gid - postgis_tiger_geocoder | tiger | addrfeat | lfromhn - postgis_tiger_geocoder | tiger | addrfeat | lfromtyp - postgis_tiger_geocoder | tiger | addrfeat | linearid - postgis_tiger_geocoder | tiger | addrfeat | ltohn - postgis_tiger_geocoder | tiger | addrfeat | ltotyp - postgis_tiger_geocoder | tiger | addrfeat | offsetl - postgis_tiger_geocoder | tiger | addrfeat | offsetr - postgis_tiger_geocoder | tiger | addrfeat | parityl - postgis_tiger_geocoder | tiger | addrfeat | parityr - postgis_tiger_geocoder | tiger | addrfeat | plus4l - postgis_tiger_geocoder | tiger | addrfeat | plus4r - postgis_tiger_geocoder | tiger | addrfeat | rfromhn - postgis_tiger_geocoder | tiger | addrfeat | rfromtyp - postgis_tiger_geocoder | tiger | addrfeat | rtohn - postgis_tiger_geocoder | tiger | addrfeat | rtotyp - postgis_tiger_geocoder | tiger | addrfeat | statefp - postgis_tiger_geocoder | tiger | addrfeat | the_geom - postgis_tiger_geocoder | tiger | addrfeat | tlid - postgis_tiger_geocoder | tiger | addrfeat | zipl - postgis_tiger_geocoder | tiger | addrfeat | zipr - postgis_tiger_geocoder | tiger | bg | aland - postgis_tiger_geocoder | tiger | bg | awater - postgis_tiger_geocoder | tiger | bg | bg_id - postgis_tiger_geocoder | tiger | bg | blkgrpce - postgis_tiger_geocoder | tiger | bg | countyfp - postgis_tiger_geocoder | tiger | bg | funcstat - postgis_tiger_geocoder | tiger | bg | gid - postgis_tiger_geocoder | tiger | bg | intptlat - postgis_tiger_geocoder | tiger | bg | intptlon - postgis_tiger_geocoder | tiger | bg | mtfcc - postgis_tiger_geocoder | tiger | bg | namelsad - postgis_tiger_geocoder | tiger | bg | statefp - postgis_tiger_geocoder | tiger | bg | the_geom - postgis_tiger_geocoder | tiger | bg | tractce - postgis_tiger_geocoder | tiger | county | aland - postgis_tiger_geocoder | tiger | county | awater - postgis_tiger_geocoder | tiger | county | cbsafp - postgis_tiger_geocoder | tiger | county | classfp - postgis_tiger_geocoder | tiger | county | cntyidfp - postgis_tiger_geocoder | tiger | county | countyfp - postgis_tiger_geocoder | tiger | county | countyns - postgis_tiger_geocoder | tiger | county | csafp - postgis_tiger_geocoder | tiger | county | funcstat - postgis_tiger_geocoder | tiger | county | gid - postgis_tiger_geocoder | tiger | county | intptlat - postgis_tiger_geocoder | tiger | county | intptlon - postgis_tiger_geocoder | tiger | county | lsad - postgis_tiger_geocoder | tiger | county | metdivfp - postgis_tiger_geocoder | tiger | county | mtfcc - postgis_tiger_geocoder | tiger | county | name - postgis_tiger_geocoder | tiger | county | namelsad - postgis_tiger_geocoder | tiger | county | statefp - postgis_tiger_geocoder | tiger | county | the_geom - postgis_tiger_geocoder | tiger | county_lookup | co_code - postgis_tiger_geocoder | tiger | county_lookup | name - postgis_tiger_geocoder | tiger | county_lookup | st_code - postgis_tiger_geocoder | tiger | county_lookup | state - postgis_tiger_geocoder | tiger | countysub_lookup | co_code - postgis_tiger_geocoder | tiger | countysub_lookup | county - postgis_tiger_geocoder | tiger | countysub_lookup | cs_code - postgis_tiger_geocoder | tiger | countysub_lookup | name - postgis_tiger_geocoder | tiger | countysub_lookup | st_code - postgis_tiger_geocoder | tiger | countysub_lookup | state - postgis_tiger_geocoder | tiger | cousub | aland - postgis_tiger_geocoder | tiger | cousub | awater - postgis_tiger_geocoder | tiger | cousub | classfp - postgis_tiger_geocoder | tiger | cousub | cnectafp - postgis_tiger_geocoder | tiger | cousub | cosbidfp - postgis_tiger_geocoder | tiger | cousub | countyfp - postgis_tiger_geocoder | tiger | cousub | cousubfp - postgis_tiger_geocoder | tiger | cousub | cousubns - postgis_tiger_geocoder | tiger | cousub | funcstat - postgis_tiger_geocoder | tiger | cousub | gid - postgis_tiger_geocoder | tiger | cousub | intptlat - postgis_tiger_geocoder | tiger | cousub | intptlon - postgis_tiger_geocoder | tiger | cousub | lsad - postgis_tiger_geocoder | tiger | cousub | mtfcc - postgis_tiger_geocoder | tiger | cousub | name - postgis_tiger_geocoder | tiger | cousub | namelsad - postgis_tiger_geocoder | tiger | cousub | nctadvfp - postgis_tiger_geocoder | tiger | cousub | nectafp - postgis_tiger_geocoder | tiger | cousub | statefp - postgis_tiger_geocoder | tiger | cousub | the_geom - postgis_tiger_geocoder | tiger | direction_lookup | abbrev - postgis_tiger_geocoder | tiger | direction_lookup | name - postgis_tiger_geocoder | tiger | edges | artpath - postgis_tiger_geocoder | tiger | edges | countyfp - postgis_tiger_geocoder | tiger | edges | deckedroad - postgis_tiger_geocoder | tiger | edges | divroad - postgis_tiger_geocoder | tiger | edges | exttyp - postgis_tiger_geocoder | tiger | edges | featcat - postgis_tiger_geocoder | tiger | edges | fullname - postgis_tiger_geocoder | tiger | edges | gcseflg - postgis_tiger_geocoder | tiger | edges | gid - postgis_tiger_geocoder | tiger | edges | hydroflg - postgis_tiger_geocoder | tiger | edges | lfromadd - postgis_tiger_geocoder | tiger | edges | ltoadd - postgis_tiger_geocoder | tiger | edges | mtfcc - postgis_tiger_geocoder | tiger | edges | offsetl - postgis_tiger_geocoder | tiger | edges | offsetr - postgis_tiger_geocoder | tiger | edges | olfflg - postgis_tiger_geocoder | tiger | edges | passflg - postgis_tiger_geocoder | tiger | edges | persist - postgis_tiger_geocoder | tiger | edges | railflg - postgis_tiger_geocoder | tiger | edges | rfromadd - postgis_tiger_geocoder | tiger | edges | roadflg - postgis_tiger_geocoder | tiger | edges | rtoadd - postgis_tiger_geocoder | tiger | edges | smid - postgis_tiger_geocoder | tiger | edges | statefp - postgis_tiger_geocoder | tiger | edges | tfidl - postgis_tiger_geocoder | tiger | edges | tfidr - postgis_tiger_geocoder | tiger | edges | the_geom - postgis_tiger_geocoder | tiger | edges | tlid - postgis_tiger_geocoder | tiger | edges | tnidf - postgis_tiger_geocoder | tiger | edges | tnidt - postgis_tiger_geocoder | tiger | edges | ttyp - postgis_tiger_geocoder | tiger | edges | zipl - postgis_tiger_geocoder | tiger | edges | zipr - postgis_tiger_geocoder | tiger | faces | aiannhce - postgis_tiger_geocoder | tiger | faces | aiannhce00 - postgis_tiger_geocoder | tiger | faces | aiannhfp - postgis_tiger_geocoder | tiger | faces | aiannhfp00 - postgis_tiger_geocoder | tiger | faces | anrcfp - postgis_tiger_geocoder | tiger | faces | anrcfp00 - postgis_tiger_geocoder | tiger | faces | atotal - postgis_tiger_geocoder | tiger | faces | blkgrpce - postgis_tiger_geocoder | tiger | faces | blkgrpce00 - postgis_tiger_geocoder | tiger | faces | blkgrpce20 - postgis_tiger_geocoder | tiger | faces | blockce - postgis_tiger_geocoder | tiger | faces | blockce00 - postgis_tiger_geocoder | tiger | faces | blockce20 - postgis_tiger_geocoder | tiger | faces | cbsafp - postgis_tiger_geocoder | tiger | faces | cd108fp - postgis_tiger_geocoder | tiger | faces | cd111fp - postgis_tiger_geocoder | tiger | faces | cnectafp - postgis_tiger_geocoder | tiger | faces | comptyp - postgis_tiger_geocoder | tiger | faces | comptyp00 - postgis_tiger_geocoder | tiger | faces | conctyfp - postgis_tiger_geocoder | tiger | faces | conctyfp00 - postgis_tiger_geocoder | tiger | faces | countyfp - postgis_tiger_geocoder | tiger | faces | countyfp00 - postgis_tiger_geocoder | tiger | faces | countyfp20 - postgis_tiger_geocoder | tiger | faces | cousubfp - postgis_tiger_geocoder | tiger | faces | cousubfp00 - postgis_tiger_geocoder | tiger | faces | csafp - postgis_tiger_geocoder | tiger | faces | elsdlea - postgis_tiger_geocoder | tiger | faces | elsdlea00 - postgis_tiger_geocoder | tiger | faces | gid - postgis_tiger_geocoder | tiger | faces | intptlat - postgis_tiger_geocoder | tiger | faces | intptlon - postgis_tiger_geocoder | tiger | faces | lwflag - postgis_tiger_geocoder | tiger | faces | metdivfp - postgis_tiger_geocoder | tiger | faces | nctadvfp - postgis_tiger_geocoder | tiger | faces | nectafp - postgis_tiger_geocoder | tiger | faces | offset - postgis_tiger_geocoder | tiger | faces | placefp - postgis_tiger_geocoder | tiger | faces | placefp00 - postgis_tiger_geocoder | tiger | faces | puma5ce - postgis_tiger_geocoder | tiger | faces | puma5ce00 - postgis_tiger_geocoder | tiger | faces | scsdlea - postgis_tiger_geocoder | tiger | faces | scsdlea00 - postgis_tiger_geocoder | tiger | faces | sldlst - postgis_tiger_geocoder | tiger | faces | sldlst00 - postgis_tiger_geocoder | tiger | faces | sldust - postgis_tiger_geocoder | tiger | faces | sldust00 - postgis_tiger_geocoder | tiger | faces | statefp - postgis_tiger_geocoder | tiger | faces | statefp00 - postgis_tiger_geocoder | tiger | faces | statefp20 - postgis_tiger_geocoder | tiger | faces | submcdfp - postgis_tiger_geocoder | tiger | faces | submcdfp00 - postgis_tiger_geocoder | tiger | faces | tazce - postgis_tiger_geocoder | tiger | faces | tazce00 - postgis_tiger_geocoder | tiger | faces | tblkgpce - postgis_tiger_geocoder | tiger | faces | tfid - postgis_tiger_geocoder | tiger | faces | the_geom - postgis_tiger_geocoder | tiger | faces | tractce - postgis_tiger_geocoder | tiger | faces | tractce00 - postgis_tiger_geocoder | tiger | faces | tractce20 - postgis_tiger_geocoder | tiger | faces | trsubce - postgis_tiger_geocoder | tiger | faces | trsubce00 - postgis_tiger_geocoder | tiger | faces | trsubfp - postgis_tiger_geocoder | tiger | faces | trsubfp00 - postgis_tiger_geocoder | tiger | faces | ttractce - postgis_tiger_geocoder | tiger | faces | uace - postgis_tiger_geocoder | tiger | faces | uace00 - postgis_tiger_geocoder | tiger | faces | ugace - postgis_tiger_geocoder | tiger | faces | ugace00 - postgis_tiger_geocoder | tiger | faces | unsdlea - postgis_tiger_geocoder | tiger | faces | unsdlea00 - postgis_tiger_geocoder | tiger | faces | vtdst - postgis_tiger_geocoder | tiger | faces | vtdst00 - postgis_tiger_geocoder | tiger | faces | zcta5ce - postgis_tiger_geocoder | tiger | faces | zcta5ce00 - postgis_tiger_geocoder | tiger | featnames | fullname - postgis_tiger_geocoder | tiger | featnames | gid - postgis_tiger_geocoder | tiger | featnames | linearid - postgis_tiger_geocoder | tiger | featnames | mtfcc - postgis_tiger_geocoder | tiger | featnames | name - postgis_tiger_geocoder | tiger | featnames | paflag - postgis_tiger_geocoder | tiger | featnames | predir - postgis_tiger_geocoder | tiger | featnames | predirabrv - postgis_tiger_geocoder | tiger | featnames | prequal - postgis_tiger_geocoder | tiger | featnames | prequalabr - postgis_tiger_geocoder | tiger | featnames | pretyp - postgis_tiger_geocoder | tiger | featnames | pretypabrv - postgis_tiger_geocoder | tiger | featnames | statefp - postgis_tiger_geocoder | tiger | featnames | sufdir - postgis_tiger_geocoder | tiger | featnames | sufdirabrv - postgis_tiger_geocoder | tiger | featnames | sufqual - postgis_tiger_geocoder | tiger | featnames | sufqualabr - postgis_tiger_geocoder | tiger | featnames | suftyp - postgis_tiger_geocoder | tiger | featnames | suftypabrv - postgis_tiger_geocoder | tiger | featnames | tlid - postgis_tiger_geocoder | tiger | geocode_settings | category - postgis_tiger_geocoder | tiger | geocode_settings | name - postgis_tiger_geocoder | tiger | geocode_settings | setting - postgis_tiger_geocoder | tiger | geocode_settings | short_desc - postgis_tiger_geocoder | tiger | geocode_settings | unit - postgis_tiger_geocoder | tiger | geocode_settings_default | category - postgis_tiger_geocoder | tiger | geocode_settings_default | name - postgis_tiger_geocoder | tiger | geocode_settings_default | setting - postgis_tiger_geocoder | tiger | geocode_settings_default | short_desc - postgis_tiger_geocoder | tiger | geocode_settings_default | unit - postgis_tiger_geocoder | tiger | loader_lookuptables | columns_exclude - postgis_tiger_geocoder | tiger | loader_lookuptables | insert_mode - postgis_tiger_geocoder | tiger | loader_lookuptables | level_county - postgis_tiger_geocoder | tiger | loader_lookuptables | level_nation - postgis_tiger_geocoder | tiger | loader_lookuptables | level_state - postgis_tiger_geocoder | tiger | loader_lookuptables | load - postgis_tiger_geocoder | tiger | loader_lookuptables | lookup_name - postgis_tiger_geocoder | tiger | loader_lookuptables | post_load_process - postgis_tiger_geocoder | tiger | loader_lookuptables | pre_load_process - postgis_tiger_geocoder | tiger | loader_lookuptables | process_order - postgis_tiger_geocoder | tiger | loader_lookuptables | single_geom_mode - postgis_tiger_geocoder | tiger | loader_lookuptables | single_mode - postgis_tiger_geocoder | tiger | loader_lookuptables | table_name - postgis_tiger_geocoder | tiger | loader_lookuptables | website_root_override - postgis_tiger_geocoder | tiger | loader_platform | county_process_command - postgis_tiger_geocoder | tiger | loader_platform | declare_sect - postgis_tiger_geocoder | tiger | loader_platform | environ_set_command - postgis_tiger_geocoder | tiger | loader_platform | loader - postgis_tiger_geocoder | tiger | loader_platform | os - postgis_tiger_geocoder | tiger | loader_platform | path_sep - postgis_tiger_geocoder | tiger | loader_platform | pgbin - postgis_tiger_geocoder | tiger | loader_platform | psql - postgis_tiger_geocoder | tiger | loader_platform | unzip_command - postgis_tiger_geocoder | tiger | loader_platform | wget - postgis_tiger_geocoder | tiger | loader_variables | data_schema - postgis_tiger_geocoder | tiger | loader_variables | staging_fold - postgis_tiger_geocoder | tiger | loader_variables | staging_schema - postgis_tiger_geocoder | tiger | loader_variables | tiger_year - postgis_tiger_geocoder | tiger | loader_variables | website_root - postgis_tiger_geocoder | tiger | pagc_gaz | id - postgis_tiger_geocoder | tiger | pagc_gaz | is_custom - postgis_tiger_geocoder | tiger | pagc_gaz | seq - postgis_tiger_geocoder | tiger | pagc_gaz | stdword - postgis_tiger_geocoder | tiger | pagc_gaz | token - postgis_tiger_geocoder | tiger | pagc_gaz | word - postgis_tiger_geocoder | tiger | pagc_lex | id - postgis_tiger_geocoder | tiger | pagc_lex | is_custom - postgis_tiger_geocoder | tiger | pagc_lex | seq - postgis_tiger_geocoder | tiger | pagc_lex | stdword - postgis_tiger_geocoder | tiger | pagc_lex | token - postgis_tiger_geocoder | tiger | pagc_lex | word - postgis_tiger_geocoder | tiger | pagc_rules | id - postgis_tiger_geocoder | tiger | pagc_rules | is_custom - postgis_tiger_geocoder | tiger | pagc_rules | rule - postgis_tiger_geocoder | tiger | place | aland - postgis_tiger_geocoder | tiger | place | awater - postgis_tiger_geocoder | tiger | place | classfp - postgis_tiger_geocoder | tiger | place | cpi - postgis_tiger_geocoder | tiger | place | funcstat - postgis_tiger_geocoder | tiger | place | gid - postgis_tiger_geocoder | tiger | place | intptlat - postgis_tiger_geocoder | tiger | place | intptlon - postgis_tiger_geocoder | tiger | place | lsad - postgis_tiger_geocoder | tiger | place | mtfcc - postgis_tiger_geocoder | tiger | place | name - postgis_tiger_geocoder | tiger | place | namelsad - postgis_tiger_geocoder | tiger | place | pcicbsa - postgis_tiger_geocoder | tiger | place | pcinecta - postgis_tiger_geocoder | tiger | place | placefp - postgis_tiger_geocoder | tiger | place | placens - postgis_tiger_geocoder | tiger | place | plcidfp - postgis_tiger_geocoder | tiger | place | statefp - postgis_tiger_geocoder | tiger | place | the_geom - postgis_tiger_geocoder | tiger | place_lookup | name - postgis_tiger_geocoder | tiger | place_lookup | pl_code - postgis_tiger_geocoder | tiger | place_lookup | st_code - postgis_tiger_geocoder | tiger | place_lookup | state - postgis_tiger_geocoder | tiger | secondary_unit_lookup | abbrev - postgis_tiger_geocoder | tiger | secondary_unit_lookup | name - postgis_tiger_geocoder | tiger | state | aland - postgis_tiger_geocoder | tiger | state | awater - postgis_tiger_geocoder | tiger | state | division - postgis_tiger_geocoder | tiger | state | funcstat - postgis_tiger_geocoder | tiger | state | gid - postgis_tiger_geocoder | tiger | state | intptlat - postgis_tiger_geocoder | tiger | state | intptlon - postgis_tiger_geocoder | tiger | state | lsad - postgis_tiger_geocoder | tiger | state | mtfcc - postgis_tiger_geocoder | tiger | state | name - postgis_tiger_geocoder | tiger | state | region - postgis_tiger_geocoder | tiger | state | statefp - postgis_tiger_geocoder | tiger | state | statens - postgis_tiger_geocoder | tiger | state | stusps - postgis_tiger_geocoder | tiger | state | the_geom - postgis_tiger_geocoder | tiger | state_lookup | abbrev - postgis_tiger_geocoder | tiger | state_lookup | name - postgis_tiger_geocoder | tiger | state_lookup | st_code - postgis_tiger_geocoder | tiger | state_lookup | statefp - postgis_tiger_geocoder | tiger | street_type_lookup | abbrev - postgis_tiger_geocoder | tiger | street_type_lookup | is_hw - postgis_tiger_geocoder | tiger | street_type_lookup | name - postgis_tiger_geocoder | tiger | tabblock | aland - postgis_tiger_geocoder | tiger | tabblock | awater - postgis_tiger_geocoder | tiger | tabblock | blockce - postgis_tiger_geocoder | tiger | tabblock | countyfp - postgis_tiger_geocoder | tiger | tabblock | funcstat - postgis_tiger_geocoder | tiger | tabblock | gid - postgis_tiger_geocoder | tiger | tabblock | intptlat - postgis_tiger_geocoder | tiger | tabblock | intptlon - postgis_tiger_geocoder | tiger | tabblock | mtfcc - postgis_tiger_geocoder | tiger | tabblock | name - postgis_tiger_geocoder | tiger | tabblock | statefp - postgis_tiger_geocoder | tiger | tabblock | tabblock_id - postgis_tiger_geocoder | tiger | tabblock | the_geom - postgis_tiger_geocoder | tiger | tabblock | tractce - postgis_tiger_geocoder | tiger | tabblock | uace - postgis_tiger_geocoder | tiger | tabblock | ur - postgis_tiger_geocoder | tiger | tabblock20 | aland - postgis_tiger_geocoder | tiger | tabblock20 | awater - postgis_tiger_geocoder | tiger | tabblock20 | blockce - postgis_tiger_geocoder | tiger | tabblock20 | countyfp - postgis_tiger_geocoder | tiger | tabblock20 | funcstat - postgis_tiger_geocoder | tiger | tabblock20 | geoid - postgis_tiger_geocoder | tiger | tabblock20 | housing - postgis_tiger_geocoder | tiger | tabblock20 | intptlat - postgis_tiger_geocoder | tiger | tabblock20 | intptlon - postgis_tiger_geocoder | tiger | tabblock20 | mtfcc - postgis_tiger_geocoder | tiger | tabblock20 | name - postgis_tiger_geocoder | tiger | tabblock20 | pop - postgis_tiger_geocoder | tiger | tabblock20 | statefp - postgis_tiger_geocoder | tiger | tabblock20 | the_geom - postgis_tiger_geocoder | tiger | tabblock20 | tractce - postgis_tiger_geocoder | tiger | tabblock20 | uace - postgis_tiger_geocoder | tiger | tabblock20 | uatype - postgis_tiger_geocoder | tiger | tabblock20 | ur - postgis_tiger_geocoder | tiger | tract | aland - postgis_tiger_geocoder | tiger | tract | awater - postgis_tiger_geocoder | tiger | tract | countyfp - postgis_tiger_geocoder | tiger | tract | funcstat - postgis_tiger_geocoder | tiger | tract | gid - postgis_tiger_geocoder | tiger | tract | intptlat - postgis_tiger_geocoder | tiger | tract | intptlon - postgis_tiger_geocoder | tiger | tract | mtfcc - postgis_tiger_geocoder | tiger | tract | name - postgis_tiger_geocoder | tiger | tract | namelsad - postgis_tiger_geocoder | tiger | tract | statefp - postgis_tiger_geocoder | tiger | tract | the_geom - postgis_tiger_geocoder | tiger | tract | tract_id - postgis_tiger_geocoder | tiger | tract | tractce - postgis_tiger_geocoder | tiger | zcta5 | aland - postgis_tiger_geocoder | tiger | zcta5 | awater - postgis_tiger_geocoder | tiger | zcta5 | classfp - postgis_tiger_geocoder | tiger | zcta5 | funcstat - postgis_tiger_geocoder | tiger | zcta5 | gid - postgis_tiger_geocoder | tiger | zcta5 | intptlat - postgis_tiger_geocoder | tiger | zcta5 | intptlon - postgis_tiger_geocoder | tiger | zcta5 | mtfcc - postgis_tiger_geocoder | tiger | zcta5 | partflg - postgis_tiger_geocoder | tiger | zcta5 | statefp - postgis_tiger_geocoder | tiger | zcta5 | the_geom - postgis_tiger_geocoder | tiger | zcta5 | zcta5ce - postgis_tiger_geocoder | tiger | zip_lookup | cnt - postgis_tiger_geocoder | tiger | zip_lookup | co_code - postgis_tiger_geocoder | tiger | zip_lookup | county - postgis_tiger_geocoder | tiger | zip_lookup | cousub - postgis_tiger_geocoder | tiger | zip_lookup | cs_code - postgis_tiger_geocoder | tiger | zip_lookup | pl_code - postgis_tiger_geocoder | tiger | zip_lookup | place - postgis_tiger_geocoder | tiger | zip_lookup | st_code - postgis_tiger_geocoder | tiger | zip_lookup | state - postgis_tiger_geocoder | tiger | zip_lookup | zip - postgis_tiger_geocoder | tiger | zip_lookup_all | cnt - postgis_tiger_geocoder | tiger | zip_lookup_all | co_code - postgis_tiger_geocoder | tiger | zip_lookup_all | county - postgis_tiger_geocoder | tiger | zip_lookup_all | cousub - postgis_tiger_geocoder | tiger | zip_lookup_all | cs_code - postgis_tiger_geocoder | tiger | zip_lookup_all | pl_code - postgis_tiger_geocoder | tiger | zip_lookup_all | place - postgis_tiger_geocoder | tiger | zip_lookup_all | st_code - postgis_tiger_geocoder | tiger | zip_lookup_all | state - postgis_tiger_geocoder | tiger | zip_lookup_all | zip - postgis_tiger_geocoder | tiger | zip_lookup_base | city - postgis_tiger_geocoder | tiger | zip_lookup_base | county - postgis_tiger_geocoder | tiger | zip_lookup_base | state - postgis_tiger_geocoder | tiger | zip_lookup_base | statefp - postgis_tiger_geocoder | tiger | zip_lookup_base | zip - postgis_tiger_geocoder | tiger | zip_state | statefp - postgis_tiger_geocoder | tiger | zip_state | stusps - postgis_tiger_geocoder | tiger | zip_state | zip - postgis_tiger_geocoder | tiger | zip_state_loc | place - postgis_tiger_geocoder | tiger | zip_state_loc | statefp - postgis_tiger_geocoder | tiger | zip_state_loc | stusps - postgis_tiger_geocoder | tiger | zip_state_loc | zip - postgis_topology | topology | layer | child_id - postgis_topology | topology | layer | feature_column - postgis_topology | topology | layer | feature_type - postgis_topology | topology | layer | layer_id - postgis_topology | topology | layer | level - postgis_topology | topology | layer | schema_name - postgis_topology | topology | layer | table_name - postgis_topology | topology | layer | topology_id - postgis_topology | topology | topology | hasz - postgis_topology | topology | topology | id - postgis_topology | topology | topology | name - postgis_topology | topology | topology | precision - postgis_topology | topology | topology | srid - supabase_vault | vault | decrypted_secrets | created_at - supabase_vault | vault | decrypted_secrets | decrypted_secret - supabase_vault | vault | decrypted_secrets | description - supabase_vault | vault | decrypted_secrets | id - supabase_vault | vault | decrypted_secrets | key_id - supabase_vault | vault | decrypted_secrets | name - supabase_vault | vault | decrypted_secrets | nonce - supabase_vault | vault | decrypted_secrets | secret - supabase_vault | vault | decrypted_secrets | updated_at - supabase_vault | vault | secrets | created_at - supabase_vault | vault | secrets | description - supabase_vault | vault | secrets | id - supabase_vault | vault | secrets | key_id - supabase_vault | vault | secrets | name - supabase_vault | vault | secrets | nonce - supabase_vault | vault | secrets | secret - supabase_vault | vault | secrets | updated_at - timescaledb | _timescaledb_cache | cache_inval_bgw_job | - timescaledb | _timescaledb_cache | cache_inval_extension | - timescaledb | _timescaledb_cache | cache_inval_hypertable | - timescaledb | _timescaledb_catalog | chunk | compressed_chunk_id - timescaledb | _timescaledb_catalog | chunk | creation_time - timescaledb | _timescaledb_catalog | chunk | dropped - timescaledb | _timescaledb_catalog | chunk | hypertable_id - timescaledb | _timescaledb_catalog | chunk | id - timescaledb | _timescaledb_catalog | chunk | osm_chunk - timescaledb | _timescaledb_catalog | chunk | schema_name - timescaledb | _timescaledb_catalog | chunk | status - timescaledb | _timescaledb_catalog | chunk | table_name - timescaledb | _timescaledb_catalog | chunk_column_stats | chunk_id - timescaledb | _timescaledb_catalog | chunk_column_stats | column_name - timescaledb | _timescaledb_catalog | chunk_column_stats | hypertable_id - timescaledb | _timescaledb_catalog | chunk_column_stats | id - timescaledb | _timescaledb_catalog | chunk_column_stats | range_end - timescaledb | _timescaledb_catalog | chunk_column_stats | range_start - timescaledb | _timescaledb_catalog | chunk_column_stats | valid - timescaledb | _timescaledb_catalog | chunk_constraint | chunk_id - timescaledb | _timescaledb_catalog | chunk_constraint | constraint_name - timescaledb | _timescaledb_catalog | chunk_constraint | dimension_slice_id - timescaledb | _timescaledb_catalog | chunk_constraint | hypertable_constraint_name - timescaledb | _timescaledb_catalog | chunk_index | chunk_id - timescaledb | _timescaledb_catalog | chunk_index | hypertable_id - timescaledb | _timescaledb_catalog | chunk_index | hypertable_index_name - timescaledb | _timescaledb_catalog | chunk_index | index_name - timescaledb | _timescaledb_catalog | compression_algorithm | description - timescaledb | _timescaledb_catalog | compression_algorithm | id - timescaledb | _timescaledb_catalog | compression_algorithm | name - timescaledb | _timescaledb_catalog | compression_algorithm | version - timescaledb | _timescaledb_catalog | compression_chunk_size | chunk_id - timescaledb | _timescaledb_catalog | compression_chunk_size | compressed_chunk_id - timescaledb | _timescaledb_catalog | compression_chunk_size | compressed_heap_size - timescaledb | _timescaledb_catalog | compression_chunk_size | compressed_index_size - timescaledb | _timescaledb_catalog | compression_chunk_size | compressed_toast_size - timescaledb | _timescaledb_catalog | compression_chunk_size | numrows_frozen_immediately - timescaledb | _timescaledb_catalog | compression_chunk_size | numrows_post_compression - timescaledb | _timescaledb_catalog | compression_chunk_size | numrows_pre_compression - timescaledb | _timescaledb_catalog | compression_chunk_size | uncompressed_heap_size - timescaledb | _timescaledb_catalog | compression_chunk_size | uncompressed_index_size - timescaledb | _timescaledb_catalog | compression_chunk_size | uncompressed_toast_size - timescaledb | _timescaledb_catalog | compression_settings | orderby - timescaledb | _timescaledb_catalog | compression_settings | orderby_desc - timescaledb | _timescaledb_catalog | compression_settings | orderby_nullsfirst - timescaledb | _timescaledb_catalog | compression_settings | relid - timescaledb | _timescaledb_catalog | compression_settings | segmentby - timescaledb | _timescaledb_catalog | continuous_agg | direct_view_name - timescaledb | _timescaledb_catalog | continuous_agg | direct_view_schema - timescaledb | _timescaledb_catalog | continuous_agg | finalized - timescaledb | _timescaledb_catalog | continuous_agg | mat_hypertable_id - timescaledb | _timescaledb_catalog | continuous_agg | materialized_only - timescaledb | _timescaledb_catalog | continuous_agg | parent_mat_hypertable_id - timescaledb | _timescaledb_catalog | continuous_agg | partial_view_name - timescaledb | _timescaledb_catalog | continuous_agg | partial_view_schema - timescaledb | _timescaledb_catalog | continuous_agg | raw_hypertable_id - timescaledb | _timescaledb_catalog | continuous_agg | user_view_name - timescaledb | _timescaledb_catalog | continuous_agg | user_view_schema - timescaledb | _timescaledb_catalog | continuous_agg_migrate_plan | end_ts - timescaledb | _timescaledb_catalog | continuous_agg_migrate_plan | mat_hypertable_id - timescaledb | _timescaledb_catalog | continuous_agg_migrate_plan | start_ts - timescaledb | _timescaledb_catalog | continuous_agg_migrate_plan | user_view_definition - timescaledb | _timescaledb_catalog | continuous_agg_migrate_plan_step | config - timescaledb | _timescaledb_catalog | continuous_agg_migrate_plan_step | end_ts - timescaledb | _timescaledb_catalog | continuous_agg_migrate_plan_step | mat_hypertable_id - timescaledb | _timescaledb_catalog | continuous_agg_migrate_plan_step | start_ts - timescaledb | _timescaledb_catalog | continuous_agg_migrate_plan_step | status - timescaledb | _timescaledb_catalog | continuous_agg_migrate_plan_step | step_id - timescaledb | _timescaledb_catalog | continuous_agg_migrate_plan_step | type - timescaledb | _timescaledb_catalog | continuous_aggs_bucket_function | bucket_fixed_width - timescaledb | _timescaledb_catalog | continuous_aggs_bucket_function | bucket_func - timescaledb | _timescaledb_catalog | continuous_aggs_bucket_function | bucket_offset - timescaledb | _timescaledb_catalog | continuous_aggs_bucket_function | bucket_origin - timescaledb | _timescaledb_catalog | continuous_aggs_bucket_function | bucket_timezone - timescaledb | _timescaledb_catalog | continuous_aggs_bucket_function | bucket_width - timescaledb | _timescaledb_catalog | continuous_aggs_bucket_function | mat_hypertable_id - timescaledb | _timescaledb_catalog | continuous_aggs_hypertable_invalidation_log | greatest_modified_value - timescaledb | _timescaledb_catalog | continuous_aggs_hypertable_invalidation_log | hypertable_id - timescaledb | _timescaledb_catalog | continuous_aggs_hypertable_invalidation_log | lowest_modified_value - timescaledb | _timescaledb_catalog | continuous_aggs_invalidation_threshold | hypertable_id - timescaledb | _timescaledb_catalog | continuous_aggs_invalidation_threshold | watermark - timescaledb | _timescaledb_catalog | continuous_aggs_materialization_invalidation_log | greatest_modified_value - timescaledb | _timescaledb_catalog | continuous_aggs_materialization_invalidation_log | lowest_modified_value - timescaledb | _timescaledb_catalog | continuous_aggs_materialization_invalidation_log | materialization_id - timescaledb | _timescaledb_catalog | continuous_aggs_watermark | mat_hypertable_id - timescaledb | _timescaledb_catalog | continuous_aggs_watermark | watermark - timescaledb | _timescaledb_catalog | dimension | aligned - timescaledb | _timescaledb_catalog | dimension | column_name - timescaledb | _timescaledb_catalog | dimension | column_type - timescaledb | _timescaledb_catalog | dimension | compress_interval_length - timescaledb | _timescaledb_catalog | dimension | hypertable_id - timescaledb | _timescaledb_catalog | dimension | id - timescaledb | _timescaledb_catalog | dimension | integer_now_func - timescaledb | _timescaledb_catalog | dimension | integer_now_func_schema - timescaledb | _timescaledb_catalog | dimension | interval_length - timescaledb | _timescaledb_catalog | dimension | num_slices - timescaledb | _timescaledb_catalog | dimension | partitioning_func - timescaledb | _timescaledb_catalog | dimension | partitioning_func_schema - timescaledb | _timescaledb_catalog | dimension_slice | dimension_id - timescaledb | _timescaledb_catalog | dimension_slice | id - timescaledb | _timescaledb_catalog | dimension_slice | range_end - timescaledb | _timescaledb_catalog | dimension_slice | range_start - timescaledb | _timescaledb_catalog | hypertable | associated_schema_name - timescaledb | _timescaledb_catalog | hypertable | associated_table_prefix - timescaledb | _timescaledb_catalog | hypertable | chunk_sizing_func_name - timescaledb | _timescaledb_catalog | hypertable | chunk_sizing_func_schema - timescaledb | _timescaledb_catalog | hypertable | chunk_target_size - timescaledb | _timescaledb_catalog | hypertable | compressed_hypertable_id - timescaledb | _timescaledb_catalog | hypertable | compression_state - timescaledb | _timescaledb_catalog | hypertable | id - timescaledb | _timescaledb_catalog | hypertable | num_dimensions - timescaledb | _timescaledb_catalog | hypertable | schema_name - timescaledb | _timescaledb_catalog | hypertable | status - timescaledb | _timescaledb_catalog | hypertable | table_name - timescaledb | _timescaledb_catalog | metadata | include_in_telemetry - timescaledb | _timescaledb_catalog | metadata | key - timescaledb | _timescaledb_catalog | metadata | value - timescaledb | _timescaledb_catalog | tablespace | hypertable_id - timescaledb | _timescaledb_catalog | tablespace | id - timescaledb | _timescaledb_catalog | tablespace | tablespace_name - timescaledb | _timescaledb_catalog | telemetry_event | body - timescaledb | _timescaledb_catalog | telemetry_event | created - timescaledb | _timescaledb_catalog | telemetry_event | tag - timescaledb | _timescaledb_config | bgw_job | application_name - timescaledb | _timescaledb_config | bgw_job | check_name - timescaledb | _timescaledb_config | bgw_job | check_schema - timescaledb | _timescaledb_config | bgw_job | config - timescaledb | _timescaledb_config | bgw_job | fixed_schedule - timescaledb | _timescaledb_config | bgw_job | hypertable_id - timescaledb | _timescaledb_config | bgw_job | id - timescaledb | _timescaledb_config | bgw_job | initial_start - timescaledb | _timescaledb_config | bgw_job | max_retries - timescaledb | _timescaledb_config | bgw_job | max_runtime - timescaledb | _timescaledb_config | bgw_job | owner - timescaledb | _timescaledb_config | bgw_job | proc_name - timescaledb | _timescaledb_config | bgw_job | proc_schema - timescaledb | _timescaledb_config | bgw_job | retry_period - timescaledb | _timescaledb_config | bgw_job | schedule_interval - timescaledb | _timescaledb_config | bgw_job | scheduled - timescaledb | _timescaledb_config | bgw_job | timezone - timescaledb | _timescaledb_internal | bgw_job_stat | consecutive_crashes - timescaledb | _timescaledb_internal | bgw_job_stat | consecutive_failures - timescaledb | _timescaledb_internal | bgw_job_stat | flags - timescaledb | _timescaledb_internal | bgw_job_stat | job_id - timescaledb | _timescaledb_internal | bgw_job_stat | last_finish - timescaledb | _timescaledb_internal | bgw_job_stat | last_run_success - timescaledb | _timescaledb_internal | bgw_job_stat | last_start - timescaledb | _timescaledb_internal | bgw_job_stat | last_successful_finish - timescaledb | _timescaledb_internal | bgw_job_stat | next_start - timescaledb | _timescaledb_internal | bgw_job_stat | total_crashes - timescaledb | _timescaledb_internal | bgw_job_stat | total_duration - timescaledb | _timescaledb_internal | bgw_job_stat | total_duration_failures - timescaledb | _timescaledb_internal | bgw_job_stat | total_failures - timescaledb | _timescaledb_internal | bgw_job_stat | total_runs - timescaledb | _timescaledb_internal | bgw_job_stat | total_successes - timescaledb | _timescaledb_internal | bgw_job_stat_history | data - timescaledb | _timescaledb_internal | bgw_job_stat_history | execution_finish - timescaledb | _timescaledb_internal | bgw_job_stat_history | execution_start - timescaledb | _timescaledb_internal | bgw_job_stat_history | id - timescaledb | _timescaledb_internal | bgw_job_stat_history | job_id - timescaledb | _timescaledb_internal | bgw_job_stat_history | pid - timescaledb | _timescaledb_internal | bgw_job_stat_history | succeeded - timescaledb | _timescaledb_internal | bgw_policy_chunk_stats | chunk_id - timescaledb | _timescaledb_internal | bgw_policy_chunk_stats | job_id - timescaledb | _timescaledb_internal | bgw_policy_chunk_stats | last_time_job_run - timescaledb | _timescaledb_internal | bgw_policy_chunk_stats | num_times_job_run - timescaledb | _timescaledb_internal | compressed_chunk_stats | chunk_name - timescaledb | _timescaledb_internal | compressed_chunk_stats | chunk_schema - timescaledb | _timescaledb_internal | compressed_chunk_stats | compressed_heap_size - timescaledb | _timescaledb_internal | compressed_chunk_stats | compressed_index_size - timescaledb | _timescaledb_internal | compressed_chunk_stats | compressed_toast_size - timescaledb | _timescaledb_internal | compressed_chunk_stats | compressed_total_size - timescaledb | _timescaledb_internal | compressed_chunk_stats | compression_status - timescaledb | _timescaledb_internal | compressed_chunk_stats | hypertable_name - timescaledb | _timescaledb_internal | compressed_chunk_stats | hypertable_schema - timescaledb | _timescaledb_internal | compressed_chunk_stats | uncompressed_heap_size - timescaledb | _timescaledb_internal | compressed_chunk_stats | uncompressed_index_size - timescaledb | _timescaledb_internal | compressed_chunk_stats | uncompressed_toast_size - timescaledb | _timescaledb_internal | compressed_chunk_stats | uncompressed_total_size - timescaledb | _timescaledb_internal | hypertable_chunk_local_size | chunk_id - timescaledb | _timescaledb_internal | hypertable_chunk_local_size | chunk_name - timescaledb | _timescaledb_internal | hypertable_chunk_local_size | chunk_schema - timescaledb | _timescaledb_internal | hypertable_chunk_local_size | compressed_heap_size - timescaledb | _timescaledb_internal | hypertable_chunk_local_size | compressed_index_size - timescaledb | _timescaledb_internal | hypertable_chunk_local_size | compressed_toast_size - timescaledb | _timescaledb_internal | hypertable_chunk_local_size | compressed_total_size - timescaledb | _timescaledb_internal | hypertable_chunk_local_size | heap_bytes - timescaledb | _timescaledb_internal | hypertable_chunk_local_size | hypertable_id - timescaledb | _timescaledb_internal | hypertable_chunk_local_size | hypertable_name - timescaledb | _timescaledb_internal | hypertable_chunk_local_size | hypertable_schema - timescaledb | _timescaledb_internal | hypertable_chunk_local_size | index_bytes - timescaledb | _timescaledb_internal | hypertable_chunk_local_size | toast_bytes - timescaledb | _timescaledb_internal | hypertable_chunk_local_size | total_bytes - timescaledb | timescaledb_experimental | policies | config - timescaledb | timescaledb_experimental | policies | hypertable_name - timescaledb | timescaledb_experimental | policies | hypertable_schema - timescaledb | timescaledb_experimental | policies | proc_name - timescaledb | timescaledb_experimental | policies | proc_schema - timescaledb | timescaledb_experimental | policies | relation_name - timescaledb | timescaledb_experimental | policies | relation_schema - timescaledb | timescaledb_experimental | policies | schedule_interval - timescaledb | timescaledb_information | chunk_compression_settings | chunk - timescaledb | timescaledb_information | chunk_compression_settings | hypertable - timescaledb | timescaledb_information | chunk_compression_settings | orderby - timescaledb | timescaledb_information | chunk_compression_settings | segmentby - timescaledb | timescaledb_information | chunks | chunk_creation_time - timescaledb | timescaledb_information | chunks | chunk_name - timescaledb | timescaledb_information | chunks | chunk_schema - timescaledb | timescaledb_information | chunks | chunk_tablespace - timescaledb | timescaledb_information | chunks | hypertable_name - timescaledb | timescaledb_information | chunks | hypertable_schema - timescaledb | timescaledb_information | chunks | is_compressed - timescaledb | timescaledb_information | chunks | primary_dimension - timescaledb | timescaledb_information | chunks | primary_dimension_type - timescaledb | timescaledb_information | chunks | range_end - timescaledb | timescaledb_information | chunks | range_end_integer - timescaledb | timescaledb_information | chunks | range_start - timescaledb | timescaledb_information | chunks | range_start_integer - timescaledb | timescaledb_information | compression_settings | attname - timescaledb | timescaledb_information | compression_settings | hypertable_name - timescaledb | timescaledb_information | compression_settings | hypertable_schema - timescaledb | timescaledb_information | compression_settings | orderby_asc - timescaledb | timescaledb_information | compression_settings | orderby_column_index - timescaledb | timescaledb_information | compression_settings | orderby_nullsfirst - timescaledb | timescaledb_information | compression_settings | segmentby_column_index - timescaledb | timescaledb_information | continuous_aggregates | compression_enabled - timescaledb | timescaledb_information | continuous_aggregates | finalized - timescaledb | timescaledb_information | continuous_aggregates | hypertable_name - timescaledb | timescaledb_information | continuous_aggregates | hypertable_schema - timescaledb | timescaledb_information | continuous_aggregates | materialization_hypertable_name - timescaledb | timescaledb_information | continuous_aggregates | materialization_hypertable_schema - timescaledb | timescaledb_information | continuous_aggregates | materialized_only - timescaledb | timescaledb_information | continuous_aggregates | view_definition - timescaledb | timescaledb_information | continuous_aggregates | view_name - timescaledb | timescaledb_information | continuous_aggregates | view_owner - timescaledb | timescaledb_information | continuous_aggregates | view_schema - timescaledb | timescaledb_information | dimensions | column_name - timescaledb | timescaledb_information | dimensions | column_type - timescaledb | timescaledb_information | dimensions | dimension_number - timescaledb | timescaledb_information | dimensions | dimension_type - timescaledb | timescaledb_information | dimensions | hypertable_name - timescaledb | timescaledb_information | dimensions | hypertable_schema - timescaledb | timescaledb_information | dimensions | integer_interval - timescaledb | timescaledb_information | dimensions | integer_now_func - timescaledb | timescaledb_information | dimensions | num_partitions - timescaledb | timescaledb_information | dimensions | time_interval - timescaledb | timescaledb_information | hypertable_compression_settings | compress_interval_length - timescaledb | timescaledb_information | hypertable_compression_settings | hypertable - timescaledb | timescaledb_information | hypertable_compression_settings | orderby - timescaledb | timescaledb_information | hypertable_compression_settings | segmentby - timescaledb | timescaledb_information | hypertables | compression_enabled - timescaledb | timescaledb_information | hypertables | hypertable_name - timescaledb | timescaledb_information | hypertables | hypertable_schema - timescaledb | timescaledb_information | hypertables | num_chunks - timescaledb | timescaledb_information | hypertables | num_dimensions - timescaledb | timescaledb_information | hypertables | owner - timescaledb | timescaledb_information | hypertables | tablespaces - timescaledb | timescaledb_information | job_errors | err_message - timescaledb | timescaledb_information | job_errors | finish_time - timescaledb | timescaledb_information | job_errors | job_id - timescaledb | timescaledb_information | job_errors | pid - timescaledb | timescaledb_information | job_errors | proc_name - timescaledb | timescaledb_information | job_errors | proc_schema - timescaledb | timescaledb_information | job_errors | sqlerrcode - timescaledb | timescaledb_information | job_errors | start_time - timescaledb | timescaledb_information | job_history | config - timescaledb | timescaledb_information | job_history | err_message - timescaledb | timescaledb_information | job_history | finish_time - timescaledb | timescaledb_information | job_history | id - timescaledb | timescaledb_information | job_history | job_id - timescaledb | timescaledb_information | job_history | pid - timescaledb | timescaledb_information | job_history | proc_name - timescaledb | timescaledb_information | job_history | proc_schema - timescaledb | timescaledb_information | job_history | sqlerrcode - timescaledb | timescaledb_information | job_history | start_time - timescaledb | timescaledb_information | job_history | succeeded - timescaledb | timescaledb_information | job_stats | hypertable_name - timescaledb | timescaledb_information | job_stats | hypertable_schema - timescaledb | timescaledb_information | job_stats | job_id - timescaledb | timescaledb_information | job_stats | job_status - timescaledb | timescaledb_information | job_stats | last_run_duration - timescaledb | timescaledb_information | job_stats | last_run_started_at - timescaledb | timescaledb_information | job_stats | last_run_status - timescaledb | timescaledb_information | job_stats | last_successful_finish - timescaledb | timescaledb_information | job_stats | next_start - timescaledb | timescaledb_information | job_stats | total_failures - timescaledb | timescaledb_information | job_stats | total_runs - timescaledb | timescaledb_information | job_stats | total_successes - timescaledb | timescaledb_information | jobs | application_name - timescaledb | timescaledb_information | jobs | check_name - timescaledb | timescaledb_information | jobs | check_schema - timescaledb | timescaledb_information | jobs | config - timescaledb | timescaledb_information | jobs | fixed_schedule - timescaledb | timescaledb_information | jobs | hypertable_name - timescaledb | timescaledb_information | jobs | hypertable_schema - timescaledb | timescaledb_information | jobs | initial_start - timescaledb | timescaledb_information | jobs | job_id - timescaledb | timescaledb_information | jobs | max_retries - timescaledb | timescaledb_information | jobs | max_runtime - timescaledb | timescaledb_information | jobs | next_start - timescaledb | timescaledb_information | jobs | owner - timescaledb | timescaledb_information | jobs | proc_name - timescaledb | timescaledb_information | jobs | proc_schema - timescaledb | timescaledb_information | jobs | retry_period - timescaledb | timescaledb_information | jobs | schedule_interval - timescaledb | timescaledb_information | jobs | scheduled - wrappers | public | wrappers_fdw_stats | bytes_in - wrappers | public | wrappers_fdw_stats | bytes_out - wrappers | public | wrappers_fdw_stats | create_times - wrappers | public | wrappers_fdw_stats | created_at - wrappers | public | wrappers_fdw_stats | fdw_name - wrappers | public | wrappers_fdw_stats | metadata - wrappers | public | wrappers_fdw_stats | rows_in - wrappers | public | wrappers_fdw_stats | rows_out - wrappers | public | wrappers_fdw_stats | updated_at -(1108 rows) - +ERROR: current transaction is aborted, commands ignored until end of transaction block +-- Rollback to clean up all extensions created in this test +ROLLBACK; diff --git a/nix/tests/expected/z_15_pg_stat_monitor.out b/nix/tests/expected/z_15_pg_stat_monitor.out index f4d906932..b650fd1ee 100644 --- a/nix/tests/expected/z_15_pg_stat_monitor.out +++ b/nix/tests/expected/z_15_pg_stat_monitor.out @@ -1,3 +1,7 @@ +BEGIN; +set client_min_messages = warning; +create schema if not exists extensions; +create extension if not exists pg_stat_monitor with schema extensions; select * from @@ -8,3 +12,4 @@ where --------+-------------------+--------+----------+------+---------+-----------+---------------+---------+----------+-------------+-------+----------+--------+------------+-----------+------------------+-----------+----------+---------------+--------+---------+---------+-------+-----------------+---------------+---------------+----------------+------------------+------+-----------------+------------------+---------------------+---------------------+----------------+-----------------+--------------------+--------------------+----------------+-------------------+---------------+----------------+--------------------+---------------------+------------+---------------+--------------+-------------+---------+-----------+-------------+-------+-----------------+---------------+---------------+----------------+------------------+---------------+---------------------+--------------------+-------------------+------------------------+-----------------------+--------------------+------------------- (0 rows) +ROLLBACK; diff --git a/nix/tests/expected/z_15_pgjwt.out b/nix/tests/expected/z_15_pgjwt.out index 8ccdce1d1..163ede6b6 100644 --- a/nix/tests/expected/z_15_pgjwt.out +++ b/nix/tests/expected/z_15_pgjwt.out @@ -1,3 +1,8 @@ +BEGIN; +set client_min_messages = warning; +create schema if not exists extensions; +-- pgjwt depends on pgcrypto for hmac functions +CREATE EXTENSION IF NOT EXISTS pgcrypto WITH SCHEMA extensions; -- Install pgjwt in extensions schema CREATE EXTENSION IF NOT EXISTS pgjwt WITH SCHEMA extensions; -- Set search path to include extensions schema @@ -24,3 +29,4 @@ select ("{""alg"":""HS256"",""typ"":""JWT""}","{""name"":""Foo""}",t) (1 row) +ROLLBACK; diff --git a/nix/tests/expected/z_15_pgroonga.out b/nix/tests/expected/z_15_pgroonga.out index 5ceeed254..c649e1da0 100644 --- a/nix/tests/expected/z_15_pgroonga.out +++ b/nix/tests/expected/z_15_pgroonga.out @@ -1,3 +1,8 @@ +BEGIN; +set client_min_messages = warning; +create schema if not exists extensions; +create extension if not exists pgroonga with schema extensions; +create extension if not exists pgroonga_database with schema extensions; create schema v; create table v.roon( id serial primary key, @@ -73,4 +78,4 @@ select * from v.roon where content &@~ 'supports'; (1 row) drop schema v cascade; -NOTICE: drop cascades to table v.roon +ROLLBACK; diff --git a/nix/tests/expected/z_15_pgvector.out b/nix/tests/expected/z_15_pgvector.out index 6564be5f4..770754cb2 100644 --- a/nix/tests/expected/z_15_pgvector.out +++ b/nix/tests/expected/z_15_pgvector.out @@ -1,3 +1,7 @@ +BEGIN; +set client_min_messages = warning; +create schema if not exists extensions; +create extension if not exists vector with schema extensions; create schema v; create table v.items( id serial primary key, @@ -11,25 +15,13 @@ create index on v.items using hnsw (embedding vector_l2_ops); create index on v.items using hnsw (embedding vector_cosine_ops); create index on v.items using hnsw (embedding vector_l1_ops); create index on v.items using ivfflat (embedding vector_l2_ops); -NOTICE: ivfflat index created with little data -DETAIL: This will cause low recall. -HINT: Drop the index until the table has more data. create index on v.items using ivfflat (embedding vector_cosine_ops); -NOTICE: ivfflat index created with little data -DETAIL: This will cause low recall. -HINT: Drop the index until the table has more data. -- halfvec ops create index on v.items using hnsw (half_embedding halfvec_l2_ops); create index on v.items using hnsw (half_embedding halfvec_cosine_ops); create index on v.items using hnsw (half_embedding halfvec_l1_ops); create index on v.items using ivfflat (half_embedding halfvec_l2_ops); -NOTICE: ivfflat index created with little data -DETAIL: This will cause low recall. -HINT: Drop the index until the table has more data. create index on v.items using ivfflat (half_embedding halfvec_cosine_ops); -NOTICE: ivfflat index created with little data -DETAIL: This will cause low recall. -HINT: Drop the index until the table has more data. -- sparsevec create index on v.items using hnsw (sparse_embedding sparsevec_l2_ops); create index on v.items using hnsw (sparse_embedding sparsevec_cosine_ops); @@ -37,9 +29,6 @@ create index on v.items using hnsw (sparse_embedding sparsevec_l1_ops); -- bit ops create index on v.items using hnsw (bit_embedding bit_hamming_ops); create index on v.items using ivfflat (bit_embedding bit_hamming_ops); -NOTICE: ivfflat index created with little data -DETAIL: This will cause low recall. -HINT: Drop the index until the table has more data. -- Populate some records insert into v.items( embedding, @@ -87,4 +76,4 @@ from -- Cleanup drop schema v cascade; -NOTICE: drop cascades to table v.items +ROLLBACK; diff --git a/nix/tests/expected/z_15_plv8.out b/nix/tests/expected/z_15_plv8.out index bf909f0a8..ea18bea16 100644 --- a/nix/tests/expected/z_15_plv8.out +++ b/nix/tests/expected/z_15_plv8.out @@ -2,8 +2,9 @@ This test is excluded from the Postgres 17 suite because it does not ship with the Supabase PG17 image */ +BEGIN; +set client_min_messages = warning; create extension if not exists plv8; -NOTICE: extension "plv8" already exists, skipping create schema v; -- create a function to perform some JavaScript operations create function v.multiply_numbers(a integer, b integer) @@ -20,4 +21,4 @@ select (1 row) drop schema v cascade; -NOTICE: drop cascades to function v.multiply_numbers(integer,integer) +ROLLBACK; diff --git a/nix/tests/expected/z_15_roles.out b/nix/tests/expected/z_15_roles.out index 3f14bb6a1..ed0461266 100644 --- a/nix/tests/expected/z_15_roles.out +++ b/nix/tests/expected/z_15_roles.out @@ -27,12 +27,11 @@ order by postgres | pg_monitor | f postgres | pg_read_all_data | f postgres | pg_signal_backend | f - postgres | pgtle_admin | f postgres | service_role | f supabase_etl_admin | pg_monitor | f supabase_etl_admin | pg_read_all_data | f supabase_read_only_user | pg_monitor | f supabase_read_only_user | pg_read_all_data | f supabase_storage_admin | authenticator | f -(21 rows) +(20 rows) diff --git a/nix/tests/expected/z_15_rum.out b/nix/tests/expected/z_15_rum.out index 1296befa7..05d4b5eca 100644 --- a/nix/tests/expected/z_15_rum.out +++ b/nix/tests/expected/z_15_rum.out @@ -1,6 +1,10 @@ /* This extension is excluded from oriole-17 because it uses an unsupported index type */ +BEGIN; +set client_min_messages = warning; +create schema if not exists extensions; +create extension if not exists rum with schema extensions; create schema v; create table v.test_rum( t text, @@ -38,4 +42,4 @@ order by (3 rows) drop schema v cascade; -NOTICE: drop cascades to table v.test_rum +ROLLBACK; diff --git a/nix/tests/expected/z_15_timescale.out b/nix/tests/expected/z_15_timescale.out index d0c0f2fcb..e72ef3da1 100644 --- a/nix/tests/expected/z_15_timescale.out +++ b/nix/tests/expected/z_15_timescale.out @@ -2,8 +2,9 @@ This test is excluded from the Postgres 17 suite because it does not ship with the Supabase PG17 image */ +BEGIN; +set client_min_messages = warning; create extension if not exists timescaledb; -NOTICE: extension "timescaledb" already exists, skipping -- Confirm we're running the apache version show timescaledb.license; timescaledb.license @@ -47,7 +48,4 @@ from -- Drop schema v and all its entities drop schema v cascade; -NOTICE: drop cascades to 3 other objects -DETAIL: drop cascades to table v.sensor_data -drop cascades to table _timescaledb_internal._hyper_1_1_chunk -drop cascades to table _timescaledb_internal._hyper_1_2_chunk +ROLLBACK; diff --git a/nix/tests/expected/z_17_ext_interface.out b/nix/tests/expected/z_17_ext_interface.out index 6a7b4a16c..f361ce2ce 100644 --- a/nix/tests/expected/z_17_ext_interface.out +++ b/nix/tests/expected/z_17_ext_interface.out @@ -5,11 +5,93 @@ by Postgres extensions so we have to manually review/approve any difference that emerge as versions change. */ +-- Create all extensions within a transaction +-- This matches production behavior where users create extensions as needed +-- Supautils will automatically enforce schema rules and run after-create scripts +BEGIN; +-- disable notice messages because they differ between 15 and 17 +set client_min_messages = warning; +-- Create required schemas for relocatable extensions +-- Non-relocatable extensions (pg_tle, pgsodium, supabase_vault, pg_graphql) +-- automatically create their own schemas +create schema if not exists extensions; +create schema if not exists topology; +-- Privileged extensions -> extensions schema (enforced by supautils) +create extension if not exists address_standardizer with schema extensions; +create extension if not exists address_standardizer_data_us with schema extensions; +create extension if not exists autoinc with schema extensions; +create extension if not exists bloom with schema extensions; +create extension if not exists btree_gin with schema extensions; +create extension if not exists btree_gist with schema extensions; +create extension if not exists citext with schema extensions; +create extension if not exists cube with schema extensions; +create extension if not exists dblink with schema extensions; +create extension if not exists dict_int with schema extensions; +create extension if not exists dict_xsyn with schema extensions; +create extension if not exists earthdistance with schema extensions; +create extension if not exists fuzzystrmatch with schema extensions; +create extension if not exists http with schema extensions; +create extension if not exists hstore with schema extensions; +create extension if not exists hypopg with schema extensions; +create extension if not exists index_advisor with schema extensions; +create extension if not exists insert_username with schema extensions; +create extension if not exists intarray with schema extensions; +create extension if not exists isn with schema extensions; +create extension if not exists ltree with schema extensions; +create extension if not exists moddatetime with schema extensions; +create extension if not exists pg_buffercache with schema extensions; +create extension if not exists pg_net with schema extensions; +create extension if not exists pg_hashids with schema extensions; +create extension if not exists pg_prewarm with schema extensions; +create extension if not exists pg_jsonschema with schema extensions; +create extension if not exists pg_repack with schema extensions; +create extension if not exists pg_stat_monitor with schema extensions; +create extension if not exists pg_tle; +create extension if not exists pg_trgm with schema extensions; +create extension if not exists pg_walinspect with schema extensions; +create extension if not exists pgaudit with schema extensions; +create extension if not exists pgtap with schema extensions; +create extension if not exists pgroonga with schema extensions; +create extension if not exists pgroonga_database with schema extensions; +create extension if not exists pgsodium; +create extension if not exists pgrowlocks with schema extensions; +create extension if not exists pgstattuple with schema extensions; +create extension if not exists plpgsql_check with schema extensions; +create extension if not exists postgis with schema extensions; +create extension if not exists postgis_raster with schema extensions; +create extension if not exists postgis_sfcgal with schema extensions; +create extension if not exists postgis_topology with schema topology; +create extension if not exists pgrouting with schema extensions; +create extension if not exists postgres_fdw with schema extensions; +create extension if not exists rum with schema extensions; +create extension if not exists refint with schema extensions; +create extension if not exists seg with schema extensions; +create extension if not exists sslinfo with schema extensions; +create extension if not exists supabase_vault; +create extension if not exists tablefunc with schema extensions; +create extension if not exists tcn with schema extensions; +create extension if not exists tsm_system_rows with schema extensions; +create extension if not exists unaccent with schema extensions; +create extension if not exists vector with schema extensions; +create extension if not exists wrappers with schema extensions; +-- Non-privileged extensions (use their natural default schemas) +create extension if not exists amcheck; +create extension if not exists file_fdw; +create extension if not exists intagg; +create extension if not exists lo; +create extension if not exists pageinspect; +create extension if not exists pg_freespacemap; +create extension if not exists pgmq; +create extension if not exists pg_surgery with schema pg_catalog; -- non-relocatable +create extension if not exists pg_visibility; +ERROR: no schema has been selected to create in +create extension if not exists xml2; +ERROR: current transaction is aborted, commands ignored until end of transaction block /* List all extensions that are not enabled If a new entry shows up in this list, that means a new extension has been -added and you should `create extension ...` to enable it in ./nix/tests/prime +added and you should create extension above */ select @@ -20,14 +102,7 @@ where installed_version is null order by name asc; - name ------------------------- - pg_cron - pgjwt - postgis_tiger_geocoder - tsm_system_time -(4 rows) - +ERROR: current transaction is aborted, commands ignored until end of transaction block /* Monitor relocatability and config of each extension @@ -41,82 +116,7 @@ from pg_extension order by extname asc; - extension_name | is_relocatable -------------------------------+---------------- - address_standardizer | t - address_standardizer_data_us | t - amcheck | t - autoinc | t - bloom | t - btree_gin | t - btree_gist | t - citext | t - cube | t - dblink | t - dict_int | t - dict_xsyn | t - earthdistance | t - file_fdw | t - fuzzystrmatch | t - hstore | t - http | f - hypopg | t - index_advisor | t - insert_username | t - intagg | t - intarray | t - isn | t - lo | t - ltree | t - moddatetime | t - pageinspect | t - pg_buffercache | t - pg_freespacemap | t - pg_graphql | f - pg_hashids | t - pg_jsonschema | f - pg_net | f - pg_prewarm | t - pg_repack | f - pg_stat_monitor | t - pg_stat_statements | t - pg_surgery | t - pg_tle | f - pg_trgm | t - pg_visibility | t - pg_walinspect | t - pgaudit | t - pgcrypto | t - pgmq | f - pgroonga | f - pgroonga_database | f - pgrouting | t - pgrowlocks | t - pgsodium | f - pgstattuple | t - pgtap | t - plpgsql | f - plpgsql_check | f - postgis | f - postgis_raster | f - postgis_sfcgal | t - postgis_topology | f - postgres_fdw | t - refint | t - rum | t - seg | t - sslinfo | t - supabase_vault | f - tablefunc | t - tcn | t - tsm_system_rows | t - unaccent | t - uuid-ossp | t - vector | t - wrappers | t - xml2 | f -(72 rows) - +ERROR: current transaction is aborted, commands ignored until end of transaction block /* Monitor extension public function interface @@ -155,4738 +155,7 @@ order by n.nspname, p.proname, md5(pg_catalog.pg_get_function_identity_arguments(p.oid)); - extension_name | schema_name | function_name | argument_types | return_type -----------------------+----------------+--------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - address_standardizer | public | parse_address | text, OUT num text, OUT street text, OUT street2 text, OUT address1 text, OUT city text, OUT state text, OUT zip text, OUT zipplus text, OUT country text | record - address_standardizer | public | standardize_address | lextab text, gaztab text, rultab text, address text | stdaddr - address_standardizer | public | standardize_address | lextab text, gaztab text, rultab text, micro text, macro text | stdaddr - amcheck | public | bt_index_check | index regclass | void - amcheck | public | bt_index_check | index regclass, heapallindexed boolean, checkunique boolean | void - amcheck | public | bt_index_check | index regclass, heapallindexed boolean | void - amcheck | public | bt_index_parent_check | index regclass | void - amcheck | public | bt_index_parent_check | index regclass, heapallindexed boolean, rootdescend boolean, checkunique boolean | void - amcheck | public | bt_index_parent_check | index regclass, heapallindexed boolean | void - amcheck | public | bt_index_parent_check | index regclass, heapallindexed boolean, rootdescend boolean | void - amcheck | public | verify_heapam | relation regclass, on_error_stop boolean, check_toast boolean, skip text, startblock bigint, endblock bigint, OUT blkno bigint, OUT offnum integer, OUT attnum integer, OUT msg text | SETOF record - autoinc | public | autoinc | | trigger - bloom | public | blhandler | internal | index_am_handler - btree_gin | public | gin_btree_consistent | internal, smallint, anyelement, integer, internal, internal | boolean - btree_gin | public | gin_compare_prefix_anyenum | anyenum, anyenum, smallint, internal | integer - btree_gin | public | gin_compare_prefix_bit | bit, bit, smallint, internal | integer - btree_gin | public | gin_compare_prefix_bool | boolean, boolean, smallint, internal | integer - btree_gin | public | gin_compare_prefix_bpchar | character, character, smallint, internal | integer - btree_gin | public | gin_compare_prefix_bytea | bytea, bytea, smallint, internal | integer - btree_gin | public | gin_compare_prefix_char | "char", "char", smallint, internal | integer - btree_gin | public | gin_compare_prefix_cidr | cidr, cidr, smallint, internal | integer - btree_gin | public | gin_compare_prefix_date | date, date, smallint, internal | integer - btree_gin | public | gin_compare_prefix_float4 | real, real, smallint, internal | integer - btree_gin | public | gin_compare_prefix_float8 | double precision, double precision, smallint, internal | integer - btree_gin | public | gin_compare_prefix_inet | inet, inet, smallint, internal | integer - btree_gin | public | gin_compare_prefix_int2 | smallint, smallint, smallint, internal | integer - btree_gin | public | gin_compare_prefix_int4 | integer, integer, smallint, internal | integer - btree_gin | public | gin_compare_prefix_int8 | bigint, bigint, smallint, internal | integer - btree_gin | public | gin_compare_prefix_interval | interval, interval, smallint, internal | integer - btree_gin | public | gin_compare_prefix_macaddr | macaddr, macaddr, smallint, internal | integer - btree_gin | public | gin_compare_prefix_macaddr8 | macaddr8, macaddr8, smallint, internal | integer - btree_gin | public | gin_compare_prefix_money | money, money, smallint, internal | integer - btree_gin | public | gin_compare_prefix_name | name, name, smallint, internal | integer - btree_gin | public | gin_compare_prefix_numeric | numeric, numeric, smallint, internal | integer - btree_gin | public | gin_compare_prefix_oid | oid, oid, smallint, internal | integer - btree_gin | public | gin_compare_prefix_text | text, text, smallint, internal | integer - btree_gin | public | gin_compare_prefix_time | time without time zone, time without time zone, smallint, internal | integer - btree_gin | public | gin_compare_prefix_timestamp | timestamp without time zone, timestamp without time zone, smallint, internal | integer - btree_gin | public | gin_compare_prefix_timestamptz | timestamp with time zone, timestamp with time zone, smallint, internal | integer - btree_gin | public | gin_compare_prefix_timetz | time with time zone, time with time zone, smallint, internal | integer - btree_gin | public | gin_compare_prefix_uuid | uuid, uuid, smallint, internal | integer - btree_gin | public | gin_compare_prefix_varbit | bit varying, bit varying, smallint, internal | integer - btree_gin | public | gin_enum_cmp | anyenum, anyenum | integer - btree_gin | public | gin_extract_query_anyenum | anyenum, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_bit | bit, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_bool | boolean, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_bpchar | character, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_bytea | bytea, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_char | "char", internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_cidr | cidr, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_date | date, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_float4 | real, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_float8 | double precision, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_inet | inet, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_int2 | smallint, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_int4 | integer, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_int8 | bigint, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_interval | interval, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_macaddr | macaddr, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_macaddr8 | macaddr8, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_money | money, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_name | name, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_numeric | numeric, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_oid | oid, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_text | text, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_time | time without time zone, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_timestamp | timestamp without time zone, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_timestamptz | timestamp with time zone, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_timetz | time with time zone, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_uuid | uuid, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_varbit | bit varying, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_value_anyenum | anyenum, internal | internal - btree_gin | public | gin_extract_value_bit | bit, internal | internal - btree_gin | public | gin_extract_value_bool | boolean, internal | internal - btree_gin | public | gin_extract_value_bpchar | character, internal | internal - btree_gin | public | gin_extract_value_bytea | bytea, internal | internal - btree_gin | public | gin_extract_value_char | "char", internal | internal - btree_gin | public | gin_extract_value_cidr | cidr, internal | internal - btree_gin | public | gin_extract_value_date | date, internal | internal - btree_gin | public | gin_extract_value_float4 | real, internal | internal - btree_gin | public | gin_extract_value_float8 | double precision, internal | internal - btree_gin | public | gin_extract_value_inet | inet, internal | internal - btree_gin | public | gin_extract_value_int2 | smallint, internal | internal - btree_gin | public | gin_extract_value_int4 | integer, internal | internal - btree_gin | public | gin_extract_value_int8 | bigint, internal | internal - btree_gin | public | gin_extract_value_interval | interval, internal | internal - btree_gin | public | gin_extract_value_macaddr | macaddr, internal | internal - btree_gin | public | gin_extract_value_macaddr8 | macaddr8, internal | internal - btree_gin | public | gin_extract_value_money | money, internal | internal - btree_gin | public | gin_extract_value_name | name, internal | internal - btree_gin | public | gin_extract_value_numeric | numeric, internal | internal - btree_gin | public | gin_extract_value_oid | oid, internal | internal - btree_gin | public | gin_extract_value_text | text, internal | internal - btree_gin | public | gin_extract_value_time | time without time zone, internal | internal - btree_gin | public | gin_extract_value_timestamp | timestamp without time zone, internal | internal - btree_gin | public | gin_extract_value_timestamptz | timestamp with time zone, internal | internal - btree_gin | public | gin_extract_value_timetz | time with time zone, internal | internal - btree_gin | public | gin_extract_value_uuid | uuid, internal | internal - btree_gin | public | gin_extract_value_varbit | bit varying, internal | internal - btree_gin | public | gin_numeric_cmp | numeric, numeric | integer - btree_gist | public | cash_dist | money, money | money - btree_gist | public | date_dist | date, date | integer - btree_gist | public | float4_dist | real, real | real - btree_gist | public | float8_dist | double precision, double precision | double precision - btree_gist | public | gbt_bit_compress | internal | internal - btree_gist | public | gbt_bit_consistent | internal, bit, smallint, oid, internal | boolean - btree_gist | public | gbt_bit_penalty | internal, internal, internal | internal - btree_gist | public | gbt_bit_picksplit | internal, internal | internal - btree_gist | public | gbt_bit_same | gbtreekey_var, gbtreekey_var, internal | internal - btree_gist | public | gbt_bit_union | internal, internal | gbtreekey_var - btree_gist | public | gbt_bool_compress | internal | internal - btree_gist | public | gbt_bool_consistent | internal, boolean, smallint, oid, internal | boolean - btree_gist | public | gbt_bool_fetch | internal | internal - btree_gist | public | gbt_bool_penalty | internal, internal, internal | internal - btree_gist | public | gbt_bool_picksplit | internal, internal | internal - btree_gist | public | gbt_bool_same | gbtreekey2, gbtreekey2, internal | internal - btree_gist | public | gbt_bool_union | internal, internal | gbtreekey2 - btree_gist | public | gbt_bpchar_compress | internal | internal - btree_gist | public | gbt_bpchar_consistent | internal, character, smallint, oid, internal | boolean - btree_gist | public | gbt_bytea_compress | internal | internal - btree_gist | public | gbt_bytea_consistent | internal, bytea, smallint, oid, internal | boolean - btree_gist | public | gbt_bytea_penalty | internal, internal, internal | internal - btree_gist | public | gbt_bytea_picksplit | internal, internal | internal - btree_gist | public | gbt_bytea_same | gbtreekey_var, gbtreekey_var, internal | internal - btree_gist | public | gbt_bytea_union | internal, internal | gbtreekey_var - btree_gist | public | gbt_cash_compress | internal | internal - btree_gist | public | gbt_cash_consistent | internal, money, smallint, oid, internal | boolean - btree_gist | public | gbt_cash_distance | internal, money, smallint, oid, internal | double precision - btree_gist | public | gbt_cash_fetch | internal | internal - btree_gist | public | gbt_cash_penalty | internal, internal, internal | internal - btree_gist | public | gbt_cash_picksplit | internal, internal | internal - btree_gist | public | gbt_cash_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_cash_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_date_compress | internal | internal - btree_gist | public | gbt_date_consistent | internal, date, smallint, oid, internal | boolean - btree_gist | public | gbt_date_distance | internal, date, smallint, oid, internal | double precision - btree_gist | public | gbt_date_fetch | internal | internal - btree_gist | public | gbt_date_penalty | internal, internal, internal | internal - btree_gist | public | gbt_date_picksplit | internal, internal | internal - btree_gist | public | gbt_date_same | gbtreekey8, gbtreekey8, internal | internal - btree_gist | public | gbt_date_union | internal, internal | gbtreekey8 - btree_gist | public | gbt_decompress | internal | internal - btree_gist | public | gbt_enum_compress | internal | internal - btree_gist | public | gbt_enum_consistent | internal, anyenum, smallint, oid, internal | boolean - btree_gist | public | gbt_enum_fetch | internal | internal - btree_gist | public | gbt_enum_penalty | internal, internal, internal | internal - btree_gist | public | gbt_enum_picksplit | internal, internal | internal - btree_gist | public | gbt_enum_same | gbtreekey8, gbtreekey8, internal | internal - btree_gist | public | gbt_enum_union | internal, internal | gbtreekey8 - btree_gist | public | gbt_float4_compress | internal | internal - btree_gist | public | gbt_float4_consistent | internal, real, smallint, oid, internal | boolean - btree_gist | public | gbt_float4_distance | internal, real, smallint, oid, internal | double precision - btree_gist | public | gbt_float4_fetch | internal | internal - btree_gist | public | gbt_float4_penalty | internal, internal, internal | internal - btree_gist | public | gbt_float4_picksplit | internal, internal | internal - btree_gist | public | gbt_float4_same | gbtreekey8, gbtreekey8, internal | internal - btree_gist | public | gbt_float4_union | internal, internal | gbtreekey8 - btree_gist | public | gbt_float8_compress | internal | internal - btree_gist | public | gbt_float8_consistent | internal, double precision, smallint, oid, internal | boolean - btree_gist | public | gbt_float8_distance | internal, double precision, smallint, oid, internal | double precision - btree_gist | public | gbt_float8_fetch | internal | internal - btree_gist | public | gbt_float8_penalty | internal, internal, internal | internal - btree_gist | public | gbt_float8_picksplit | internal, internal | internal - btree_gist | public | gbt_float8_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_float8_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_inet_compress | internal | internal - btree_gist | public | gbt_inet_consistent | internal, inet, smallint, oid, internal | boolean - btree_gist | public | gbt_inet_penalty | internal, internal, internal | internal - btree_gist | public | gbt_inet_picksplit | internal, internal | internal - btree_gist | public | gbt_inet_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_inet_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_int2_compress | internal | internal - btree_gist | public | gbt_int2_consistent | internal, smallint, smallint, oid, internal | boolean - btree_gist | public | gbt_int2_distance | internal, smallint, smallint, oid, internal | double precision - btree_gist | public | gbt_int2_fetch | internal | internal - btree_gist | public | gbt_int2_penalty | internal, internal, internal | internal - btree_gist | public | gbt_int2_picksplit | internal, internal | internal - btree_gist | public | gbt_int2_same | gbtreekey4, gbtreekey4, internal | internal - btree_gist | public | gbt_int2_union | internal, internal | gbtreekey4 - btree_gist | public | gbt_int4_compress | internal | internal - btree_gist | public | gbt_int4_consistent | internal, integer, smallint, oid, internal | boolean - btree_gist | public | gbt_int4_distance | internal, integer, smallint, oid, internal | double precision - btree_gist | public | gbt_int4_fetch | internal | internal - btree_gist | public | gbt_int4_penalty | internal, internal, internal | internal - btree_gist | public | gbt_int4_picksplit | internal, internal | internal - btree_gist | public | gbt_int4_same | gbtreekey8, gbtreekey8, internal | internal - btree_gist | public | gbt_int4_union | internal, internal | gbtreekey8 - btree_gist | public | gbt_int8_compress | internal | internal - btree_gist | public | gbt_int8_consistent | internal, bigint, smallint, oid, internal | boolean - btree_gist | public | gbt_int8_distance | internal, bigint, smallint, oid, internal | double precision - btree_gist | public | gbt_int8_fetch | internal | internal - btree_gist | public | gbt_int8_penalty | internal, internal, internal | internal - btree_gist | public | gbt_int8_picksplit | internal, internal | internal - btree_gist | public | gbt_int8_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_int8_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_intv_compress | internal | internal - btree_gist | public | gbt_intv_consistent | internal, interval, smallint, oid, internal | boolean - btree_gist | public | gbt_intv_decompress | internal | internal - btree_gist | public | gbt_intv_distance | internal, interval, smallint, oid, internal | double precision - btree_gist | public | gbt_intv_fetch | internal | internal - btree_gist | public | gbt_intv_penalty | internal, internal, internal | internal - btree_gist | public | gbt_intv_picksplit | internal, internal | internal - btree_gist | public | gbt_intv_same | gbtreekey32, gbtreekey32, internal | internal - btree_gist | public | gbt_intv_union | internal, internal | gbtreekey32 - btree_gist | public | gbt_macad8_compress | internal | internal - btree_gist | public | gbt_macad8_consistent | internal, macaddr8, smallint, oid, internal | boolean - btree_gist | public | gbt_macad8_fetch | internal | internal - btree_gist | public | gbt_macad8_penalty | internal, internal, internal | internal - btree_gist | public | gbt_macad8_picksplit | internal, internal | internal - btree_gist | public | gbt_macad8_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_macad8_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_macad_compress | internal | internal - btree_gist | public | gbt_macad_consistent | internal, macaddr, smallint, oid, internal | boolean - btree_gist | public | gbt_macad_fetch | internal | internal - btree_gist | public | gbt_macad_penalty | internal, internal, internal | internal - btree_gist | public | gbt_macad_picksplit | internal, internal | internal - btree_gist | public | gbt_macad_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_macad_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_numeric_compress | internal | internal - btree_gist | public | gbt_numeric_consistent | internal, numeric, smallint, oid, internal | boolean - btree_gist | public | gbt_numeric_penalty | internal, internal, internal | internal - btree_gist | public | gbt_numeric_picksplit | internal, internal | internal - btree_gist | public | gbt_numeric_same | gbtreekey_var, gbtreekey_var, internal | internal - btree_gist | public | gbt_numeric_union | internal, internal | gbtreekey_var - btree_gist | public | gbt_oid_compress | internal | internal - btree_gist | public | gbt_oid_consistent | internal, oid, smallint, oid, internal | boolean - btree_gist | public | gbt_oid_distance | internal, oid, smallint, oid, internal | double precision - btree_gist | public | gbt_oid_fetch | internal | internal - btree_gist | public | gbt_oid_penalty | internal, internal, internal | internal - btree_gist | public | gbt_oid_picksplit | internal, internal | internal - btree_gist | public | gbt_oid_same | gbtreekey8, gbtreekey8, internal | internal - btree_gist | public | gbt_oid_union | internal, internal | gbtreekey8 - btree_gist | public | gbt_text_compress | internal | internal - btree_gist | public | gbt_text_consistent | internal, text, smallint, oid, internal | boolean - btree_gist | public | gbt_text_penalty | internal, internal, internal | internal - btree_gist | public | gbt_text_picksplit | internal, internal | internal - btree_gist | public | gbt_text_same | gbtreekey_var, gbtreekey_var, internal | internal - btree_gist | public | gbt_text_union | internal, internal | gbtreekey_var - btree_gist | public | gbt_time_compress | internal | internal - btree_gist | public | gbt_time_consistent | internal, time without time zone, smallint, oid, internal | boolean - btree_gist | public | gbt_time_distance | internal, time without time zone, smallint, oid, internal | double precision - btree_gist | public | gbt_time_fetch | internal | internal - btree_gist | public | gbt_time_penalty | internal, internal, internal | internal - btree_gist | public | gbt_time_picksplit | internal, internal | internal - btree_gist | public | gbt_time_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_time_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_timetz_compress | internal | internal - btree_gist | public | gbt_timetz_consistent | internal, time with time zone, smallint, oid, internal | boolean - btree_gist | public | gbt_ts_compress | internal | internal - btree_gist | public | gbt_ts_consistent | internal, timestamp without time zone, smallint, oid, internal | boolean - btree_gist | public | gbt_ts_distance | internal, timestamp without time zone, smallint, oid, internal | double precision - btree_gist | public | gbt_ts_fetch | internal | internal - btree_gist | public | gbt_ts_penalty | internal, internal, internal | internal - btree_gist | public | gbt_ts_picksplit | internal, internal | internal - btree_gist | public | gbt_ts_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_ts_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_tstz_compress | internal | internal - btree_gist | public | gbt_tstz_consistent | internal, timestamp with time zone, smallint, oid, internal | boolean - btree_gist | public | gbt_tstz_distance | internal, timestamp with time zone, smallint, oid, internal | double precision - btree_gist | public | gbt_uuid_compress | internal | internal - btree_gist | public | gbt_uuid_consistent | internal, uuid, smallint, oid, internal | boolean - btree_gist | public | gbt_uuid_fetch | internal | internal - btree_gist | public | gbt_uuid_penalty | internal, internal, internal | internal - btree_gist | public | gbt_uuid_picksplit | internal, internal | internal - btree_gist | public | gbt_uuid_same | gbtreekey32, gbtreekey32, internal | internal - btree_gist | public | gbt_uuid_union | internal, internal | gbtreekey32 - btree_gist | public | gbt_var_decompress | internal | internal - btree_gist | public | gbt_var_fetch | internal | internal - btree_gist | public | gbtreekey16_in | cstring | gbtreekey16 - btree_gist | public | gbtreekey16_out | gbtreekey16 | cstring - btree_gist | public | gbtreekey2_in | cstring | gbtreekey2 - btree_gist | public | gbtreekey2_out | gbtreekey2 | cstring - btree_gist | public | gbtreekey32_in | cstring | gbtreekey32 - btree_gist | public | gbtreekey32_out | gbtreekey32 | cstring - btree_gist | public | gbtreekey4_in | cstring | gbtreekey4 - btree_gist | public | gbtreekey4_out | gbtreekey4 | cstring - btree_gist | public | gbtreekey8_in | cstring | gbtreekey8 - btree_gist | public | gbtreekey8_out | gbtreekey8 | cstring - btree_gist | public | gbtreekey_var_in | cstring | gbtreekey_var - btree_gist | public | gbtreekey_var_out | gbtreekey_var | cstring - btree_gist | public | int2_dist | smallint, smallint | smallint - btree_gist | public | int4_dist | integer, integer | integer - btree_gist | public | int8_dist | bigint, bigint | bigint - btree_gist | public | interval_dist | interval, interval | interval - btree_gist | public | oid_dist | oid, oid | oid - btree_gist | public | time_dist | time without time zone, time without time zone | interval - btree_gist | public | ts_dist | timestamp without time zone, timestamp without time zone | interval - btree_gist | public | tstz_dist | timestamp with time zone, timestamp with time zone | interval - citext | public | citext | boolean | citext - citext | public | citext | inet | citext - citext | public | citext | character | citext - citext | public | citext_cmp | citext, citext | integer - citext | public | citext_eq | citext, citext | boolean - citext | public | citext_ge | citext, citext | boolean - citext | public | citext_gt | citext, citext | boolean - citext | public | citext_hash | citext | integer - citext | public | citext_hash_extended | citext, bigint | bigint - citext | public | citext_larger | citext, citext | citext - citext | public | citext_le | citext, citext | boolean - citext | public | citext_lt | citext, citext | boolean - citext | public | citext_ne | citext, citext | boolean - citext | public | citext_pattern_cmp | citext, citext | integer - citext | public | citext_pattern_ge | citext, citext | boolean - citext | public | citext_pattern_gt | citext, citext | boolean - citext | public | citext_pattern_le | citext, citext | boolean - citext | public | citext_pattern_lt | citext, citext | boolean - citext | public | citext_smaller | citext, citext | citext - citext | public | citextin | cstring | citext - citext | public | citextout | citext | cstring - citext | public | citextrecv | internal | citext - citext | public | citextsend | citext | bytea - citext | public | max | citext | citext - citext | public | min | citext | citext - citext | public | regexp_match | citext, citext | text[] - citext | public | regexp_match | citext, citext, text | text[] - citext | public | regexp_matches | citext, citext | SETOF text[] - citext | public | regexp_matches | citext, citext, text | SETOF text[] - citext | public | regexp_replace | citext, citext, text, text | text - citext | public | regexp_replace | citext, citext, text | text - citext | public | regexp_split_to_array | citext, citext | text[] - citext | public | regexp_split_to_array | citext, citext, text | text[] - citext | public | regexp_split_to_table | citext, citext | SETOF text - citext | public | regexp_split_to_table | citext, citext, text | SETOF text - citext | public | replace | citext, citext, citext | text - citext | public | split_part | citext, citext, integer | text - citext | public | strpos | citext, citext | integer - citext | public | texticlike | citext, citext | boolean - citext | public | texticlike | citext, text | boolean - citext | public | texticnlike | citext, citext | boolean - citext | public | texticnlike | citext, text | boolean - citext | public | texticregexeq | citext, citext | boolean - citext | public | texticregexeq | citext, text | boolean - citext | public | texticregexne | citext, citext | boolean - citext | public | texticregexne | citext, text | boolean - citext | public | translate | citext, citext, text | text - cube | public | cube | cube, double precision, double precision | cube - cube | public | cube | double precision | cube - cube | public | cube | double precision[], double precision[] | cube - cube | public | cube | cube, double precision | cube - cube | public | cube | double precision, double precision | cube - cube | public | cube | double precision[] | cube - cube | public | cube_cmp | cube, cube | integer - cube | public | cube_contained | cube, cube | boolean - cube | public | cube_contains | cube, cube | boolean - cube | public | cube_coord | cube, integer | double precision - cube | public | cube_coord_llur | cube, integer | double precision - cube | public | cube_dim | cube | integer - cube | public | cube_distance | cube, cube | double precision - cube | public | cube_enlarge | cube, double precision, integer | cube - cube | public | cube_eq | cube, cube | boolean - cube | public | cube_ge | cube, cube | boolean - cube | public | cube_gt | cube, cube | boolean - cube | public | cube_in | cstring | cube - cube | public | cube_inter | cube, cube | cube - cube | public | cube_is_point | cube | boolean - cube | public | cube_le | cube, cube | boolean - cube | public | cube_ll_coord | cube, integer | double precision - cube | public | cube_lt | cube, cube | boolean - cube | public | cube_ne | cube, cube | boolean - cube | public | cube_out | cube | cstring - cube | public | cube_overlap | cube, cube | boolean - cube | public | cube_recv | internal | cube - cube | public | cube_send | cube | bytea - cube | public | cube_size | cube | double precision - cube | public | cube_subset | cube, integer[] | cube - cube | public | cube_union | cube, cube | cube - cube | public | cube_ur_coord | cube, integer | double precision - cube | public | distance_chebyshev | cube, cube | double precision - cube | public | distance_taxicab | cube, cube | double precision - cube | public | g_cube_consistent | internal, cube, smallint, oid, internal | boolean - cube | public | g_cube_distance | internal, cube, smallint, oid, internal | double precision - cube | public | g_cube_penalty | internal, internal, internal | internal - cube | public | g_cube_picksplit | internal, internal | internal - cube | public | g_cube_same | cube, cube, internal | internal - cube | public | g_cube_union | internal, internal | cube - dblink | public | dblink | text, boolean | SETOF record - dblink | public | dblink | text | SETOF record - dblink | public | dblink | text, text | SETOF record - dblink | public | dblink | text, text, boolean | SETOF record - dblink | public | dblink_build_sql_delete | text, int2vector, integer, text[] | text - dblink | public | dblink_build_sql_insert | text, int2vector, integer, text[], text[] | text - dblink | public | dblink_build_sql_update | text, int2vector, integer, text[], text[] | text - dblink | public | dblink_cancel_query | text | text - dblink | public | dblink_close | text, boolean | text - dblink | public | dblink_close | text | text - dblink | public | dblink_close | text, text | text - dblink | public | dblink_close | text, text, boolean | text - dblink | public | dblink_connect | text | text - dblink | public | dblink_connect | text, text | text - dblink | public | dblink_connect_u | text | text - dblink | public | dblink_connect_u | text, text | text - dblink | public | dblink_current_query | | text - dblink | public | dblink_disconnect | text | text - dblink | public | dblink_disconnect | | text - dblink | public | dblink_error_message | text | text - dblink | public | dblink_exec | text, boolean | text - dblink | public | dblink_exec | text | text - dblink | public | dblink_exec | text, text | text - dblink | public | dblink_exec | text, text, boolean | text - dblink | public | dblink_fdw_validator | options text[], catalog oid | void - dblink | public | dblink_fetch | text, text, integer, boolean | SETOF record - dblink | public | dblink_fetch | text, integer | SETOF record - dblink | public | dblink_fetch | text, text, integer | SETOF record - dblink | public | dblink_fetch | text, integer, boolean | SETOF record - dblink | public | dblink_get_connections | | text[] - dblink | public | dblink_get_notify | OUT notify_name text, OUT be_pid integer, OUT extra text | SETOF record - dblink | public | dblink_get_notify | conname text, OUT notify_name text, OUT be_pid integer, OUT extra text | SETOF record - dblink | public | dblink_get_pkey | text | SETOF dblink_pkey_results - dblink | public | dblink_get_result | text, boolean | SETOF record - dblink | public | dblink_get_result | text | SETOF record - dblink | public | dblink_is_busy | text | integer - dblink | public | dblink_open | text, text, text, boolean | text - dblink | public | dblink_open | text, text | text - dblink | public | dblink_open | text, text, boolean | text - dblink | public | dblink_open | text, text, text | text - dblink | public | dblink_send_query | text, text | integer - dict_int | public | dintdict_init | internal | internal - dict_int | public | dintdict_lexize | internal, internal, internal, internal | internal - dict_xsyn | public | dxsyn_init | internal | internal - dict_xsyn | public | dxsyn_lexize | internal, internal, internal, internal | internal - earthdistance | public | earth | | double precision - earthdistance | public | earth_box | earth, double precision | cube - earthdistance | public | earth_distance | earth, earth | double precision - earthdistance | public | gc_to_sec | double precision | double precision - earthdistance | public | geo_distance | point, point | double precision - earthdistance | public | latitude | earth | double precision - earthdistance | public | ll_to_earth | double precision, double precision | earth - earthdistance | public | longitude | earth | double precision - earthdistance | public | sec_to_gc | double precision | double precision - file_fdw | public | file_fdw_handler | | fdw_handler - file_fdw | public | file_fdw_validator | text[], oid | void - fuzzystrmatch | public | difference | text, text | integer - fuzzystrmatch | public | dmetaphone | text | text - fuzzystrmatch | public | dmetaphone_alt | text | text - fuzzystrmatch | public | levenshtein | text, text | integer - fuzzystrmatch | public | levenshtein | text, text, integer, integer, integer | integer - fuzzystrmatch | public | levenshtein_less_equal | text, text, integer, integer, integer, integer | integer - fuzzystrmatch | public | levenshtein_less_equal | text, text, integer | integer - fuzzystrmatch | public | metaphone | text, integer | text - fuzzystrmatch | public | soundex | text | text - fuzzystrmatch | public | text_soundex | text | text - hstore | public | akeys | hstore | text[] - hstore | public | avals | hstore | text[] - hstore | public | defined | hstore, text | boolean - hstore | public | delete | hstore, text | hstore - hstore | public | delete | hstore, text[] | hstore - hstore | public | delete | hstore, hstore | hstore - hstore | public | each | hs hstore, OUT key text, OUT value text | SETOF record - hstore | public | exist | hstore, text | boolean - hstore | public | exists_all | hstore, text[] | boolean - hstore | public | exists_any | hstore, text[] | boolean - hstore | public | fetchval | hstore, text | text - hstore | public | ghstore_compress | internal | internal - hstore | public | ghstore_consistent | internal, hstore, smallint, oid, internal | boolean - hstore | public | ghstore_decompress | internal | internal - hstore | public | ghstore_in | cstring | ghstore - hstore | public | ghstore_options | internal | void - hstore | public | ghstore_out | ghstore | cstring - hstore | public | ghstore_penalty | internal, internal, internal | internal - hstore | public | ghstore_picksplit | internal, internal | internal - hstore | public | ghstore_same | ghstore, ghstore, internal | internal - hstore | public | ghstore_union | internal, internal | ghstore - hstore | public | gin_consistent_hstore | internal, smallint, hstore, integer, internal, internal | boolean - hstore | public | gin_extract_hstore | hstore, internal | internal - hstore | public | gin_extract_hstore_query | hstore, internal, smallint, internal, internal | internal - hstore | public | hs_concat | hstore, hstore | hstore - hstore | public | hs_contained | hstore, hstore | boolean - hstore | public | hs_contains | hstore, hstore | boolean - hstore | public | hstore | text[], text[] | hstore - hstore | public | hstore | text, text | hstore - hstore | public | hstore | text[] | hstore - hstore | public | hstore | record | hstore - hstore | public | hstore_cmp | hstore, hstore | integer - hstore | public | hstore_eq | hstore, hstore | boolean - hstore | public | hstore_ge | hstore, hstore | boolean - hstore | public | hstore_gt | hstore, hstore | boolean - hstore | public | hstore_hash | hstore | integer - hstore | public | hstore_hash_extended | hstore, bigint | bigint - hstore | public | hstore_in | cstring | hstore - hstore | public | hstore_le | hstore, hstore | boolean - hstore | public | hstore_lt | hstore, hstore | boolean - hstore | public | hstore_ne | hstore, hstore | boolean - hstore | public | hstore_out | hstore | cstring - hstore | public | hstore_recv | internal | hstore - hstore | public | hstore_send | hstore | bytea - hstore | public | hstore_subscript_handler | internal | internal - hstore | public | hstore_to_array | hstore | text[] - hstore | public | hstore_to_json | hstore | json - hstore | public | hstore_to_json_loose | hstore | json - hstore | public | hstore_to_jsonb | hstore | jsonb - hstore | public | hstore_to_jsonb_loose | hstore | jsonb - hstore | public | hstore_to_matrix | hstore | text[] - hstore | public | hstore_version_diag | hstore | integer - hstore | public | isdefined | hstore, text | boolean - hstore | public | isexists | hstore, text | boolean - hstore | public | populate_record | anyelement, hstore | anyelement - hstore | public | skeys | hstore | SETOF text - hstore | public | slice | hstore, text[] | hstore - hstore | public | slice_array | hstore, text[] | text[] - hstore | public | svals | hstore | SETOF text - hstore | public | tconvert | text, text | hstore - http | public | bytea_to_text | data bytea | text - http | public | http | request http_request | http_response - http | public | http_delete | uri character varying, content character varying, content_type character varying | http_response - http | public | http_delete | uri character varying | http_response - http | public | http_get | uri character varying, data jsonb | http_response - http | public | http_get | uri character varying | http_response - http | public | http_head | uri character varying | http_response - http | public | http_header | field character varying, value character varying | http_header - http | public | http_list_curlopt | | TABLE(curlopt text, value text) - http | public | http_patch | uri character varying, content character varying, content_type character varying | http_response - http | public | http_post | uri character varying, data jsonb | http_response - http | public | http_post | uri character varying, content character varying, content_type character varying | http_response - http | public | http_put | uri character varying, content character varying, content_type character varying | http_response - http | public | http_reset_curlopt | | boolean - http | public | http_set_curlopt | curlopt character varying, value character varying | boolean - http | public | text_to_bytea | data text | bytea - http | public | urlencode | data jsonb | text - http | public | urlencode | string character varying | text - http | public | urlencode | string bytea | text - hypopg | public | hypopg | OUT indexname text, OUT indexrelid oid, OUT indrelid oid, OUT innatts integer, OUT indisunique boolean, OUT indkey int2vector, OUT indcollation oidvector, OUT indclass oidvector, OUT indoption oidvector, OUT indexprs pg_node_tree, OUT indpred pg_node_tree, OUT amid oid | SETOF record - hypopg | public | hypopg_create_index | sql_order text, OUT indexrelid oid, OUT indexname text | SETOF record - hypopg | public | hypopg_drop_index | indexid oid | boolean - hypopg | public | hypopg_get_indexdef | indexid oid | text - hypopg | public | hypopg_hidden_indexes | | TABLE(indexid oid) - hypopg | public | hypopg_hide_index | indexid oid | boolean - hypopg | public | hypopg_relation_size | indexid oid | bigint - hypopg | public | hypopg_reset | | void - hypopg | public | hypopg_reset_index | | void - hypopg | public | hypopg_unhide_all_indexes | | void - hypopg | public | hypopg_unhide_index | indexid oid | boolean - index_advisor | public | index_advisor | query text | TABLE(startup_cost_before jsonb, startup_cost_after jsonb, total_cost_before jsonb, total_cost_after jsonb, index_statements text[], errors text[]) - insert_username | public | insert_username | | trigger - intagg | public | int_agg_final_array | internal | integer[] - intagg | public | int_agg_state | internal, integer | internal - intagg | public | int_array_aggregate | integer | integer[] - intagg | public | int_array_enum | integer[] | SETOF integer - intarray | public | _int_contained | integer[], integer[] | boolean - intarray | public | _int_contained_joinsel | internal, oid, internal, smallint, internal | double precision - intarray | public | _int_contained_sel | internal, oid, internal, integer | double precision - intarray | public | _int_contains | integer[], integer[] | boolean - intarray | public | _int_contains_joinsel | internal, oid, internal, smallint, internal | double precision - intarray | public | _int_contains_sel | internal, oid, internal, integer | double precision - intarray | public | _int_different | integer[], integer[] | boolean - intarray | public | _int_inter | integer[], integer[] | integer[] - intarray | public | _int_matchsel | internal, oid, internal, integer | double precision - intarray | public | _int_overlap | integer[], integer[] | boolean - intarray | public | _int_overlap_joinsel | internal, oid, internal, smallint, internal | double precision - intarray | public | _int_overlap_sel | internal, oid, internal, integer | double precision - intarray | public | _int_same | integer[], integer[] | boolean - intarray | public | _int_union | integer[], integer[] | integer[] - intarray | public | _intbig_in | cstring | intbig_gkey - intarray | public | _intbig_out | intbig_gkey | cstring - intarray | public | boolop | integer[], query_int | boolean - intarray | public | bqarr_in | cstring | query_int - intarray | public | bqarr_out | query_int | cstring - intarray | public | g_int_compress | internal | internal - intarray | public | g_int_consistent | internal, integer[], smallint, oid, internal | boolean - intarray | public | g_int_decompress | internal | internal - intarray | public | g_int_options | internal | void - intarray | public | g_int_penalty | internal, internal, internal | internal - intarray | public | g_int_picksplit | internal, internal | internal - intarray | public | g_int_same | integer[], integer[], internal | internal - intarray | public | g_int_union | internal, internal | integer[] - intarray | public | g_intbig_compress | internal | internal - intarray | public | g_intbig_consistent | internal, integer[], smallint, oid, internal | boolean - intarray | public | g_intbig_decompress | internal | internal - intarray | public | g_intbig_options | internal | void - intarray | public | g_intbig_penalty | internal, internal, internal | internal - intarray | public | g_intbig_picksplit | internal, internal | internal - intarray | public | g_intbig_same | intbig_gkey, intbig_gkey, internal | internal - intarray | public | g_intbig_union | internal, internal | intbig_gkey - intarray | public | ginint4_consistent | internal, smallint, integer[], integer, internal, internal, internal, internal | boolean - intarray | public | ginint4_queryextract | integer[], internal, smallint, internal, internal, internal, internal | internal - intarray | public | icount | integer[] | integer - intarray | public | idx | integer[], integer | integer - intarray | public | intarray_del_elem | integer[], integer | integer[] - intarray | public | intarray_push_array | integer[], integer[] | integer[] - intarray | public | intarray_push_elem | integer[], integer | integer[] - intarray | public | intset | integer | integer[] - intarray | public | intset_subtract | integer[], integer[] | integer[] - intarray | public | intset_union_elem | integer[], integer | integer[] - intarray | public | querytree | query_int | text - intarray | public | rboolop | query_int, integer[] | boolean - intarray | public | sort | integer[] | integer[] - intarray | public | sort | integer[], text | integer[] - intarray | public | sort_asc | integer[] | integer[] - intarray | public | sort_desc | integer[] | integer[] - intarray | public | subarray | integer[], integer | integer[] - intarray | public | subarray | integer[], integer, integer | integer[] - intarray | public | uniq | integer[] | integer[] - isn | public | btean13cmp | ean13, ean13 | integer - isn | public | btean13cmp | ean13, issn | integer - isn | public | btean13cmp | ean13, upc | integer - isn | public | btean13cmp | ean13, issn13 | integer - isn | public | btean13cmp | ean13, ismn | integer - isn | public | btean13cmp | ean13, ismn13 | integer - isn | public | btean13cmp | ean13, isbn13 | integer - isn | public | btean13cmp | ean13, isbn | integer - isn | public | btisbn13cmp | isbn13, isbn13 | integer - isn | public | btisbn13cmp | isbn13, ean13 | integer - isn | public | btisbn13cmp | isbn13, isbn | integer - isn | public | btisbncmp | isbn, ean13 | integer - isn | public | btisbncmp | isbn, isbn | integer - isn | public | btisbncmp | isbn, isbn13 | integer - isn | public | btismn13cmp | ismn13, ismn13 | integer - isn | public | btismn13cmp | ismn13, ean13 | integer - isn | public | btismn13cmp | ismn13, ismn | integer - isn | public | btismncmp | ismn, ismn | integer - isn | public | btismncmp | ismn, ean13 | integer - isn | public | btismncmp | ismn, ismn13 | integer - isn | public | btissn13cmp | issn13, issn13 | integer - isn | public | btissn13cmp | issn13, ean13 | integer - isn | public | btissn13cmp | issn13, issn | integer - isn | public | btissncmp | issn, ean13 | integer - isn | public | btissncmp | issn, issn13 | integer - isn | public | btissncmp | issn, issn | integer - isn | public | btupccmp | upc, upc | integer - isn | public | btupccmp | upc, ean13 | integer - isn | public | ean13_in | cstring | ean13 - isn | public | ean13_out | isbn13 | cstring - isn | public | ean13_out | ismn13 | cstring - isn | public | ean13_out | ean13 | cstring - isn | public | ean13_out | issn13 | cstring - isn | public | hashean13 | ean13 | integer - isn | public | hashisbn | isbn | integer - isn | public | hashisbn13 | isbn13 | integer - isn | public | hashismn | ismn | integer - isn | public | hashismn13 | ismn13 | integer - isn | public | hashissn | issn | integer - isn | public | hashissn13 | issn13 | integer - isn | public | hashupc | upc | integer - isn | public | is_valid | isbn13 | boolean - isn | public | is_valid | upc | boolean - isn | public | is_valid | ismn | boolean - isn | public | is_valid | issn | boolean - isn | public | is_valid | isbn | boolean - isn | public | is_valid | ismn13 | boolean - isn | public | is_valid | ean13 | boolean - isn | public | is_valid | issn13 | boolean - isn | public | isbn | ean13 | isbn - isn | public | isbn13 | ean13 | isbn13 - isn | public | isbn13_in | cstring | isbn13 - isn | public | isbn_in | cstring | isbn - isn | public | ismn | ean13 | ismn - isn | public | ismn13 | ean13 | ismn13 - isn | public | ismn13_in | cstring | ismn13 - isn | public | ismn_in | cstring | ismn - isn | public | isn_out | upc | cstring - isn | public | isn_out | ismn | cstring - isn | public | isn_out | issn | cstring - isn | public | isn_out | isbn | cstring - isn | public | isn_weak | boolean | boolean - isn | public | isn_weak | | boolean - isn | public | isneq | ismn, ismn | boolean - isn | public | isneq | ean13, ean13 | boolean - isn | public | isneq | isbn, ean13 | boolean - isn | public | isneq | issn, ean13 | boolean - isn | public | isneq | isbn13, isbn13 | boolean - isn | public | isneq | ean13, issn | boolean - isn | public | isneq | isbn, isbn | boolean - isn | public | isneq | ean13, upc | boolean - isn | public | isneq | ean13, issn13 | boolean - isn | public | isneq | ean13, ismn | boolean - isn | public | isneq | upc, upc | boolean - isn | public | isneq | issn13, issn13 | boolean - isn | public | isneq | upc, ean13 | boolean - isn | public | isneq | ismn13, ismn13 | boolean - isn | public | isneq | issn13, ean13 | boolean - isn | public | isneq | ean13, ismn13 | boolean - isn | public | isneq | ismn13, ean13 | boolean - isn | public | isneq | issn13, issn | boolean - isn | public | isneq | ismn, ean13 | boolean - isn | public | isneq | ismn13, ismn | boolean - isn | public | isneq | ean13, isbn13 | boolean - isn | public | isneq | isbn13, ean13 | boolean - isn | public | isneq | isbn13, isbn | boolean - isn | public | isneq | isbn, isbn13 | boolean - isn | public | isneq | ismn, ismn13 | boolean - isn | public | isneq | ean13, isbn | boolean - isn | public | isneq | issn, issn13 | boolean - isn | public | isneq | issn, issn | boolean - isn | public | isnge | ismn, ismn | boolean - isn | public | isnge | ean13, ean13 | boolean - isn | public | isnge | isbn, ean13 | boolean - isn | public | isnge | issn, ean13 | boolean - isn | public | isnge | isbn13, isbn13 | boolean - isn | public | isnge | ean13, issn | boolean - isn | public | isnge | isbn, isbn | boolean - isn | public | isnge | ean13, upc | boolean - isn | public | isnge | ean13, issn13 | boolean - isn | public | isnge | ean13, ismn | boolean - isn | public | isnge | upc, upc | boolean - isn | public | isnge | issn13, issn13 | boolean - isn | public | isnge | upc, ean13 | boolean - isn | public | isnge | ismn13, ismn13 | boolean - isn | public | isnge | issn13, ean13 | boolean - isn | public | isnge | ean13, ismn13 | boolean - isn | public | isnge | ismn13, ean13 | boolean - isn | public | isnge | issn13, issn | boolean - isn | public | isnge | ismn, ean13 | boolean - isn | public | isnge | ismn13, ismn | boolean - isn | public | isnge | ean13, isbn13 | boolean - isn | public | isnge | isbn13, ean13 | boolean - isn | public | isnge | isbn13, isbn | boolean - isn | public | isnge | isbn, isbn13 | boolean - isn | public | isnge | ismn, ismn13 | boolean - isn | public | isnge | ean13, isbn | boolean - isn | public | isnge | issn, issn13 | boolean - isn | public | isnge | issn, issn | boolean - isn | public | isngt | ismn, ismn | boolean - isn | public | isngt | ean13, ean13 | boolean - isn | public | isngt | isbn, ean13 | boolean - isn | public | isngt | issn, ean13 | boolean - isn | public | isngt | isbn13, isbn13 | boolean - isn | public | isngt | ean13, issn | boolean - isn | public | isngt | isbn, isbn | boolean - isn | public | isngt | ean13, upc | boolean - isn | public | isngt | ean13, issn13 | boolean - isn | public | isngt | ean13, ismn | boolean - isn | public | isngt | upc, upc | boolean - isn | public | isngt | issn13, issn13 | boolean - isn | public | isngt | upc, ean13 | boolean - isn | public | isngt | ismn13, ismn13 | boolean - isn | public | isngt | issn13, ean13 | boolean - isn | public | isngt | ean13, ismn13 | boolean - isn | public | isngt | ismn13, ean13 | boolean - isn | public | isngt | issn13, issn | boolean - isn | public | isngt | ismn, ean13 | boolean - isn | public | isngt | ismn13, ismn | boolean - isn | public | isngt | ean13, isbn13 | boolean - isn | public | isngt | isbn13, ean13 | boolean - isn | public | isngt | isbn13, isbn | boolean - isn | public | isngt | isbn, isbn13 | boolean - isn | public | isngt | ismn, ismn13 | boolean - isn | public | isngt | ean13, isbn | boolean - isn | public | isngt | issn, issn13 | boolean - isn | public | isngt | issn, issn | boolean - isn | public | isnle | ismn, ismn | boolean - isn | public | isnle | ean13, ean13 | boolean - isn | public | isnle | isbn, ean13 | boolean - isn | public | isnle | issn, ean13 | boolean - isn | public | isnle | isbn13, isbn13 | boolean - isn | public | isnle | ean13, issn | boolean - isn | public | isnle | isbn, isbn | boolean - isn | public | isnle | ean13, upc | boolean - isn | public | isnle | ean13, issn13 | boolean - isn | public | isnle | ean13, ismn | boolean - isn | public | isnle | upc, upc | boolean - isn | public | isnle | issn13, issn13 | boolean - isn | public | isnle | upc, ean13 | boolean - isn | public | isnle | ismn13, ismn13 | boolean - isn | public | isnle | issn13, ean13 | boolean - isn | public | isnle | ean13, ismn13 | boolean - isn | public | isnle | ismn13, ean13 | boolean - isn | public | isnle | issn13, issn | boolean - isn | public | isnle | ismn, ean13 | boolean - isn | public | isnle | ismn13, ismn | boolean - isn | public | isnle | ean13, isbn13 | boolean - isn | public | isnle | isbn13, ean13 | boolean - isn | public | isnle | isbn13, isbn | boolean - isn | public | isnle | isbn, isbn13 | boolean - isn | public | isnle | ismn, ismn13 | boolean - isn | public | isnle | ean13, isbn | boolean - isn | public | isnle | issn, issn13 | boolean - isn | public | isnle | issn, issn | boolean - isn | public | isnlt | ismn, ismn | boolean - isn | public | isnlt | ean13, ean13 | boolean - isn | public | isnlt | isbn, ean13 | boolean - isn | public | isnlt | issn, ean13 | boolean - isn | public | isnlt | isbn13, isbn13 | boolean - isn | public | isnlt | ean13, issn | boolean - isn | public | isnlt | isbn, isbn | boolean - isn | public | isnlt | ean13, upc | boolean - isn | public | isnlt | ean13, issn13 | boolean - isn | public | isnlt | ean13, ismn | boolean - isn | public | isnlt | upc, upc | boolean - isn | public | isnlt | issn13, issn13 | boolean - isn | public | isnlt | upc, ean13 | boolean - isn | public | isnlt | ismn13, ismn13 | boolean - isn | public | isnlt | issn13, ean13 | boolean - isn | public | isnlt | ean13, ismn13 | boolean - isn | public | isnlt | ismn13, ean13 | boolean - isn | public | isnlt | issn13, issn | boolean - isn | public | isnlt | ismn, ean13 | boolean - isn | public | isnlt | ismn13, ismn | boolean - isn | public | isnlt | ean13, isbn13 | boolean - isn | public | isnlt | isbn13, ean13 | boolean - isn | public | isnlt | isbn13, isbn | boolean - isn | public | isnlt | isbn, isbn13 | boolean - isn | public | isnlt | ismn, ismn13 | boolean - isn | public | isnlt | ean13, isbn | boolean - isn | public | isnlt | issn, issn13 | boolean - isn | public | isnlt | issn, issn | boolean - isn | public | isnne | ismn, ismn | boolean - isn | public | isnne | ean13, ean13 | boolean - isn | public | isnne | isbn, ean13 | boolean - isn | public | isnne | issn, ean13 | boolean - isn | public | isnne | isbn13, isbn13 | boolean - isn | public | isnne | ean13, issn | boolean - isn | public | isnne | isbn, isbn | boolean - isn | public | isnne | ean13, upc | boolean - isn | public | isnne | ean13, issn13 | boolean - isn | public | isnne | ean13, ismn | boolean - isn | public | isnne | upc, upc | boolean - isn | public | isnne | issn13, issn13 | boolean - isn | public | isnne | upc, ean13 | boolean - isn | public | isnne | ismn13, ismn13 | boolean - isn | public | isnne | issn13, ean13 | boolean - isn | public | isnne | ean13, ismn13 | boolean - isn | public | isnne | ismn13, ean13 | boolean - isn | public | isnne | issn13, issn | boolean - isn | public | isnne | ismn, ean13 | boolean - isn | public | isnne | ismn13, ismn | boolean - isn | public | isnne | ean13, isbn13 | boolean - isn | public | isnne | isbn13, ean13 | boolean - isn | public | isnne | isbn13, isbn | boolean - isn | public | isnne | isbn, isbn13 | boolean - isn | public | isnne | ismn, ismn13 | boolean - isn | public | isnne | ean13, isbn | boolean - isn | public | isnne | issn, issn13 | boolean - isn | public | isnne | issn, issn | boolean - isn | public | issn | ean13 | issn - isn | public | issn13 | ean13 | issn13 - isn | public | issn13_in | cstring | issn13 - isn | public | issn_in | cstring | issn - isn | public | make_valid | isbn13 | isbn13 - isn | public | make_valid | upc | upc - isn | public | make_valid | ismn | ismn - isn | public | make_valid | issn | issn - isn | public | make_valid | isbn | isbn - isn | public | make_valid | ismn13 | ismn13 - isn | public | make_valid | ean13 | ean13 - isn | public | make_valid | issn13 | issn13 - isn | public | upc | ean13 | upc - isn | public | upc_in | cstring | upc - lo | public | lo_manage | | trigger - lo | public | lo_oid | lo | oid - ltree | public | _lt_q_regex | ltree[], lquery[] | boolean - ltree | public | _lt_q_rregex | lquery[], ltree[] | boolean - ltree | public | _ltq_extract_regex | ltree[], lquery | ltree - ltree | public | _ltq_regex | ltree[], lquery | boolean - ltree | public | _ltq_rregex | lquery, ltree[] | boolean - ltree | public | _ltree_compress | internal | internal - ltree | public | _ltree_consistent | internal, ltree[], smallint, oid, internal | boolean - ltree | public | _ltree_extract_isparent | ltree[], ltree | ltree - ltree | public | _ltree_extract_risparent | ltree[], ltree | ltree - ltree | public | _ltree_gist_options | internal | void - ltree | public | _ltree_isparent | ltree[], ltree | boolean - ltree | public | _ltree_penalty | internal, internal, internal | internal - ltree | public | _ltree_picksplit | internal, internal | internal - ltree | public | _ltree_r_isparent | ltree, ltree[] | boolean - ltree | public | _ltree_r_risparent | ltree, ltree[] | boolean - ltree | public | _ltree_risparent | ltree[], ltree | boolean - ltree | public | _ltree_same | ltree_gist, ltree_gist, internal | internal - ltree | public | _ltree_union | internal, internal | ltree_gist - ltree | public | _ltxtq_exec | ltree[], ltxtquery | boolean - ltree | public | _ltxtq_extract_exec | ltree[], ltxtquery | ltree - ltree | public | _ltxtq_rexec | ltxtquery, ltree[] | boolean - ltree | public | hash_ltree | ltree | integer - ltree | public | hash_ltree_extended | ltree, bigint | bigint - ltree | public | index | ltree, ltree | integer - ltree | public | index | ltree, ltree, integer | integer - ltree | public | lca | ltree, ltree, ltree, ltree, ltree, ltree | ltree - ltree | public | lca | ltree, ltree | ltree - ltree | public | lca | ltree, ltree, ltree | ltree - ltree | public | lca | ltree, ltree, ltree, ltree, ltree, ltree, ltree, ltree | ltree - ltree | public | lca | ltree, ltree, ltree, ltree, ltree | ltree - ltree | public | lca | ltree[] | ltree - ltree | public | lca | ltree, ltree, ltree, ltree, ltree, ltree, ltree | ltree - ltree | public | lca | ltree, ltree, ltree, ltree | ltree - ltree | public | lquery_in | cstring | lquery - ltree | public | lquery_out | lquery | cstring - ltree | public | lquery_recv | internal | lquery - ltree | public | lquery_send | lquery | bytea - ltree | public | lt_q_regex | ltree, lquery[] | boolean - ltree | public | lt_q_rregex | lquery[], ltree | boolean - ltree | public | ltq_regex | ltree, lquery | boolean - ltree | public | ltq_rregex | lquery, ltree | boolean - ltree | public | ltree2text | ltree | text - ltree | public | ltree_addltree | ltree, ltree | ltree - ltree | public | ltree_addtext | ltree, text | ltree - ltree | public | ltree_cmp | ltree, ltree | integer - ltree | public | ltree_compress | internal | internal - ltree | public | ltree_consistent | internal, ltree, smallint, oid, internal | boolean - ltree | public | ltree_decompress | internal | internal - ltree | public | ltree_eq | ltree, ltree | boolean - ltree | public | ltree_ge | ltree, ltree | boolean - ltree | public | ltree_gist_in | cstring | ltree_gist - ltree | public | ltree_gist_options | internal | void - ltree | public | ltree_gist_out | ltree_gist | cstring - ltree | public | ltree_gt | ltree, ltree | boolean - ltree | public | ltree_in | cstring | ltree - ltree | public | ltree_isparent | ltree, ltree | boolean - ltree | public | ltree_le | ltree, ltree | boolean - ltree | public | ltree_lt | ltree, ltree | boolean - ltree | public | ltree_ne | ltree, ltree | boolean - ltree | public | ltree_out | ltree | cstring - ltree | public | ltree_penalty | internal, internal, internal | internal - ltree | public | ltree_picksplit | internal, internal | internal - ltree | public | ltree_recv | internal | ltree - ltree | public | ltree_risparent | ltree, ltree | boolean - ltree | public | ltree_same | ltree_gist, ltree_gist, internal | internal - ltree | public | ltree_send | ltree | bytea - ltree | public | ltree_textadd | text, ltree | ltree - ltree | public | ltree_union | internal, internal | ltree_gist - ltree | public | ltreeparentsel | internal, oid, internal, integer | double precision - ltree | public | ltxtq_exec | ltree, ltxtquery | boolean - ltree | public | ltxtq_in | cstring | ltxtquery - ltree | public | ltxtq_out | ltxtquery | cstring - ltree | public | ltxtq_recv | internal | ltxtquery - ltree | public | ltxtq_rexec | ltxtquery, ltree | boolean - ltree | public | ltxtq_send | ltxtquery | bytea - ltree | public | nlevel | ltree | integer - ltree | public | subltree | ltree, integer, integer | ltree - ltree | public | subpath | ltree, integer | ltree - ltree | public | subpath | ltree, integer, integer | ltree - ltree | public | text2ltree | text | ltree - moddatetime | public | moddatetime | | trigger - pageinspect | public | brin_metapage_info | page bytea, OUT magic text, OUT version integer, OUT pagesperrange integer, OUT lastrevmappage bigint | record - pageinspect | public | brin_page_type | page bytea | text - pageinspect | public | brin_revmap_data | page bytea, OUT pages tid | SETOF tid - pageinspect | public | bt_metap | relname text, OUT magic integer, OUT version integer, OUT root bigint, OUT level bigint, OUT fastroot bigint, OUT fastlevel bigint, OUT last_cleanup_num_delpages bigint, OUT last_cleanup_num_tuples double precision, OUT allequalimage boolean | record - pageinspect | public | bt_page_items | page bytea, OUT itemoffset smallint, OUT ctid tid, OUT itemlen smallint, OUT nulls boolean, OUT vars boolean, OUT data text, OUT dead boolean, OUT htid tid, OUT tids tid[] | SETOF record - pageinspect | public | bt_page_items | relname text, blkno bigint, OUT itemoffset smallint, OUT ctid tid, OUT itemlen smallint, OUT nulls boolean, OUT vars boolean, OUT data text, OUT dead boolean, OUT htid tid, OUT tids tid[] | SETOF record - pageinspect | public | bt_page_stats | relname text, blkno bigint, OUT blkno bigint, OUT type "char", OUT live_items integer, OUT dead_items integer, OUT avg_item_size integer, OUT page_size integer, OUT free_size integer, OUT btpo_prev bigint, OUT btpo_next bigint, OUT btpo_level bigint, OUT btpo_flags integer | record - pageinspect | public | fsm_page_contents | page bytea | text - pageinspect | public | get_raw_page | text, bigint | bytea - pageinspect | public | get_raw_page | text, text, bigint | bytea - pageinspect | public | gin_leafpage_items | page bytea, OUT first_tid tid, OUT nbytes smallint, OUT tids tid[] | SETOF record - pageinspect | public | gin_metapage_info | page bytea, OUT pending_head bigint, OUT pending_tail bigint, OUT tail_free_size integer, OUT n_pending_pages bigint, OUT n_pending_tuples bigint, OUT n_total_pages bigint, OUT n_entry_pages bigint, OUT n_data_pages bigint, OUT n_entries bigint, OUT version integer | record - pageinspect | public | gin_page_opaque_info | page bytea, OUT rightlink bigint, OUT maxoff integer, OUT flags text[] | record - pageinspect | public | gist_page_items | page bytea, index_oid regclass, OUT itemoffset smallint, OUT ctid tid, OUT itemlen smallint, OUT dead boolean, OUT keys text | SETOF record - pageinspect | public | gist_page_items_bytea | page bytea, OUT itemoffset smallint, OUT ctid tid, OUT itemlen smallint, OUT dead boolean, OUT key_data bytea | SETOF record - pageinspect | public | gist_page_opaque_info | page bytea, OUT lsn pg_lsn, OUT nsn pg_lsn, OUT rightlink bigint, OUT flags text[] | record - pageinspect | public | hash_bitmap_info | index_oid regclass, blkno bigint, OUT bitmapblkno bigint, OUT bitmapbit integer, OUT bitstatus boolean | SETOF record - pageinspect | public | hash_metapage_info | page bytea, OUT magic bigint, OUT version bigint, OUT ntuples double precision, OUT ffactor integer, OUT bsize integer, OUT bmsize integer, OUT bmshift integer, OUT maxbucket bigint, OUT highmask bigint, OUT lowmask bigint, OUT ovflpoint bigint, OUT firstfree bigint, OUT nmaps bigint, OUT procid oid, OUT spares bigint[], OUT mapp bigint[] | record - pageinspect | public | hash_page_items | page bytea, OUT itemoffset integer, OUT ctid tid, OUT data bigint | SETOF record - pageinspect | public | hash_page_stats | page bytea, OUT live_items integer, OUT dead_items integer, OUT page_size integer, OUT free_size integer, OUT hasho_prevblkno bigint, OUT hasho_nextblkno bigint, OUT hasho_bucket bigint, OUT hasho_flag integer, OUT hasho_page_id integer | record - pageinspect | public | hash_page_type | page bytea | text - pageinspect | public | heap_page_item_attrs | page bytea, rel_oid regclass, OUT lp smallint, OUT lp_off smallint, OUT lp_flags smallint, OUT lp_len smallint, OUT t_xmin xid, OUT t_xmax xid, OUT t_field3 integer, OUT t_ctid tid, OUT t_infomask2 integer, OUT t_infomask integer, OUT t_hoff smallint, OUT t_bits text, OUT t_oid oid, OUT t_attrs bytea[] | SETOF record - pageinspect | public | heap_page_item_attrs | page bytea, rel_oid regclass, do_detoast boolean, OUT lp smallint, OUT lp_off smallint, OUT lp_flags smallint, OUT lp_len smallint, OUT t_xmin xid, OUT t_xmax xid, OUT t_field3 integer, OUT t_ctid tid, OUT t_infomask2 integer, OUT t_infomask integer, OUT t_hoff smallint, OUT t_bits text, OUT t_oid oid, OUT t_attrs bytea[] | SETOF record - pageinspect | public | heap_page_items | page bytea, OUT lp smallint, OUT lp_off smallint, OUT lp_flags smallint, OUT lp_len smallint, OUT t_xmin xid, OUT t_xmax xid, OUT t_field3 integer, OUT t_ctid tid, OUT t_infomask2 integer, OUT t_infomask integer, OUT t_hoff smallint, OUT t_bits text, OUT t_oid oid, OUT t_data bytea | SETOF record - pageinspect | public | heap_tuple_infomask_flags | t_infomask integer, t_infomask2 integer, OUT raw_flags text[], OUT combined_flags text[] | record - pageinspect | public | page_checksum | page bytea, blkno bigint | smallint - pageinspect | public | page_header | page bytea, OUT lsn pg_lsn, OUT checksum smallint, OUT flags smallint, OUT lower integer, OUT upper integer, OUT special integer, OUT pagesize integer, OUT version smallint, OUT prune_xid xid | record - pageinspect | public | tuple_data_split | rel_oid oid, t_data bytea, t_infomask integer, t_infomask2 integer, t_bits text | bytea[] - pageinspect | public | tuple_data_split | rel_oid oid, t_data bytea, t_infomask integer, t_infomask2 integer, t_bits text, do_detoast boolean | bytea[] - pg_buffercache | public | pg_buffercache_evict | integer | boolean - pg_buffercache | public | pg_buffercache_pages | | SETOF record - pg_freespacemap | public | pg_freespace | rel regclass, OUT blkno bigint, OUT avail smallint | SETOF record - pg_freespacemap | public | pg_freespace | regclass, bigint | smallint - pg_graphql | graphql | _internal_resolve | query text, variables jsonb, "operationName" text, extensions jsonb | jsonb - pg_graphql | graphql | comment_directive | comment_ text | jsonb - pg_graphql | graphql | exception | message text | text - pg_graphql | graphql | get_schema_version | | integer - pg_graphql | graphql | increment_schema_version | | event_trigger - pg_graphql | graphql | resolve | query text, variables jsonb, "operationName" text, extensions jsonb | jsonb - pg_graphql | graphql_public | graphql | "operationName" text, query text, variables jsonb, extensions jsonb | jsonb - pg_hashids | public | hash_decode | text, text, integer | integer - pg_hashids | public | hash_encode | bigint | text - pg_hashids | public | hash_encode | bigint, text | text - pg_hashids | public | hash_encode | bigint, text, integer | text - pg_hashids | public | id_decode | text | bigint[] - pg_hashids | public | id_decode | text, text | bigint[] - pg_hashids | public | id_decode | text, text, integer, text | bigint[] - pg_hashids | public | id_decode | text, text, integer | bigint[] - pg_hashids | public | id_decode_once | text | bigint - pg_hashids | public | id_decode_once | text, text | bigint - pg_hashids | public | id_decode_once | text, text, integer, text | bigint - pg_hashids | public | id_decode_once | text, text, integer | bigint - pg_hashids | public | id_encode | bigint | text - pg_hashids | public | id_encode | bigint[] | text - pg_hashids | public | id_encode | bigint[], text | text - pg_hashids | public | id_encode | bigint[], text, integer | text - pg_hashids | public | id_encode | bigint, text | text - pg_hashids | public | id_encode | bigint, text, integer | text - pg_hashids | public | id_encode | bigint, text, integer, text | text - pg_hashids | public | id_encode | bigint[], text, integer, text | text - pg_jsonschema | public | json_matches_schema | schema json, instance json | boolean - pg_jsonschema | public | jsonb_matches_schema | schema json, instance jsonb | boolean - pg_jsonschema | public | jsonschema_is_valid | schema json | boolean - pg_jsonschema | public | jsonschema_validation_errors | schema json, instance json | text[] - pg_net | net | _await_response | request_id bigint | boolean - pg_net | net | _encode_url_with_params_array | url text, params_array text[] | text - pg_net | net | _http_collect_response | request_id bigint, async boolean | net.http_response_result - pg_net | net | _urlencode_string | string character varying | text - pg_net | net | check_worker_is_up | | void - pg_net | net | http_collect_response | request_id bigint, async boolean | net.http_response_result - pg_net | net | http_delete | url text, params jsonb, headers jsonb, timeout_milliseconds integer, body jsonb | bigint - pg_net | net | http_get | url text, params jsonb, headers jsonb, timeout_milliseconds integer | bigint - pg_net | net | http_post | url text, body jsonb, params jsonb, headers jsonb, timeout_milliseconds integer | bigint - pg_net | net | wait_until_running | | void - pg_net | net | wake | | void - pg_net | net | worker_restart | | boolean - pg_prewarm | public | autoprewarm_dump_now | | bigint - pg_prewarm | public | autoprewarm_start_worker | | void - pg_prewarm | public | pg_prewarm | regclass, mode text, fork text, first_block bigint, last_block bigint | bigint - pg_repack | repack | conflicted_triggers | oid | SETOF name - pg_repack | repack | create_index_type | oid, oid | void - pg_repack | repack | create_log_table | oid | void - pg_repack | repack | create_table | oid, name | void - pg_repack | repack | disable_autovacuum | regclass | void - pg_repack | repack | get_alter_col_storage | oid | text - pg_repack | repack | get_assign | oid, text | text - pg_repack | repack | get_columns_for_create_as | oid | text - pg_repack | repack | get_compare_pkey | oid, text | text - pg_repack | repack | get_create_index_type | oid, name | text - pg_repack | repack | get_create_trigger | relid oid, pkid oid | text - pg_repack | repack | get_drop_columns | oid, text | text - pg_repack | repack | get_enable_trigger | relid oid | text - pg_repack | repack | get_index_columns | oid | text - pg_repack | repack | get_order_by | oid, oid | text - pg_repack | repack | get_storage_param | oid | text - pg_repack | repack | get_table_and_inheritors | regclass | regclass[] - pg_repack | repack | oid2text | oid | text - pg_repack | repack | repack_apply | sql_peek cstring, sql_insert cstring, sql_delete cstring, sql_update cstring, sql_pop cstring, count integer | integer - pg_repack | repack | repack_drop | oid, integer | void - pg_repack | repack | repack_index_swap | oid | void - pg_repack | repack | repack_indexdef | oid, oid, name, boolean | text - pg_repack | repack | repack_swap | oid | void - pg_repack | repack | repack_trigger | | trigger - pg_repack | repack | version | | text - pg_repack | repack | version_sql | | text - pg_stat_monitor | public | decode_error_level | elevel integer | text - pg_stat_monitor | public | get_cmd_type | cmd_type integer | text - pg_stat_monitor | public | get_histogram_timings | | text - pg_stat_monitor | public | histogram | _bucket integer, _quryid bigint | SETOF record - pg_stat_monitor | public | pg_stat_monitor_internal | showtext boolean, OUT bucket bigint, OUT userid oid, OUT username text, OUT dbid oid, OUT datname text, OUT client_ip bigint, OUT queryid bigint, OUT planid bigint, OUT query text, OUT query_plan text, OUT pgsm_query_id bigint, OUT top_queryid bigint, OUT top_query text, OUT application_name text, OUT relations text, OUT cmd_type integer, OUT elevel integer, OUT sqlcode text, OUT message text, OUT bucket_start_time timestamp with time zone, OUT calls bigint, OUT total_exec_time double precision, OUT min_exec_time double precision, OUT max_exec_time double precision, OUT mean_exec_time double precision, OUT stddev_exec_time double precision, OUT rows bigint, OUT plans bigint, OUT total_plan_time double precision, OUT min_plan_time double precision, OUT max_plan_time double precision, OUT mean_plan_time double precision, OUT stddev_plan_time double precision, OUT shared_blks_hit bigint, OUT shared_blks_read bigint, OUT shared_blks_dirtied bigint, OUT shared_blks_written bigint, OUT local_blks_hit bigint, OUT local_blks_read bigint, OUT local_blks_dirtied bigint, OUT local_blks_written bigint, OUT temp_blks_read bigint, OUT temp_blks_written bigint, OUT shared_blk_read_time double precision, OUT shared_blk_write_time double precision, OUT local_blk_read_time double precision, OUT local_blk_write_time double precision, OUT temp_blk_read_time double precision, OUT temp_blk_write_time double precision, OUT resp_calls text, OUT cpu_user_time double precision, OUT cpu_sys_time double precision, OUT wal_records bigint, OUT wal_fpi bigint, OUT wal_bytes numeric, OUT comments text, OUT jit_functions bigint, OUT jit_generation_time double precision, OUT jit_inlining_count bigint, OUT jit_inlining_time double precision, OUT jit_optimization_count bigint, OUT jit_optimization_time double precision, OUT jit_emission_count bigint, OUT jit_emission_time double precision, OUT jit_deform_count bigint, OUT jit_deform_time double precision, OUT stats_since timestamp with time zone, OUT minmax_stats_since timestamp with time zone, OUT toplevel boolean, OUT bucket_done boolean | SETOF record - pg_stat_monitor | public | pg_stat_monitor_reset | | void - pg_stat_monitor | public | pg_stat_monitor_version | | text - pg_stat_monitor | public | pgsm_create_11_view | | integer - pg_stat_monitor | public | pgsm_create_13_view | | integer - pg_stat_monitor | public | pgsm_create_14_view | | integer - pg_stat_monitor | public | pgsm_create_15_view | | integer - pg_stat_monitor | public | pgsm_create_17_view | | integer - pg_stat_monitor | public | pgsm_create_view | | integer - pg_stat_monitor | public | range | | text[] - pg_stat_statements | extensions | pg_stat_statements | showtext boolean, OUT userid oid, OUT dbid oid, OUT toplevel boolean, OUT queryid bigint, OUT query text, OUT plans bigint, OUT total_plan_time double precision, OUT min_plan_time double precision, OUT max_plan_time double precision, OUT mean_plan_time double precision, OUT stddev_plan_time double precision, OUT calls bigint, OUT total_exec_time double precision, OUT min_exec_time double precision, OUT max_exec_time double precision, OUT mean_exec_time double precision, OUT stddev_exec_time double precision, OUT rows bigint, OUT shared_blks_hit bigint, OUT shared_blks_read bigint, OUT shared_blks_dirtied bigint, OUT shared_blks_written bigint, OUT local_blks_hit bigint, OUT local_blks_read bigint, OUT local_blks_dirtied bigint, OUT local_blks_written bigint, OUT temp_blks_read bigint, OUT temp_blks_written bigint, OUT shared_blk_read_time double precision, OUT shared_blk_write_time double precision, OUT local_blk_read_time double precision, OUT local_blk_write_time double precision, OUT temp_blk_read_time double precision, OUT temp_blk_write_time double precision, OUT wal_records bigint, OUT wal_fpi bigint, OUT wal_bytes numeric, OUT jit_functions bigint, OUT jit_generation_time double precision, OUT jit_inlining_count bigint, OUT jit_inlining_time double precision, OUT jit_optimization_count bigint, OUT jit_optimization_time double precision, OUT jit_emission_count bigint, OUT jit_emission_time double precision, OUT jit_deform_count bigint, OUT jit_deform_time double precision, OUT stats_since timestamp with time zone, OUT minmax_stats_since timestamp with time zone | SETOF record - pg_stat_statements | extensions | pg_stat_statements_info | OUT dealloc bigint, OUT stats_reset timestamp with time zone | record - pg_stat_statements | extensions | pg_stat_statements_reset | userid oid, dbid oid, queryid bigint, minmax_only boolean | timestamp with time zone - pg_surgery | public | heap_force_freeze | reloid regclass, tids tid[] | void - pg_surgery | public | heap_force_kill | reloid regclass, tids tid[] | void - pg_tle | pgtle | available_extension_versions | OUT name name, OUT version text, OUT superuser boolean, OUT trusted boolean, OUT relocatable boolean, OUT schema name, OUT requires name[], OUT comment text | SETOF record - pg_tle | pgtle | available_extensions | OUT name name, OUT default_version text, OUT comment text | SETOF record - pg_tle | pgtle | create_base_type | typenamespace regnamespace, typename name, infunc regprocedure, outfunc regprocedure, internallength integer, alignment text, storage text | void - pg_tle | pgtle | create_base_type_if_not_exists | typenamespace regnamespace, typename name, infunc regprocedure, outfunc regprocedure, internallength integer, alignment text, storage text | boolean - pg_tle | pgtle | create_operator_func | typenamespace regnamespace, typename name, opfunc regprocedure | void - pg_tle | pgtle | create_operator_func_if_not_exists | typenamespace regnamespace, typename name, opfunc regprocedure | boolean - pg_tle | pgtle | create_shell_type | typenamespace regnamespace, typename name | void - pg_tle | pgtle | create_shell_type_if_not_exists | typenamespace regnamespace, typename name | boolean - pg_tle | pgtle | extension_update_paths | name name, OUT source text, OUT target text, OUT path text | SETOF record - pg_tle | pgtle | install_extension | name text, version text, description text, ext text, requires text[] | boolean - pg_tle | pgtle | install_extension_version_sql | name text, version text, ext text | boolean - pg_tle | pgtle | install_update_path | name text, fromvers text, tovers text, ext text | boolean - pg_tle | pgtle | pg_tle_feature_info_sql_drop | | event_trigger - pg_tle | pgtle | register_feature | proc regproc, feature pgtle.pg_tle_features | void - pg_tle | pgtle | register_feature_if_not_exists | proc regproc, feature pgtle.pg_tle_features | boolean - pg_tle | pgtle | set_default_version | name text, version text | boolean - pg_tle | pgtle | uninstall_extension | extname text | boolean - pg_tle | pgtle | uninstall_extension | extname text, version text | boolean - pg_tle | pgtle | uninstall_extension_if_exists | extname text | boolean - pg_tle | pgtle | uninstall_update_path | extname text, fromvers text, tovers text | boolean - pg_tle | pgtle | uninstall_update_path_if_exists | extname text, fromvers text, tovers text | boolean - pg_tle | pgtle | unregister_feature | proc regproc, feature pgtle.pg_tle_features | void - pg_tle | pgtle | unregister_feature_if_exists | proc regproc, feature pgtle.pg_tle_features | boolean - pg_trgm | public | gin_extract_query_trgm | text, internal, smallint, internal, internal, internal, internal | internal - pg_trgm | public | gin_extract_value_trgm | text, internal | internal - pg_trgm | public | gin_trgm_consistent | internal, smallint, text, integer, internal, internal, internal, internal | boolean - pg_trgm | public | gin_trgm_triconsistent | internal, smallint, text, integer, internal, internal, internal | "char" - pg_trgm | public | gtrgm_compress | internal | internal - pg_trgm | public | gtrgm_consistent | internal, text, smallint, oid, internal | boolean - pg_trgm | public | gtrgm_decompress | internal | internal - pg_trgm | public | gtrgm_distance | internal, text, smallint, oid, internal | double precision - pg_trgm | public | gtrgm_in | cstring | gtrgm - pg_trgm | public | gtrgm_options | internal | void - pg_trgm | public | gtrgm_out | gtrgm | cstring - pg_trgm | public | gtrgm_penalty | internal, internal, internal | internal - pg_trgm | public | gtrgm_picksplit | internal, internal | internal - pg_trgm | public | gtrgm_same | gtrgm, gtrgm, internal | internal - pg_trgm | public | gtrgm_union | internal, internal | gtrgm - pg_trgm | public | set_limit | real | real - pg_trgm | public | show_limit | | real - pg_trgm | public | show_trgm | text | text[] - pg_trgm | public | similarity | text, text | real - pg_trgm | public | similarity_dist | text, text | real - pg_trgm | public | similarity_op | text, text | boolean - pg_trgm | public | strict_word_similarity | text, text | real - pg_trgm | public | strict_word_similarity_commutator_op | text, text | boolean - pg_trgm | public | strict_word_similarity_dist_commutator_op | text, text | real - pg_trgm | public | strict_word_similarity_dist_op | text, text | real - pg_trgm | public | strict_word_similarity_op | text, text | boolean - pg_trgm | public | word_similarity | text, text | real - pg_trgm | public | word_similarity_commutator_op | text, text | boolean - pg_trgm | public | word_similarity_dist_commutator_op | text, text | real - pg_trgm | public | word_similarity_dist_op | text, text | real - pg_trgm | public | word_similarity_op | text, text | boolean - pg_visibility | public | pg_check_frozen | regclass, OUT t_ctid tid | SETOF tid - pg_visibility | public | pg_check_visible | regclass, OUT t_ctid tid | SETOF tid - pg_visibility | public | pg_truncate_visibility_map | regclass | void - pg_visibility | public | pg_visibility | regclass, OUT blkno bigint, OUT all_visible boolean, OUT all_frozen boolean, OUT pd_all_visible boolean | SETOF record - pg_visibility | public | pg_visibility | regclass, blkno bigint, OUT all_visible boolean, OUT all_frozen boolean, OUT pd_all_visible boolean | record - pg_visibility | public | pg_visibility_map | regclass, blkno bigint, OUT all_visible boolean, OUT all_frozen boolean | record - pg_visibility | public | pg_visibility_map | regclass, OUT blkno bigint, OUT all_visible boolean, OUT all_frozen boolean | SETOF record - pg_visibility | public | pg_visibility_map_summary | regclass, OUT all_visible bigint, OUT all_frozen bigint | record - pg_walinspect | public | pg_get_wal_record_info | in_lsn pg_lsn, OUT start_lsn pg_lsn, OUT end_lsn pg_lsn, OUT prev_lsn pg_lsn, OUT xid xid, OUT resource_manager text, OUT record_type text, OUT record_length integer, OUT main_data_length integer, OUT fpi_length integer, OUT description text, OUT block_ref text | record - pg_walinspect | public | pg_get_wal_records_info | start_lsn pg_lsn, end_lsn pg_lsn, OUT start_lsn pg_lsn, OUT end_lsn pg_lsn, OUT prev_lsn pg_lsn, OUT xid xid, OUT resource_manager text, OUT record_type text, OUT record_length integer, OUT main_data_length integer, OUT fpi_length integer, OUT description text, OUT block_ref text | SETOF record - pg_walinspect | public | pg_get_wal_stats | start_lsn pg_lsn, end_lsn pg_lsn, per_record boolean, OUT "resource_manager/record_type" text, OUT count bigint, OUT count_percentage double precision, OUT record_size bigint, OUT record_size_percentage double precision, OUT fpi_size bigint, OUT fpi_size_percentage double precision, OUT combined_size bigint, OUT combined_size_percentage double precision | SETOF record - pgaudit | public | pgaudit_ddl_command_end | | event_trigger - pgaudit | public | pgaudit_sql_drop | | event_trigger - pgcrypto | extensions | armor | bytea, text[], text[] | text - pgcrypto | extensions | armor | bytea | text - pgcrypto | extensions | crypt | text, text | text - pgcrypto | extensions | dearmor | text | bytea - pgcrypto | extensions | decrypt | bytea, bytea, text | bytea - pgcrypto | extensions | decrypt_iv | bytea, bytea, bytea, text | bytea - pgcrypto | extensions | digest | text, text | bytea - pgcrypto | extensions | digest | bytea, text | bytea - pgcrypto | extensions | encrypt | bytea, bytea, text | bytea - pgcrypto | extensions | encrypt_iv | bytea, bytea, bytea, text | bytea - pgcrypto | extensions | gen_random_bytes | integer | bytea - pgcrypto | extensions | gen_random_uuid | | uuid - pgcrypto | extensions | gen_salt | text | text - pgcrypto | extensions | gen_salt | text, integer | text - pgcrypto | extensions | hmac | text, text, text | bytea - pgcrypto | extensions | hmac | bytea, bytea, text | bytea - pgcrypto | extensions | pgp_armor_headers | text, OUT key text, OUT value text | SETOF record - pgcrypto | extensions | pgp_key_id | bytea | text - pgcrypto | extensions | pgp_pub_decrypt | bytea, bytea | text - pgcrypto | extensions | pgp_pub_decrypt | bytea, bytea, text, text | text - pgcrypto | extensions | pgp_pub_decrypt | bytea, bytea, text | text - pgcrypto | extensions | pgp_pub_decrypt_bytea | bytea, bytea | bytea - pgcrypto | extensions | pgp_pub_decrypt_bytea | bytea, bytea, text, text | bytea - pgcrypto | extensions | pgp_pub_decrypt_bytea | bytea, bytea, text | bytea - pgcrypto | extensions | pgp_pub_encrypt | text, bytea, text | bytea - pgcrypto | extensions | pgp_pub_encrypt | text, bytea | bytea - pgcrypto | extensions | pgp_pub_encrypt_bytea | bytea, bytea | bytea - pgcrypto | extensions | pgp_pub_encrypt_bytea | bytea, bytea, text | bytea - pgcrypto | extensions | pgp_sym_decrypt | bytea, text | text - pgcrypto | extensions | pgp_sym_decrypt | bytea, text, text | text - pgcrypto | extensions | pgp_sym_decrypt_bytea | bytea, text | bytea - pgcrypto | extensions | pgp_sym_decrypt_bytea | bytea, text, text | bytea - pgcrypto | extensions | pgp_sym_encrypt | text, text | bytea - pgcrypto | extensions | pgp_sym_encrypt | text, text, text | bytea - pgcrypto | extensions | pgp_sym_encrypt_bytea | bytea, text | bytea - pgcrypto | extensions | pgp_sym_encrypt_bytea | bytea, text, text | bytea - pgmq | pgmq | _belongs_to_pgmq | table_name text | boolean - pgmq | pgmq | _ensure_pg_partman_installed | | void - pgmq | pgmq | _extension_exists | extension_name text | boolean - pgmq | pgmq | _get_partition_col | partition_interval text | text - pgmq | pgmq | _get_pg_partman_major_version | | integer - pgmq | pgmq | _get_pg_partman_schema | | text - pgmq | pgmq | archive | queue_name text, msg_id bigint | boolean - pgmq | pgmq | archive | queue_name text, msg_ids bigint[] | SETOF bigint - pgmq | pgmq | convert_archive_partitioned | table_name text, partition_interval text, retention_interval text, leading_partition integer | void - pgmq | pgmq | create | queue_name text | void - pgmq | pgmq | create_non_partitioned | queue_name text | void - pgmq | pgmq | create_partitioned | queue_name text, partition_interval text, retention_interval text | void - pgmq | pgmq | create_unlogged | queue_name text | void - pgmq | pgmq | delete | queue_name text, msg_id bigint | boolean - pgmq | pgmq | delete | queue_name text, msg_ids bigint[] | SETOF bigint - pgmq | pgmq | detach_archive | queue_name text | void - pgmq | pgmq | drop_queue | queue_name text, partitioned boolean | boolean - pgmq | pgmq | drop_queue | queue_name text | boolean - pgmq | pgmq | format_table_name | queue_name text, prefix text | text - pgmq | pgmq | list_queues | | SETOF pgmq.queue_record - pgmq | pgmq | metrics | queue_name text | pgmq.metrics_result - pgmq | pgmq | metrics_all | | SETOF pgmq.metrics_result - pgmq | pgmq | pop | queue_name text | SETOF pgmq.message_record - pgmq | pgmq | purge_queue | queue_name text | bigint - pgmq | pgmq | read | queue_name text, vt integer, qty integer, conditional jsonb | SETOF pgmq.message_record - pgmq | pgmq | read_with_poll | queue_name text, vt integer, qty integer, max_poll_seconds integer, poll_interval_ms integer, conditional jsonb | SETOF pgmq.message_record - pgmq | pgmq | send | queue_name text, msg jsonb, headers jsonb | SETOF bigint - pgmq | pgmq | send | queue_name text, msg jsonb, delay integer | SETOF bigint - pgmq | pgmq | send | queue_name text, msg jsonb, headers jsonb, delay timestamp with time zone | SETOF bigint - pgmq | pgmq | send | queue_name text, msg jsonb, headers jsonb, delay integer | SETOF bigint - pgmq | pgmq | send | queue_name text, msg jsonb | SETOF bigint - pgmq | pgmq | send | queue_name text, msg jsonb, delay timestamp with time zone | SETOF bigint - pgmq | pgmq | send_batch | queue_name text, msgs jsonb[], headers jsonb[] | SETOF bigint - pgmq | pgmq | send_batch | queue_name text, msgs jsonb[], headers jsonb[], delay timestamp with time zone | SETOF bigint - pgmq | pgmq | send_batch | queue_name text, msgs jsonb[], headers jsonb[], delay integer | SETOF bigint - pgmq | pgmq | send_batch | queue_name text, msgs jsonb[] | SETOF bigint - pgmq | pgmq | send_batch | queue_name text, msgs jsonb[], delay timestamp with time zone | SETOF bigint - pgmq | pgmq | send_batch | queue_name text, msgs jsonb[], delay integer | SETOF bigint - pgmq | pgmq | set_vt | queue_name text, msg_id bigint, vt integer | SETOF pgmq.message_record - pgmq | pgmq | validate_queue_name | queue_name text | void - pgroonga | pgroonga | command | groongacommand text | text - pgroonga | pgroonga | command | groongacommand text, arguments text[] | text - pgroonga | pgroonga | command_escape_value | value text | text - pgroonga | pgroonga | contain_varchar_array | character varying[], character varying | boolean - pgroonga | pgroonga | escape | value bigint | text - pgroonga | pgroonga | escape | value double precision | text - pgroonga | pgroonga | escape | value text, special_characters text | text - pgroonga | pgroonga | escape | value timestamp without time zone | text - pgroonga | pgroonga | escape | value smallint | text - pgroonga | pgroonga | escape | value text | text - pgroonga | pgroonga | escape | value timestamp with time zone | text - pgroonga | pgroonga | escape | value real | text - pgroonga | pgroonga | escape | value boolean | text - pgroonga | pgroonga | escape | value integer | text - pgroonga | pgroonga | flush | indexname cstring | boolean - pgroonga | pgroonga | highlight_html | target text, keywords text[] | text - pgroonga | pgroonga | match_in_text | text, text[] | boolean - pgroonga | pgroonga | match_in_text_array | text[], text[] | boolean - pgroonga | pgroonga | match_in_varchar | character varying, character varying[] | boolean - pgroonga | pgroonga | match_jsonb | jsonb, text | boolean - pgroonga | pgroonga | match_positions_byte | target text, keywords text[] | integer[] - pgroonga | pgroonga | match_positions_character | target text, keywords text[] | integer[] - pgroonga | pgroonga | match_query | text, text | boolean - pgroonga | pgroonga | match_query | character varying, character varying | boolean - pgroonga | pgroonga | match_query | text[], text | boolean - pgroonga | pgroonga | match_regexp | text, text | boolean - pgroonga | pgroonga | match_regexp | character varying, character varying | boolean - pgroonga | pgroonga | match_script_jsonb | jsonb, text | boolean - pgroonga | pgroonga | match_term | target text, term text | boolean - pgroonga | pgroonga | match_term | target text[], term text | boolean - pgroonga | pgroonga | match_term | target character varying[], term character varying | boolean - pgroonga | pgroonga | match_term | target character varying, term character varying | boolean - pgroonga | pgroonga | match_text | text, text | boolean - pgroonga | pgroonga | match_text_array | text[], text | boolean - pgroonga | pgroonga | match_varchar | character varying, character varying | boolean - pgroonga | pgroonga | prefix_in_text | text, text[] | boolean - pgroonga | pgroonga | prefix_in_text_array | text[], text[] | boolean - pgroonga | pgroonga | prefix_rk_in_text | text, text[] | boolean - pgroonga | pgroonga | prefix_rk_in_text_array | text[], text[] | boolean - pgroonga | pgroonga | prefix_rk_text | text, text | boolean - pgroonga | pgroonga | prefix_rk_text_array | text[], text | boolean - pgroonga | pgroonga | prefix_text | text, text | boolean - pgroonga | pgroonga | prefix_text_array | text[], text | boolean - pgroonga | pgroonga | query_escape | query text | text - pgroonga | pgroonga | query_expand | tablename cstring, termcolumnname text, synonymscolumnname text, query text | text - pgroonga | pgroonga | query_extract_keywords | query text | text[] - pgroonga | pgroonga | query_in_text | text, text[] | boolean - pgroonga | pgroonga | query_in_text_array | text[], text[] | boolean - pgroonga | pgroonga | query_in_varchar | character varying, character varying[] | boolean - pgroonga | pgroonga | query_jsonb | jsonb, text | boolean - pgroonga | pgroonga | query_text | text, text | boolean - pgroonga | pgroonga | query_text_array | text[], text | boolean - pgroonga | pgroonga | query_varchar | character varying, character varying | boolean - pgroonga | pgroonga | regexp_text | text, text | boolean - pgroonga | pgroonga | regexp_varchar | character varying, character varying | boolean - pgroonga | pgroonga | score | "row" record | double precision - pgroonga | pgroonga | script_jsonb | jsonb, text | boolean - pgroonga | pgroonga | script_text | text, text | boolean - pgroonga | pgroonga | script_text_array | text[], text | boolean - pgroonga | pgroonga | script_varchar | character varying, character varying | boolean - pgroonga | pgroonga | similar_text | text, text | boolean - pgroonga | pgroonga | similar_text_array | text[], text | boolean - pgroonga | pgroonga | similar_varchar | character varying, character varying | boolean - pgroonga | pgroonga | snippet_html | target text, keywords text[], width integer | text[] - pgroonga | pgroonga | table_name | indexname cstring | text - pgroonga | public | pgroonga_command | groongacommand text | text - pgroonga | public | pgroonga_command | groongacommand text, arguments text[] | text - pgroonga | public | pgroonga_command_escape_value | value text | text - pgroonga | public | pgroonga_condition | query text, weights integer[], scorers text[], schema_name text, index_name text, column_name text, fuzzy_max_distance_ratio real | pgroonga_condition - pgroonga | public | pgroonga_contain_varchar_array | character varying[], character varying | boolean - pgroonga | public | pgroonga_equal_query_text_array | targets text[], query text | boolean - pgroonga | public | pgroonga_equal_query_text_array_condition | targets text[], condition pgroonga_condition | boolean - pgroonga | public | pgroonga_equal_query_text_array_condition | targets text[], condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_equal_query_varchar_array | targets character varying[], query text | boolean - pgroonga | public | pgroonga_equal_query_varchar_array_condition | targets character varying[], condition pgroonga_condition | boolean - pgroonga | public | pgroonga_equal_query_varchar_array_condition | targets character varying[], condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_equal_text | target text, other text | boolean - pgroonga | public | pgroonga_equal_text_condition | target text, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_equal_text_condition | target text, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_equal_varchar | target character varying, other character varying | boolean - pgroonga | public | pgroonga_equal_varchar_condition | target character varying, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_equal_varchar_condition | target character varying, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_escape | value bigint | text - pgroonga | public | pgroonga_escape | value double precision | text - pgroonga | public | pgroonga_escape | value text, special_characters text | text - pgroonga | public | pgroonga_escape | value timestamp without time zone | text - pgroonga | public | pgroonga_escape | value smallint | text - pgroonga | public | pgroonga_escape | value text | text - pgroonga | public | pgroonga_escape | value timestamp with time zone | text - pgroonga | public | pgroonga_escape | value real | text - pgroonga | public | pgroonga_escape | value boolean | text - pgroonga | public | pgroonga_escape | value integer | text - pgroonga | public | pgroonga_flush | indexname cstring | boolean - pgroonga | public | pgroonga_handler | internal | index_am_handler - pgroonga | public | pgroonga_highlight_html | target text, keywords text[], indexname cstring | text - pgroonga | public | pgroonga_highlight_html | targets text[], keywords text[], indexname cstring | text[] - pgroonga | public | pgroonga_highlight_html | target text, keywords text[] | text - pgroonga | public | pgroonga_highlight_html | targets text[], keywords text[] | text[] - pgroonga | public | pgroonga_index_column_name | indexname cstring, columnindex integer | text - pgroonga | public | pgroonga_index_column_name | indexname cstring, columnname text | text - pgroonga | public | pgroonga_is_writable | | boolean - pgroonga | public | pgroonga_list_broken_indexes | | SETOF text - pgroonga | public | pgroonga_list_lagged_indexes | | SETOF text - pgroonga | public | pgroonga_match_in_text | text, text[] | boolean - pgroonga | public | pgroonga_match_in_text_array | text[], text[] | boolean - pgroonga | public | pgroonga_match_in_varchar | character varying, character varying[] | boolean - pgroonga | public | pgroonga_match_jsonb | jsonb, text | boolean - pgroonga | public | pgroonga_match_positions_byte | target text, keywords text[], indexname cstring | integer[] - pgroonga | public | pgroonga_match_positions_byte | target text, keywords text[] | integer[] - pgroonga | public | pgroonga_match_positions_character | target text, keywords text[], indexname cstring | integer[] - pgroonga | public | pgroonga_match_positions_character | target text, keywords text[] | integer[] - pgroonga | public | pgroonga_match_query | text, text | boolean - pgroonga | public | pgroonga_match_query | character varying, character varying | boolean - pgroonga | public | pgroonga_match_query | text[], text | boolean - pgroonga | public | pgroonga_match_regexp | text, text | boolean - pgroonga | public | pgroonga_match_regexp | character varying, character varying | boolean - pgroonga | public | pgroonga_match_script_jsonb | jsonb, text | boolean - pgroonga | public | pgroonga_match_term | target text, term text | boolean - pgroonga | public | pgroonga_match_term | target text[], term text | boolean - pgroonga | public | pgroonga_match_term | target character varying[], term character varying | boolean - pgroonga | public | pgroonga_match_term | target character varying, term character varying | boolean - pgroonga | public | pgroonga_match_text | text, text | boolean - pgroonga | public | pgroonga_match_text_array | text[], text | boolean - pgroonga | public | pgroonga_match_text_array_condition | target text[], condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_match_text_array_condition | target text[], condition pgroonga_condition | boolean - pgroonga | public | pgroonga_match_text_array_condition_with_scorers | target text[], condition pgroonga_full_text_search_condition_with_scorers | boolean - pgroonga | public | pgroonga_match_text_condition | target text, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_match_text_condition | target text, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_match_text_condition_with_scorers | target text, condition pgroonga_full_text_search_condition_with_scorers | boolean - pgroonga | public | pgroonga_match_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_match_varchar_condition | target character varying, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_match_varchar_condition | target character varying, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_match_varchar_condition_with_scorers | target character varying, condition pgroonga_full_text_search_condition_with_scorers | boolean - pgroonga | public | pgroonga_normalize | target text | text - pgroonga | public | pgroonga_normalize | target text, normalizername text | text - pgroonga | public | pgroonga_not_prefix_in_text | text, text[] | boolean - pgroonga | public | pgroonga_prefix_in_text | text, text[] | boolean - pgroonga | public | pgroonga_prefix_in_text_array | text[], text[] | boolean - pgroonga | public | pgroonga_prefix_in_varchar | character varying, character varying[] | boolean - pgroonga | public | pgroonga_prefix_in_varchar_array | character varying[], character varying[] | boolean - pgroonga | public | pgroonga_prefix_rk_in_text | text, text[] | boolean - pgroonga | public | pgroonga_prefix_rk_in_text_array | text[], text[] | boolean - pgroonga | public | pgroonga_prefix_rk_in_varchar | character varying, character varying[] | boolean - pgroonga | public | pgroonga_prefix_rk_in_varchar_array | character varying[], character varying[] | boolean - pgroonga | public | pgroonga_prefix_rk_text | text, text | boolean - pgroonga | public | pgroonga_prefix_rk_text_array | text[], text | boolean - pgroonga | public | pgroonga_prefix_rk_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_prefix_rk_varchar_array | character varying[], character varying | boolean - pgroonga | public | pgroonga_prefix_text | text, text | boolean - pgroonga | public | pgroonga_prefix_text_array | text[], text | boolean - pgroonga | public | pgroonga_prefix_text_array_condition | text[], pgroonga_condition | boolean - pgroonga | public | pgroonga_prefix_text_condition | text, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_prefix_text_condition | text, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_prefix_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_prefix_varchar_array | character varying[], character varying | boolean - pgroonga | public | pgroonga_prefix_varchar_array_condition | character varying[], pgroonga_condition | boolean - pgroonga | public | pgroonga_prefix_varchar_condition | target character varying, conditoin pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_prefix_varchar_condition | target character varying, conditoin pgroonga_condition | boolean - pgroonga | public | pgroonga_query_escape | query text | text - pgroonga | public | pgroonga_query_expand | tablename cstring, termcolumnname text, synonymscolumnname text, query text | text - pgroonga | public | pgroonga_query_extract_keywords | query text, index_name text | text[] - pgroonga | public | pgroonga_query_in_text | text, text[] | boolean - pgroonga | public | pgroonga_query_in_text_array | text[], text[] | boolean - pgroonga | public | pgroonga_query_in_varchar | character varying, character varying[] | boolean - pgroonga | public | pgroonga_query_jsonb | jsonb, text | boolean - pgroonga | public | pgroonga_query_text | text, text | boolean - pgroonga | public | pgroonga_query_text_array | text[], text | boolean - pgroonga | public | pgroonga_query_text_array_condition | targets text[], condition pgroonga_condition | boolean - pgroonga | public | pgroonga_query_text_array_condition | targets text[], condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_query_text_array_condition_with_scorers | targets text[], condition pgroonga_full_text_search_condition_with_scorers | boolean - pgroonga | public | pgroonga_query_text_condition | target text, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_query_text_condition | target text, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_query_text_condition_with_scorers | target text, condition pgroonga_full_text_search_condition_with_scorers | boolean - pgroonga | public | pgroonga_query_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_query_varchar_condition | target character varying, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_query_varchar_condition | target character varying, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_query_varchar_condition_with_scorers | target character varying, condition pgroonga_full_text_search_condition_with_scorers | boolean - pgroonga | public | pgroonga_regexp_in_text | text, text[] | boolean - pgroonga | public | pgroonga_regexp_in_varchar | character varying, character varying[] | boolean - pgroonga | public | pgroonga_regexp_text | text, text | boolean - pgroonga | public | pgroonga_regexp_text_array | targets text[], pattern text | boolean - pgroonga | public | pgroonga_regexp_text_array_condition | targets text[], pattern pgroonga_condition | boolean - pgroonga | public | pgroonga_regexp_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_result_to_jsonb_objects | result jsonb | jsonb - pgroonga | public | pgroonga_result_to_recordset | result jsonb | SETOF record - pgroonga | public | pgroonga_score | "row" record | double precision - pgroonga | public | pgroonga_score | tableoid oid, ctid tid | double precision - pgroonga | public | pgroonga_script_jsonb | jsonb, text | boolean - pgroonga | public | pgroonga_script_text | text, text | boolean - pgroonga | public | pgroonga_script_text_array | text[], text | boolean - pgroonga | public | pgroonga_script_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_set_writable | newwritable boolean | boolean - pgroonga | public | pgroonga_similar_text | text, text | boolean - pgroonga | public | pgroonga_similar_text_array | text[], text | boolean - pgroonga | public | pgroonga_similar_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_snippet_html | target text, keywords text[], width integer | text[] - pgroonga | public | pgroonga_table_name | indexname cstring | text - pgroonga | public | pgroonga_tokenize | target text, VARIADIC options text[] | json[] - pgroonga | public | pgroonga_vacuum | | boolean - pgroonga | public | pgroonga_wal_apply | indexname cstring | bigint - pgroonga | public | pgroonga_wal_apply | | bigint - pgroonga | public | pgroonga_wal_set_applied_position | block bigint, "offset" bigint | boolean - pgroonga | public | pgroonga_wal_set_applied_position | indexname cstring, block bigint, "offset" bigint | boolean - pgroonga | public | pgroonga_wal_set_applied_position | indexname cstring | boolean - pgroonga | public | pgroonga_wal_set_applied_position | | boolean - pgroonga | public | pgroonga_wal_status | | TABLE(name text, oid oid, current_block bigint, current_offset bigint, current_size bigint, last_block bigint, last_offset bigint, last_size bigint) - pgroonga | public | pgroonga_wal_truncate | indexname cstring | bigint - pgroonga | public | pgroonga_wal_truncate | | bigint - pgroonga_database | public | pgroonga_database_remove | | boolean - pgrouting | public | _pgr_alphashape | text, alpha double precision, OUT seq1 bigint, OUT textgeom text | SETOF record - pgrouting | public | _pgr_array_reverse | anyarray | anyarray - pgrouting | public | _pgr_articulationpoints | edges_sql text, OUT seq integer, OUT node bigint | SETOF record - pgrouting | public | _pgr_astar | edges_sql text, start_vids anyarray, end_vids anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, only_cost boolean, normal boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_astar | edges_sql text, combinations_sql text, directed boolean, heuristic integer, factor double precision, epsilon double precision, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bdastar | text, text, directed boolean, heuristic integer, factor double precision, epsilon double precision, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bdastar | text, anyarray, anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bddijkstra | text, anyarray, anyarray, directed boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bddijkstra | text, text, directed boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bellmanford | edges_sql text, from_vids anyarray, to_vids anyarray, directed boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bellmanford | edges_sql text, combinations_sql text, directed boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_biconnectedcomponents | edges_sql text, OUT seq bigint, OUT component bigint, OUT edge bigint | SETOF record - pgrouting | public | _pgr_binarybreadthfirstsearch | edges_sql text, combinations_sql text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_binarybreadthfirstsearch | edges_sql text, from_vids anyarray, to_vids anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bipartite | edges_sql text, OUT node bigint, OUT color bigint | SETOF record - pgrouting | public | _pgr_boost_version | | text - pgrouting | public | _pgr_breadthfirstsearch | edges_sql text, from_vids anyarray, max_depth bigint, directed boolean, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bridges | edges_sql text, OUT seq integer, OUT edge bigint | SETOF record - pgrouting | public | _pgr_build_type | | text - pgrouting | public | _pgr_checkcolumn | text, text, text, is_optional boolean, dryrun boolean | boolean - pgrouting | public | _pgr_checkquery | text | text - pgrouting | public | _pgr_checkverttab | vertname text, columnsarr text[], reporterrs integer, fnname text, OUT sname text, OUT vname text | record - pgrouting | public | _pgr_chinesepostman | edges_sql text, only_cost boolean, OUT seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_compilation_date | | text - pgrouting | public | _pgr_compiler_version | | text - pgrouting | public | _pgr_connectedcomponents | edges_sql text, OUT seq bigint, OUT component bigint, OUT node bigint | SETOF record - pgrouting | public | _pgr_contraction | edges_sql text, contraction_order bigint[], max_cycles integer, forbidden_vertices bigint[], directed boolean, OUT type text, OUT id bigint, OUT contracted_vertices bigint[], OUT source bigint, OUT target bigint, OUT cost double precision | SETOF record - pgrouting | public | _pgr_createindex | tabname text, colname text, indext text, reporterrs integer, fnname text | void - pgrouting | public | _pgr_createindex | sname text, tname text, colname text, indext text, reporterrs integer, fnname text | void - pgrouting | public | _pgr_cuthillmckeeordering | text, OUT seq bigint, OUT node bigint | SETOF record - pgrouting | public | _pgr_dagshortestpath | text, anyarray, anyarray, directed boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dagshortestpath | text, text, directed boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_depthfirstsearch | edges_sql text, root_vids anyarray, directed boolean, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstra | edges_sql text, combinations_sql text, directed boolean, only_cost boolean, normal boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstra | edges_sql text, start_vids anyarray, end_vids anyarray, directed boolean, only_cost boolean, normal boolean, n_goals bigint, global boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstra | edges_sql text, combinations_sql text, directed boolean, only_cost boolean, n_goals bigint, global boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstra | edges_sql text, start_vids anyarray, end_vids anyarray, directed boolean, only_cost boolean, normal boolean, n_goals bigint, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstranear | text, anyarray, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstranear | text, anyarray, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstranear | text, bigint, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstravia | edges_sql text, via_vids anyarray, directed boolean, strict boolean, u_turn_on_edge boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | _pgr_drivingdistance | edges_sql text, start_vids anyarray, distance double precision, directed boolean, equicost boolean, OUT seq integer, OUT from_v bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_edgecoloring | edges_sql text, OUT edge_id bigint, OUT color_id bigint | SETOF record - pgrouting | public | _pgr_edgedisjointpaths | text, text, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_edgedisjointpaths | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_edwardmoore | edges_sql text, combinations_sql text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_edwardmoore | edges_sql text, from_vids anyarray, to_vids anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_endpoint | g geometry | geometry - pgrouting | public | _pgr_floydwarshall | edges_sql text, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_get_statement | o_sql text | text - pgrouting | public | _pgr_getcolumnname | tab text, col text, reporterrs integer, fnname text | text - pgrouting | public | _pgr_getcolumnname | sname text, tname text, col text, reporterrs integer, fnname text | text - pgrouting | public | _pgr_getcolumntype | tab text, col text, reporterrs integer, fnname text | text - pgrouting | public | _pgr_getcolumntype | sname text, tname text, cname text, reporterrs integer, fnname text | text - pgrouting | public | _pgr_gettablename | tab text, reporterrs integer, fnname text, OUT sname text, OUT tname text | record - pgrouting | public | _pgr_git_hash | | text - pgrouting | public | _pgr_hawickcircuits | text, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_iscolumnindexed | tab text, col text, reporterrs integer, fnname text | boolean - pgrouting | public | _pgr_iscolumnindexed | sname text, tname text, cname text, reporterrs integer, fnname text | boolean - pgrouting | public | _pgr_iscolumnintable | tab text, col text | boolean - pgrouting | public | _pgr_isplanar | text | boolean - pgrouting | public | _pgr_johnson | edges_sql text, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_kruskal | text, anyarray, fn_suffix text, max_depth bigint, distance double precision, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_ksp | edges_sql text, start_vid bigint, end_vid bigint, k integer, directed boolean, heap_paths boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_lengauertarjandominatortree | edges_sql text, root_vid bigint, OUT seq integer, OUT vid bigint, OUT idom bigint | SETOF record - pgrouting | public | _pgr_lib_version | | text - pgrouting | public | _pgr_linegraph | text, directed boolean, OUT seq integer, OUT source bigint, OUT target bigint, OUT cost double precision, OUT reverse_cost double precision | SETOF record - pgrouting | public | _pgr_linegraphfull | text, OUT seq integer, OUT source bigint, OUT target bigint, OUT cost double precision, OUT edge bigint | SETOF record - pgrouting | public | _pgr_makeconnected | text, OUT seq bigint, OUT start_vid bigint, OUT end_vid bigint | SETOF record - pgrouting | public | _pgr_maxcardinalitymatch | edges_sql text, directed boolean, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint | SETOF record - pgrouting | public | _pgr_maxflow | edges_sql text, combinations_sql text, algorithm integer, only_flow boolean, OUT seq integer, OUT edge_id bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | _pgr_maxflow | edges_sql text, sources anyarray, targets anyarray, algorithm integer, only_flow boolean, OUT seq integer, OUT edge_id bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | _pgr_maxflowmincost | edges_sql text, sources anyarray, targets anyarray, only_cost boolean, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_maxflowmincost | edges_sql text, combinations_sql text, only_cost boolean, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_msg | msgkind integer, fnname text, msg text | void - pgrouting | public | _pgr_onerror | errcond boolean, reporterrs integer, fnname text, msgerr text, hinto text, msgok text | void - pgrouting | public | _pgr_operating_system | | text - pgrouting | public | _pgr_parameter_check | fn text, sql text, big boolean | boolean - pgrouting | public | _pgr_pgsql_version | | text - pgrouting | public | _pgr_pickdeliver | text, text, text, factor double precision, max_cycles integer, initial_sol integer, OUT seq integer, OUT vehicle_seq integer, OUT vehicle_id bigint, OUT stop_seq integer, OUT stop_type integer, OUT stop_id bigint, OUT order_id bigint, OUT cargo double precision, OUT travel_time double precision, OUT arrival_time double precision, OUT wait_time double precision, OUT service_time double precision, OUT departure_time double precision | SETOF record - pgrouting | public | _pgr_pickdelivereuclidean | text, text, factor double precision, max_cycles integer, initial_sol integer, OUT seq integer, OUT vehicle_seq integer, OUT vehicle_id bigint, OUT stop_seq integer, OUT stop_type integer, OUT order_id bigint, OUT cargo double precision, OUT travel_time double precision, OUT arrival_time double precision, OUT wait_time double precision, OUT service_time double precision, OUT departure_time double precision | SETOF record - pgrouting | public | _pgr_pointtoid | point geometry, tolerance double precision, vertname text, srid integer | bigint - pgrouting | public | _pgr_prim | text, anyarray, order_by text, max_depth bigint, distance double precision, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_quote_ident | idname text | text - pgrouting | public | _pgr_sequentialvertexcoloring | edges_sql text, OUT vertex_id bigint, OUT color_id bigint | SETOF record - pgrouting | public | _pgr_startpoint | g geometry | geometry - pgrouting | public | _pgr_stoerwagner | edges_sql text, OUT seq integer, OUT edge bigint, OUT cost double precision, OUT mincut double precision | SETOF record - pgrouting | public | _pgr_strongcomponents | edges_sql text, OUT seq bigint, OUT component bigint, OUT node bigint | SETOF record - pgrouting | public | _pgr_topologicalsort | edges_sql text, OUT seq integer, OUT sorted_v bigint | SETOF record - pgrouting | public | _pgr_transitiveclosure | edges_sql text, OUT seq integer, OUT vid bigint, OUT target_array bigint[] | SETOF record - pgrouting | public | _pgr_trsp | sql text, source_eid integer, source_pos double precision, target_eid integer, target_pos double precision, directed boolean, has_reverse_cost boolean, turn_restrict_sql text, OUT seq integer, OUT id1 integer, OUT id2 integer, OUT cost double precision | SETOF record - pgrouting | public | _pgr_trsp | text, text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_trsp | text, text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_trsp | text, text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_trsp | text, text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_trsp_withpoints | text, text, text, text, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT departure bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_trsp_withpoints | text, text, text, anyarray, anyarray, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT departure bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_trspvia | text, text, anyarray, boolean, boolean, boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | _pgr_trspvia_withpoints | text, text, text, anyarray, boolean, boolean, boolean, character, boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | _pgr_trspviavertices | sql text, vids integer[], directed boolean, has_rcost boolean, turn_restrict_sql text, OUT seq integer, OUT id1 integer, OUT id2 integer, OUT id3 integer, OUT cost double precision | SETOF record - pgrouting | public | _pgr_tsp | matrix_row_sql text, start_id bigint, end_id bigint, max_processing_time double precision, tries_per_temperature integer, max_changes_per_temperature integer, max_consecutive_non_changes integer, initial_temperature double precision, final_temperature double precision, cooling_factor double precision, randomize boolean, OUT seq integer, OUT node bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_tspeuclidean | coordinates_sql text, start_id bigint, end_id bigint, max_processing_time double precision, tries_per_temperature integer, max_changes_per_temperature integer, max_consecutive_non_changes integer, initial_temperature double precision, final_temperature double precision, cooling_factor double precision, randomize boolean, OUT seq integer, OUT node bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_turnrestrictedpath | text, text, bigint, bigint, integer, directed boolean, heap_paths boolean, stop_on_first boolean, strict boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_versionless | v1 text, v2 text | boolean - pgrouting | public | _pgr_vrponedepot | text, text, text, integer, OUT seq integer, OUT vehicle_seq integer, OUT vehicle_id bigint, OUT stop_seq integer, OUT stop_type integer, OUT stop_id bigint, OUT order_id bigint, OUT cargo double precision, OUT travel_time double precision, OUT arrival_time double precision, OUT wait_time double precision, OUT service_time double precision, OUT departure_time double precision | SETOF record - pgrouting | public | _pgr_withpoints | edges_sql text, points_sql text, combinations_sql text, directed boolean, driving_side character, details boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_pid bigint, OUT end_pid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_withpoints | edges_sql text, points_sql text, start_pids anyarray, end_pids anyarray, directed boolean, driving_side character, details boolean, only_cost boolean, normal boolean, OUT seq integer, OUT path_seq integer, OUT start_pid bigint, OUT end_pid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_withpointsdd | edges_sql text, points_sql text, start_pid anyarray, distance double precision, directed boolean, driving_side character, details boolean, equicost boolean, OUT seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_withpointsksp | edges_sql text, points_sql text, start_pid bigint, end_pid bigint, k integer, directed boolean, heap_paths boolean, driving_side character, details boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_withpointsvia | sql text, via_edges bigint[], fraction double precision[], directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | _pgr_withpointsvia | text, text, anyarray, boolean, boolean, boolean, character, boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | _trsp | text, text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _v4trsp | text, text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _v4trsp | text, text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_alphashape | geometry, alpha double precision | geometry - pgrouting | public | pgr_analyzegraph | text, double precision, the_geom text, id text, source text, target text, rows_where text | character varying - pgrouting | public | pgr_analyzeoneway | text, text[], text[], text[], text[], two_way_if_null boolean, oneway text, source text, target text | text - pgrouting | public | pgr_articulationpoints | text, OUT node bigint | SETOF bigint - pgrouting | public | pgr_astar | text, anyarray, bigint, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astar | text, bigint, bigint, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astar | text, bigint, anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astar | text, anyarray, anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astar | text, text, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astarcost | text, anyarray, anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astarcost | text, bigint, anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astarcost | text, text, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astarcost | text, anyarray, bigint, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astarcost | text, bigint, bigint, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astarcostmatrix | text, anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastar | text, bigint, anyarray, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastar | text, anyarray, bigint, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastar | text, anyarray, anyarray, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastar | text, bigint, bigint, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastar | text, text, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastarcost | text, anyarray, anyarray, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastarcost | text, bigint, bigint, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastarcost | text, anyarray, bigint, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastarcost | text, bigint, anyarray, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastarcost | text, text, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastarcostmatrix | text, anyarray, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstra | text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstra | text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstra | text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstra | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstra | text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstracost | text, text, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstracost | text, bigint, bigint, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstracost | text, anyarray, bigint, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstracost | text, anyarray, anyarray, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstracost | text, bigint, anyarray, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstracostmatrix | text, anyarray, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bellmanford | text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bellmanford | text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bellmanford | text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bellmanford | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bellmanford | text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_biconnectedcomponents | text, OUT seq bigint, OUT component bigint, OUT edge bigint | SETOF record - pgrouting | public | pgr_binarybreadthfirstsearch | text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_binarybreadthfirstsearch | text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_binarybreadthfirstsearch | text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_binarybreadthfirstsearch | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_binarybreadthfirstsearch | text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bipartite | text, OUT vertex_id bigint, OUT color_id bigint | SETOF record - pgrouting | public | pgr_boykovkolmogorov | text, anyarray, anyarray, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_boykovkolmogorov | text, text, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_boykovkolmogorov | text, bigint, anyarray, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_boykovkolmogorov | text, bigint, bigint, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_boykovkolmogorov | text, anyarray, bigint, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_breadthfirstsearch | text, anyarray, max_depth bigint, directed boolean, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_breadthfirstsearch | text, bigint, max_depth bigint, directed boolean, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bridges | text, OUT edge bigint | SETOF bigint - pgrouting | public | pgr_chinesepostman | text, OUT seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_chinesepostmancost | text | double precision - pgrouting | public | pgr_connectedcomponents | text, OUT seq bigint, OUT component bigint, OUT node bigint | SETOF record - pgrouting | public | pgr_contraction | text, bigint[], max_cycles integer, forbidden_vertices bigint[], directed boolean, OUT type text, OUT id bigint, OUT contracted_vertices bigint[], OUT source bigint, OUT target bigint, OUT cost double precision | SETOF record - pgrouting | public | pgr_createtopology | text, double precision, the_geom text, id text, source text, target text, rows_where text, clean boolean | character varying - pgrouting | public | pgr_createverticestable | text, the_geom text, source text, target text, rows_where text | text - pgrouting | public | pgr_cuthillmckeeordering | text, OUT seq bigint, OUT node bigint | SETOF record - pgrouting | public | pgr_dagshortestpath | text, anyarray, anyarray, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dagshortestpath | text, bigint, bigint, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dagshortestpath | text, anyarray, bigint, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dagshortestpath | text, text, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dagshortestpath | text, bigint, anyarray, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_degree | text, text, dryrun boolean, OUT node bigint, OUT degree bigint | SETOF record - pgrouting | public | pgr_depthfirstsearch | text, bigint, directed boolean, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_depthfirstsearch | text, anyarray, directed boolean, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstra | text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstra | text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstra | text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstra | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstra | text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstracost | text, text, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstracost | text, bigint, bigint, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstracost | text, anyarray, bigint, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstracost | text, anyarray, anyarray, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstracost | text, bigint, anyarray, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstracostmatrix | text, anyarray, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranear | text, bigint, anyarray, directed boolean, cap bigint, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranear | text, anyarray, bigint, directed boolean, cap bigint, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranear | text, anyarray, anyarray, directed boolean, cap bigint, global boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranear | text, text, directed boolean, cap bigint, global boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranearcost | text, text, directed boolean, cap bigint, global boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranearcost | text, anyarray, anyarray, directed boolean, cap bigint, global boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranearcost | text, bigint, anyarray, directed boolean, cap bigint, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranearcost | text, anyarray, bigint, directed boolean, cap bigint, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstravia | text, anyarray, directed boolean, strict boolean, u_turn_on_edge boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | pgr_drivingdistance | text, bigint, double precision, directed boolean, OUT seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_drivingdistance | text, anyarray, double precision, directed boolean, equicost boolean, OUT seq integer, OUT from_v bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edgecoloring | text, OUT edge_id bigint, OUT color_id bigint | SETOF record - pgrouting | public | pgr_edgedisjointpaths | text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edgedisjointpaths | text, text, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edgedisjointpaths | text, bigint, bigint, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edgedisjointpaths | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edgedisjointpaths | text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edmondskarp | text, anyarray, anyarray, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_edmondskarp | text, text, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_edmondskarp | text, bigint, anyarray, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_edmondskarp | text, bigint, bigint, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_edmondskarp | text, anyarray, bigint, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_edwardmoore | text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edwardmoore | text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edwardmoore | text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edwardmoore | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edwardmoore | text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_extractvertices | text, dryrun boolean, OUT id bigint, OUT in_edges bigint[], OUT out_edges bigint[], OUT x double precision, OUT y double precision, OUT geom geometry | SETOF record - pgrouting | public | pgr_findcloseedges | text, geometry[], double precision, cap integer, partial boolean, dryrun boolean, OUT edge_id bigint, OUT fraction double precision, OUT side character, OUT distance double precision, OUT geom geometry, OUT edge geometry | SETOF record - pgrouting | public | pgr_findcloseedges | text, geometry, double precision, cap integer, partial boolean, dryrun boolean, OUT edge_id bigint, OUT fraction double precision, OUT side character, OUT distance double precision, OUT geom geometry, OUT edge geometry | SETOF record - pgrouting | public | pgr_floydwarshall | text, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_full_version | OUT version text, OUT build_type text, OUT compile_date text, OUT library text, OUT system text, OUT postgresql text, OUT compiler text, OUT boost text, OUT hash text | record - pgrouting | public | pgr_hawickcircuits | text, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_isplanar | text | boolean - pgrouting | public | pgr_johnson | text, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskal | text, OUT edge bigint, OUT cost double precision | SETOF record - pgrouting | public | pgr_kruskalbfs | text, anyarray, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskalbfs | text, bigint, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskaldd | text, bigint, double precision, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskaldd | text, bigint, numeric, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskaldd | text, anyarray, double precision, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskaldd | text, anyarray, numeric, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskaldfs | text, anyarray, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskaldfs | text, bigint, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_ksp | text, bigint, bigint, integer, directed boolean, heap_paths boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_lengauertarjandominatortree | text, bigint, OUT seq integer, OUT vertex_id bigint, OUT idom bigint | SETOF record - pgrouting | public | pgr_linegraph | text, directed boolean, OUT seq integer, OUT source bigint, OUT target bigint, OUT cost double precision, OUT reverse_cost double precision | SETOF record - pgrouting | public | pgr_linegraphfull | text, OUT seq integer, OUT source bigint, OUT target bigint, OUT cost double precision, OUT edge bigint | SETOF record - pgrouting | public | pgr_makeconnected | text, OUT seq bigint, OUT start_vid bigint, OUT end_vid bigint | SETOF record - pgrouting | public | pgr_maxcardinalitymatch | text, directed boolean, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint | SETOF record - pgrouting | public | pgr_maxcardinalitymatch | text, OUT edge bigint | SETOF bigint - pgrouting | public | pgr_maxflow | text, anyarray, anyarray | bigint - pgrouting | public | pgr_maxflow | text, text | bigint - pgrouting | public | pgr_maxflow | text, bigint, anyarray | bigint - pgrouting | public | pgr_maxflow | text, anyarray, bigint | bigint - pgrouting | public | pgr_maxflow | text, bigint, bigint | bigint - pgrouting | public | pgr_maxflowmincost | text, text, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_maxflowmincost | text, bigint, anyarray, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_maxflowmincost | text, anyarray, bigint, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_maxflowmincost | text, anyarray, anyarray, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_maxflowmincost | text, bigint, bigint, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_maxflowmincost_cost | text, anyarray, anyarray | double precision - pgrouting | public | pgr_maxflowmincost_cost | text, text | double precision - pgrouting | public | pgr_maxflowmincost_cost | text, bigint, anyarray | double precision - pgrouting | public | pgr_maxflowmincost_cost | text, anyarray, bigint | double precision - pgrouting | public | pgr_maxflowmincost_cost | text, bigint, bigint | double precision - pgrouting | public | pgr_nodenetwork | text, double precision, id text, the_geom text, table_ending text, rows_where text, outall boolean | text - pgrouting | public | pgr_pickdeliver | text, text, text, factor double precision, max_cycles integer, initial_sol integer, OUT seq integer, OUT vehicle_seq integer, OUT vehicle_id bigint, OUT stop_seq integer, OUT stop_type integer, OUT stop_id bigint, OUT order_id bigint, OUT cargo double precision, OUT travel_time double precision, OUT arrival_time double precision, OUT wait_time double precision, OUT service_time double precision, OUT departure_time double precision | SETOF record - pgrouting | public | pgr_pickdelivereuclidean | text, text, factor double precision, max_cycles integer, initial_sol integer, OUT seq integer, OUT vehicle_seq integer, OUT vehicle_id bigint, OUT stop_seq integer, OUT stop_type integer, OUT order_id bigint, OUT cargo double precision, OUT travel_time double precision, OUT arrival_time double precision, OUT wait_time double precision, OUT service_time double precision, OUT departure_time double precision | SETOF record - pgrouting | public | pgr_prim | text, OUT edge bigint, OUT cost double precision | SETOF record - pgrouting | public | pgr_primbfs | text, anyarray, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primbfs | text, bigint, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primdd | text, bigint, double precision, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primdd | text, bigint, numeric, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primdd | text, anyarray, double precision, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primdd | text, anyarray, numeric, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primdfs | text, anyarray, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primdfs | text, bigint, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_pushrelabel | text, anyarray, anyarray, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_pushrelabel | text, text, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_pushrelabel | text, bigint, anyarray, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_pushrelabel | text, bigint, bigint, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_pushrelabel | text, anyarray, bigint, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_sequentialvertexcoloring | text, OUT vertex_id bigint, OUT color_id bigint | SETOF record - pgrouting | public | pgr_stoerwagner | text, OUT seq integer, OUT edge bigint, OUT cost double precision, OUT mincut double precision | SETOF record - pgrouting | public | pgr_strongcomponents | text, OUT seq bigint, OUT component bigint, OUT node bigint | SETOF record - pgrouting | public | pgr_topologicalsort | text, OUT seq integer, OUT sorted_v bigint | SETOF record - pgrouting | public | pgr_transitiveclosure | text, OUT seq integer, OUT vid bigint, OUT target_array bigint[] | SETOF record - pgrouting | public | pgr_trsp | text, text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp | text, text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp | text, text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp | text, text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp | text, integer, double precision, integer, double precision, boolean, boolean, turn_restrict_sql text, OUT seq integer, OUT id1 integer, OUT id2 integer, OUT cost double precision | SETOF record - pgrouting | public | pgr_trsp | text, integer, integer, boolean, boolean, restrictions_sql text, OUT seq integer, OUT id1 integer, OUT id2 integer, OUT cost double precision | SETOF record - pgrouting | public | pgr_trsp | text, text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp_withpoints | text, text, text, anyarray, bigint, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp_withpoints | text, text, text, bigint, anyarray, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp_withpoints | text, text, text, anyarray, anyarray, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp_withpoints | text, text, text, bigint, bigint, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp_withpoints | text, text, text, text, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trspvia | text, text, anyarray, directed boolean, strict boolean, u_turn_on_edge boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | pgr_trspvia_withpoints | text, text, text, anyarray, directed boolean, strict boolean, u_turn_on_edge boolean, driving_side character, details boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | pgr_trspviaedges | text, integer[], double precision[], boolean, boolean, turn_restrict_sql text, OUT seq integer, OUT id1 integer, OUT id2 integer, OUT id3 integer, OUT cost double precision | SETOF record - pgrouting | public | pgr_trspviavertices | text, anyarray, boolean, boolean, restrictions_sql text, OUT seq integer, OUT id1 integer, OUT id2 integer, OUT id3 integer, OUT cost double precision | SETOF record - pgrouting | public | pgr_tsp | text, start_id bigint, end_id bigint, max_processing_time double precision, tries_per_temperature integer, max_changes_per_temperature integer, max_consecutive_non_changes integer, initial_temperature double precision, final_temperature double precision, cooling_factor double precision, randomize boolean, OUT seq integer, OUT node bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_tspeuclidean | text, start_id bigint, end_id bigint, max_processing_time double precision, tries_per_temperature integer, max_changes_per_temperature integer, max_consecutive_non_changes integer, initial_temperature double precision, final_temperature double precision, cooling_factor double precision, randomize boolean, OUT seq integer, OUT node bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_turnrestrictedpath | text, text, bigint, bigint, integer, directed boolean, heap_paths boolean, stop_on_first boolean, strict boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_version | | text - pgrouting | public | pgr_vrponedepot | text, text, text, integer, OUT oid integer, OUT opos integer, OUT vid integer, OUT tarrival integer, OUT tdepart integer | SETOF record - pgrouting | public | pgr_withpoints | text, text, anyarray, bigint, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_pid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpoints | text, text, bigint, anyarray, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT end_pid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpoints | text, text, text, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_pid bigint, OUT end_pid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpoints | text, text, bigint, bigint, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpoints | text, text, anyarray, anyarray, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_pid bigint, OUT end_pid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointscost | text, text, text, directed boolean, driving_side character, OUT start_pid bigint, OUT end_pid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointscost | text, text, bigint, bigint, directed boolean, driving_side character, OUT start_pid bigint, OUT end_pid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointscost | text, text, anyarray, anyarray, directed boolean, driving_side character, OUT start_pid bigint, OUT end_pid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointscost | text, text, anyarray, bigint, directed boolean, driving_side character, OUT start_pid bigint, OUT end_pid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointscost | text, text, bigint, anyarray, directed boolean, driving_side character, OUT start_pid bigint, OUT end_pid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointscostmatrix | text, text, anyarray, directed boolean, driving_side character, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointsdd | text, text, bigint, double precision, directed boolean, driving_side character, details boolean, OUT seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointsdd | text, text, anyarray, double precision, directed boolean, driving_side character, details boolean, equicost boolean, OUT seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointsksp | text, text, bigint, bigint, integer, directed boolean, heap_paths boolean, driving_side character, details boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointsvia | text, text, anyarray, directed boolean, strict boolean, u_turn_on_edge boolean, driving_side character, details boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrowlocks | public | pgrowlocks | relname text, OUT locked_row tid, OUT locker xid, OUT multi boolean, OUT xids xid[], OUT modes text[], OUT pids integer[] | SETOF record - pgsodium | pgsodium | create_key | key_type pgsodium.key_type, name text, raw_key bytea, raw_key_nonce bytea, parent_key uuid, key_context bytea, expires timestamp with time zone, associated_data text | pgsodium.valid_key - pgsodium | pgsodium | create_mask_view | relid oid, debug boolean | void - pgsodium | pgsodium | create_mask_view | relid oid, subid integer, debug boolean | void - pgsodium | pgsodium | crypto_aead_det_decrypt | message bytea, additional bytea, key_uuid uuid, nonce bytea | bytea - pgsodium | pgsodium | crypto_aead_det_decrypt | message bytea, additional bytea, key_id bigint, context bytea, nonce bytea | bytea - pgsodium | pgsodium | crypto_aead_det_decrypt | message bytea, additional bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_aead_det_decrypt | ciphertext bytea, additional bytea, key bytea, nonce bytea | bytea - pgsodium | pgsodium | crypto_aead_det_encrypt | message bytea, additional bytea, key_uuid uuid, nonce bytea | bytea - pgsodium | pgsodium | crypto_aead_det_encrypt | message bytea, additional bytea, key_id bigint, context bytea, nonce bytea | bytea - pgsodium | pgsodium | crypto_aead_det_encrypt | message bytea, additional bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_aead_det_encrypt | message bytea, additional bytea, key bytea, nonce bytea | bytea - pgsodium | pgsodium | crypto_aead_det_keygen | | bytea - pgsodium | pgsodium | crypto_aead_det_noncegen | | bytea - pgsodium | pgsodium | crypto_aead_ietf_decrypt | message bytea, additional bytea, nonce bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_aead_ietf_decrypt | message bytea, additional bytea, nonce bytea, key bytea | bytea - pgsodium | pgsodium | crypto_aead_ietf_decrypt | message bytea, additional bytea, nonce bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_aead_ietf_encrypt | message bytea, additional bytea, nonce bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_aead_ietf_encrypt | message bytea, additional bytea, nonce bytea, key bytea | bytea - pgsodium | pgsodium | crypto_aead_ietf_encrypt | message bytea, additional bytea, nonce bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_aead_ietf_keygen | | bytea - pgsodium | pgsodium | crypto_aead_ietf_noncegen | | bytea - pgsodium | pgsodium | crypto_auth | message bytea, key bytea | bytea - pgsodium | pgsodium | crypto_auth | message bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_auth | message bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_auth_hmacsha256 | message bytea, secret bytea | bytea - pgsodium | pgsodium | crypto_auth_hmacsha256 | message bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_auth_hmacsha256 | message bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_auth_hmacsha256_keygen | | bytea - pgsodium | pgsodium | crypto_auth_hmacsha256_verify | hash bytea, message bytea, key_id bigint, context bytea | boolean - pgsodium | pgsodium | crypto_auth_hmacsha256_verify | signature bytea, message bytea, key_uuid uuid | boolean - pgsodium | pgsodium | crypto_auth_hmacsha256_verify | hash bytea, message bytea, secret bytea | boolean - pgsodium | pgsodium | crypto_auth_hmacsha512 | message bytea, secret bytea | bytea - pgsodium | pgsodium | crypto_auth_hmacsha512 | message bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_auth_hmacsha512 | message bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_auth_hmacsha512_keygen | | bytea - pgsodium | pgsodium | crypto_auth_hmacsha512_verify | hash bytea, message bytea, key_id bigint, context bytea | boolean - pgsodium | pgsodium | crypto_auth_hmacsha512_verify | signature bytea, message bytea, key_uuid uuid | boolean - pgsodium | pgsodium | crypto_auth_hmacsha512_verify | hash bytea, message bytea, secret bytea | boolean - pgsodium | pgsodium | crypto_auth_keygen | | bytea - pgsodium | pgsodium | crypto_auth_verify | mac bytea, message bytea, key_uuid uuid | boolean - pgsodium | pgsodium | crypto_auth_verify | mac bytea, message bytea, key bytea | boolean - pgsodium | pgsodium | crypto_auth_verify | mac bytea, message bytea, key_id bigint, context bytea | boolean - pgsodium | pgsodium | crypto_box | message bytea, nonce bytea, public bytea, secret bytea | bytea - pgsodium | pgsodium | crypto_box_new_keypair | | pgsodium.crypto_box_keypair - pgsodium | pgsodium | crypto_box_new_seed | | bytea - pgsodium | pgsodium | crypto_box_noncegen | | bytea - pgsodium | pgsodium | crypto_box_open | ciphertext bytea, nonce bytea, public bytea, secret bytea | bytea - pgsodium | pgsodium | crypto_box_seal | message bytea, public_key bytea | bytea - pgsodium | pgsodium | crypto_box_seal_open | ciphertext bytea, public_key bytea, secret_key bytea | bytea - pgsodium | pgsodium | crypto_box_seed_new_keypair | seed bytea | pgsodium.crypto_box_keypair - pgsodium | pgsodium | crypto_cmp | text, text | boolean - pgsodium | pgsodium | crypto_generichash | message bytea, key bigint, context bytea | bytea - pgsodium | pgsodium | crypto_generichash | message bytea, key bytea | bytea - pgsodium | pgsodium | crypto_generichash | message bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_generichash_keygen | | bytea - pgsodium | pgsodium | crypto_hash_sha256 | message bytea | bytea - pgsodium | pgsodium | crypto_hash_sha512 | message bytea | bytea - pgsodium | pgsodium | crypto_kdf_derive_from_key | subkey_size integer, subkey_id bigint, context bytea, primary_key uuid | bytea - pgsodium | pgsodium | crypto_kdf_derive_from_key | subkey_size bigint, subkey_id bigint, context bytea, primary_key bytea | bytea - pgsodium | pgsodium | crypto_kdf_keygen | | bytea - pgsodium | pgsodium | crypto_kx_client_session_keys | client_pk bytea, client_sk bytea, server_pk bytea | pgsodium.crypto_kx_session - pgsodium | pgsodium | crypto_kx_new_keypair | | pgsodium.crypto_kx_keypair - pgsodium | pgsodium | crypto_kx_new_seed | | bytea - pgsodium | pgsodium | crypto_kx_seed_new_keypair | seed bytea | pgsodium.crypto_kx_keypair - pgsodium | pgsodium | crypto_kx_server_session_keys | server_pk bytea, server_sk bytea, client_pk bytea | pgsodium.crypto_kx_session - pgsodium | pgsodium | crypto_pwhash | password bytea, salt bytea | bytea - pgsodium | pgsodium | crypto_pwhash_saltgen | | bytea - pgsodium | pgsodium | crypto_pwhash_str | password bytea | bytea - pgsodium | pgsodium | crypto_pwhash_str_verify | hashed_password bytea, password bytea | boolean - pgsodium | pgsodium | crypto_secretbox | message bytea, nonce bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_secretbox | message bytea, nonce bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_secretbox | message bytea, nonce bytea, key bytea | bytea - pgsodium | pgsodium | crypto_secretbox_keygen | | bytea - pgsodium | pgsodium | crypto_secretbox_noncegen | | bytea - pgsodium | pgsodium | crypto_secretbox_open | ciphertext bytea, nonce bytea, key bytea | bytea - pgsodium | pgsodium | crypto_secretbox_open | message bytea, nonce bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_secretbox_open | message bytea, nonce bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_secretstream_keygen | | bytea - pgsodium | pgsodium | crypto_shorthash | message bytea, key bigint, context bytea | bytea - pgsodium | pgsodium | crypto_shorthash | message bytea, key bytea | bytea - pgsodium | pgsodium | crypto_shorthash | message bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_shorthash_keygen | | bytea - pgsodium | pgsodium | crypto_sign | message bytea, key bytea | bytea - pgsodium | pgsodium | crypto_sign_detached | message bytea, key bytea | bytea - pgsodium | pgsodium | crypto_sign_final_create | state bytea, key bytea | bytea - pgsodium | pgsodium | crypto_sign_final_verify | state bytea, signature bytea, key bytea | boolean - pgsodium | pgsodium | crypto_sign_init | | bytea - pgsodium | pgsodium | crypto_sign_new_keypair | | pgsodium.crypto_sign_keypair - pgsodium | pgsodium | crypto_sign_new_seed | | bytea - pgsodium | pgsodium | crypto_sign_open | signed_message bytea, key bytea | bytea - pgsodium | pgsodium | crypto_sign_seed_new_keypair | seed bytea | pgsodium.crypto_sign_keypair - pgsodium | pgsodium | crypto_sign_update | state bytea, message bytea | bytea - pgsodium | pgsodium | crypto_sign_update_agg | message bytea | bytea - pgsodium | pgsodium | crypto_sign_update_agg | state bytea, message bytea | bytea - pgsodium | pgsodium | crypto_sign_update_agg1 | state bytea, message bytea | bytea - pgsodium | pgsodium | crypto_sign_update_agg2 | cur_state bytea, initial_state bytea, message bytea | bytea - pgsodium | pgsodium | crypto_sign_verify_detached | sig bytea, message bytea, key bytea | boolean - pgsodium | pgsodium | crypto_signcrypt_new_keypair | | pgsodium.crypto_signcrypt_keypair - pgsodium | pgsodium | crypto_signcrypt_sign_after | state bytea, sender_sk bytea, ciphertext bytea | bytea - pgsodium | pgsodium | crypto_signcrypt_sign_before | sender bytea, recipient bytea, sender_sk bytea, recipient_pk bytea, additional bytea | pgsodium.crypto_signcrypt_state_key - pgsodium | pgsodium | crypto_signcrypt_verify_after | state bytea, signature bytea, sender_pk bytea, ciphertext bytea | boolean - pgsodium | pgsodium | crypto_signcrypt_verify_before | signature bytea, sender bytea, recipient bytea, additional bytea, sender_pk bytea, recipient_sk bytea | pgsodium.crypto_signcrypt_state_key - pgsodium | pgsodium | crypto_signcrypt_verify_public | signature bytea, sender bytea, recipient bytea, additional bytea, sender_pk bytea, ciphertext bytea | boolean - pgsodium | pgsodium | crypto_stream_xchacha20 | bigint, bytea, bytea | bytea - pgsodium | pgsodium | crypto_stream_xchacha20 | bigint, bytea, bigint, context bytea | bytea - pgsodium | pgsodium | crypto_stream_xchacha20_keygen | | bytea - pgsodium | pgsodium | crypto_stream_xchacha20_noncegen | | bytea - pgsodium | pgsodium | crypto_stream_xchacha20_xor | bytea, bytea, bigint, context bytea | bytea - pgsodium | pgsodium | crypto_stream_xchacha20_xor | bytea, bytea, bytea | bytea - pgsodium | pgsodium | crypto_stream_xchacha20_xor_ic | bytea, bytea, bigint, bigint, context bytea | bytea - pgsodium | pgsodium | crypto_stream_xchacha20_xor_ic | bytea, bytea, bigint, bytea | bytea - pgsodium | pgsodium | decrypted_columns | relid oid | text - pgsodium | pgsodium | derive_key | key_id bigint, key_len integer, context bytea | bytea - pgsodium | pgsodium | disable_security_label_trigger | | void - pgsodium | pgsodium | enable_security_label_trigger | | void - pgsodium | pgsodium | encrypted_column | relid oid, m record | text - pgsodium | pgsodium | encrypted_columns | relid oid | text - pgsodium | pgsodium | get_key_by_id | uuid | pgsodium.valid_key - pgsodium | pgsodium | get_key_by_name | text | pgsodium.valid_key - pgsodium | pgsodium | get_named_keys | filter text | SETOF pgsodium.valid_key - pgsodium | pgsodium | has_mask | role regrole, source_name text | boolean - pgsodium | pgsodium | key_encrypt_secret_raw_key | | trigger - pgsodium | pgsodium | mask_columns | source_relid oid | TABLE(attname name, key_id text, key_id_column text, associated_column text, nonce_column text, format_type text) - pgsodium | pgsodium | mask_role | masked_role regrole, source_name text, view_name text | void - pgsodium | pgsodium | pgsodium_derive | key_id bigint, key_len integer, context bytea | bytea - pgsodium | pgsodium | quote_assoc | text, boolean | text - pgsodium | pgsodium | randombytes_buf | size integer | bytea - pgsodium | pgsodium | randombytes_buf_deterministic | size integer, seed bytea | bytea - pgsodium | pgsodium | randombytes_new_seed | | bytea - pgsodium | pgsodium | randombytes_random | | integer - pgsodium | pgsodium | randombytes_uniform | upper_bound integer | integer - pgsodium | pgsodium | sodium_base642bin | base64 text | bytea - pgsodium | pgsodium | sodium_bin2base64 | bin bytea | text - pgsodium | pgsodium | trg_mask_update | | event_trigger - pgsodium | pgsodium | update_mask | target oid, debug boolean | void - pgsodium | pgsodium | update_masks | debug boolean | void - pgsodium | pgsodium | version | | text - pgstattuple | public | pg_relpages | relname text | bigint - pgstattuple | public | pg_relpages | relname regclass | bigint - pgstattuple | public | pgstatginindex | relname regclass, OUT version integer, OUT pending_pages integer, OUT pending_tuples bigint | record - pgstattuple | public | pgstathashindex | relname regclass, OUT version integer, OUT bucket_pages bigint, OUT overflow_pages bigint, OUT bitmap_pages bigint, OUT unused_pages bigint, OUT live_items bigint, OUT dead_items bigint, OUT free_percent double precision | record - pgstattuple | public | pgstatindex | relname regclass, OUT version integer, OUT tree_level integer, OUT index_size bigint, OUT root_block_no bigint, OUT internal_pages bigint, OUT leaf_pages bigint, OUT empty_pages bigint, OUT deleted_pages bigint, OUT avg_leaf_density double precision, OUT leaf_fragmentation double precision | record - pgstattuple | public | pgstatindex | relname text, OUT version integer, OUT tree_level integer, OUT index_size bigint, OUT root_block_no bigint, OUT internal_pages bigint, OUT leaf_pages bigint, OUT empty_pages bigint, OUT deleted_pages bigint, OUT avg_leaf_density double precision, OUT leaf_fragmentation double precision | record - pgstattuple | public | pgstattuple | reloid regclass, OUT table_len bigint, OUT tuple_count bigint, OUT tuple_len bigint, OUT tuple_percent double precision, OUT dead_tuple_count bigint, OUT dead_tuple_len bigint, OUT dead_tuple_percent double precision, OUT free_space bigint, OUT free_percent double precision | record - pgstattuple | public | pgstattuple | relname text, OUT table_len bigint, OUT tuple_count bigint, OUT tuple_len bigint, OUT tuple_percent double precision, OUT dead_tuple_count bigint, OUT dead_tuple_len bigint, OUT dead_tuple_percent double precision, OUT free_space bigint, OUT free_percent double precision | record - pgstattuple | public | pgstattuple_approx | reloid regclass, OUT table_len bigint, OUT scanned_percent double precision, OUT approx_tuple_count bigint, OUT approx_tuple_len bigint, OUT approx_tuple_percent double precision, OUT dead_tuple_count bigint, OUT dead_tuple_len bigint, OUT dead_tuple_percent double precision, OUT approx_free_space bigint, OUT approx_free_percent double precision | record - pgtap | public | _add | text, integer | integer - pgtap | public | _add | text, integer, text | integer - pgtap | public | _alike | boolean, anyelement, text, text | text - pgtap | public | _ancestor_of | name, name, integer | boolean - pgtap | public | _ancestor_of | name, name, name, name, integer | boolean - pgtap | public | _are | text, name[], name[], text | text - pgtap | public | _areni | text, text[], text[], text | text - pgtap | public | _array_to_sorted_string | name[], text | text - pgtap | public | _assets_are | text, text[], text[], text | text - pgtap | public | _cast_exists | name, name, name, name | boolean - pgtap | public | _cast_exists | name, name | boolean - pgtap | public | _cast_exists | name, name, name | boolean - pgtap | public | _cdi | name, name, anyelement | text - pgtap | public | _cdi | name, name, anyelement, text | text - pgtap | public | _cdi | name, name, name, anyelement, text | text - pgtap | public | _cexists | name, name | boolean - pgtap | public | _cexists | name, name, name | boolean - pgtap | public | _ckeys | name, character | name[] - pgtap | public | _ckeys | name, name, character | name[] - pgtap | public | _cleanup | | boolean - pgtap | public | _cmp_types | oid, name | boolean - pgtap | public | _col_is_null | name, name, name, text, boolean | text - pgtap | public | _col_is_null | name, name, text, boolean | text - pgtap | public | _constraint | name, character, name[], text, text | text - pgtap | public | _constraint | name, name, character, name[], text, text | text - pgtap | public | _contract_on | text | "char" - pgtap | public | _currtest | | integer - pgtap | public | _db_privs | | name[] - pgtap | public | _def_is | text, text, anyelement, text | text - pgtap | public | _definer | name, name, name[] | boolean - pgtap | public | _definer | name, name[] | boolean - pgtap | public | _definer | name | boolean - pgtap | public | _definer | name, name | boolean - pgtap | public | _dexists | name | boolean - pgtap | public | _dexists | name, name | boolean - pgtap | public | _do_ne | text, text, text, text | text - pgtap | public | _docomp | text, text, text, text | text - pgtap | public | _error_diag | text, text, text, text, text, text, text, text, text, text | text - pgtap | public | _expand_context | character | text - pgtap | public | _expand_on | character | text - pgtap | public | _expand_vol | character | text - pgtap | public | _ext_exists | name | boolean - pgtap | public | _ext_exists | name, name | boolean - pgtap | public | _extensions | name | SETOF name - pgtap | public | _extensions | | SETOF name - pgtap | public | _extras | character, name, name[] | name[] - pgtap | public | _extras | character[], name[] | name[] - pgtap | public | _extras | character, name[] | name[] - pgtap | public | _extras | character[], name, name[] | name[] - pgtap | public | _finish | integer, integer, integer, boolean | SETOF text - pgtap | public | _fkexists | name, name, name[] | boolean - pgtap | public | _fkexists | name, name[] | boolean - pgtap | public | _fprivs_are | text, name, name[], text | text - pgtap | public | _func_compare | name, name, boolean, text | text - pgtap | public | _func_compare | name, name, name[], anyelement, anyelement, text | text - pgtap | public | _func_compare | name, name, name[], boolean, text | text - pgtap | public | _func_compare | name, name, anyelement, anyelement, text | text - pgtap | public | _funkargs | name[] | text - pgtap | public | _get | text | integer - pgtap | public | _get_ac_privs | name, text | text[] - pgtap | public | _get_col_ns_type | name, name, name | text - pgtap | public | _get_col_privs | name, text, name | text[] - pgtap | public | _get_col_type | name, name | text - pgtap | public | _get_col_type | name, name, name | text - pgtap | public | _get_context | name, name | "char" - pgtap | public | _get_db_owner | name | name - pgtap | public | _get_db_privs | name, text | text[] - pgtap | public | _get_dtype | name, text, boolean | text - pgtap | public | _get_dtype | name | text - pgtap | public | _get_fdw_privs | name, text | text[] - pgtap | public | _get_func_owner | name, name, name[] | name - pgtap | public | _get_func_owner | name, name[] | name - pgtap | public | _get_func_privs | text, text | text[] - pgtap | public | _get_index_owner | name, name | name - pgtap | public | _get_index_owner | name, name, name | name - pgtap | public | _get_lang_privs | name, text | text[] - pgtap | public | _get_language_owner | name | name - pgtap | public | _get_latest | text | integer[] - pgtap | public | _get_latest | text, integer | integer - pgtap | public | _get_note | integer | text - pgtap | public | _get_note | text | text - pgtap | public | _get_opclass_owner | name | name - pgtap | public | _get_opclass_owner | name, name | name - pgtap | public | _get_rel_owner | character[], name, name | name - pgtap | public | _get_rel_owner | character, name | name - pgtap | public | _get_rel_owner | name | name - pgtap | public | _get_rel_owner | name, name | name - pgtap | public | _get_rel_owner | character[], name | name - pgtap | public | _get_rel_owner | character, name, name | name - pgtap | public | _get_schema_owner | name | name - pgtap | public | _get_schema_privs | name, text | text[] - pgtap | public | _get_sequence_privs | name, text | text[] - pgtap | public | _get_server_privs | name, text | text[] - pgtap | public | _get_table_privs | name, text | text[] - pgtap | public | _get_tablespace_owner | name | name - pgtap | public | _get_tablespaceprivs | name, text | text[] - pgtap | public | _get_type_owner | name | name - pgtap | public | _get_type_owner | name, name | name - pgtap | public | _got_func | name, name, name[] | boolean - pgtap | public | _got_func | name, name[] | boolean - pgtap | public | _got_func | name | boolean - pgtap | public | _got_func | name, name | boolean - pgtap | public | _grolist | name | oid[] - pgtap | public | _has_def | name, name | boolean - pgtap | public | _has_def | name, name, name | boolean - pgtap | public | _has_group | name | boolean - pgtap | public | _has_role | name | boolean - pgtap | public | _has_type | name, name, character[] | boolean - pgtap | public | _has_type | name, character[] | boolean - pgtap | public | _has_user | name | boolean - pgtap | public | _hasc | name, character | boolean - pgtap | public | _hasc | name, name, character | boolean - pgtap | public | _have_index | name, name | boolean - pgtap | public | _have_index | name, name, name | boolean - pgtap | public | _ident_array_to_sorted_string | name[], text | text - pgtap | public | _ident_array_to_string | name[], text | text - pgtap | public | _ikeys | name, name | text[] - pgtap | public | _ikeys | name, name, name | text[] - pgtap | public | _inherited | name | boolean - pgtap | public | _inherited | name, name | boolean - pgtap | public | _is_indexed | name, name, text[] | boolean - pgtap | public | _is_instead | name, name | boolean - pgtap | public | _is_instead | name, name, name | boolean - pgtap | public | _is_schema | name | boolean - pgtap | public | _is_super | name | boolean - pgtap | public | _is_trusted | name | boolean - pgtap | public | _is_verbose | | boolean - pgtap | public | _keys | name, character | SETOF name[] - pgtap | public | _keys | name, name, character | SETOF name[] - pgtap | public | _lang | name, name, name[] | name - pgtap | public | _lang | name, name[] | name - pgtap | public | _lang | name | name - pgtap | public | _lang | name, name | name - pgtap | public | _missing | character, name, name[] | name[] - pgtap | public | _missing | character[], name[] | name[] - pgtap | public | _missing | character, name[] | name[] - pgtap | public | _missing | character[], name, name[] | name[] - pgtap | public | _nosuch | name, name, name[] | text - pgtap | public | _op_exists | name, name, name, name | boolean - pgtap | public | _op_exists | name, name, name, name, name | boolean - pgtap | public | _op_exists | name, name, name | boolean - pgtap | public | _opc_exists | name | boolean - pgtap | public | _opc_exists | name, name | boolean - pgtap | public | _partof | name, name, name, name | boolean - pgtap | public | _partof | name, name | boolean - pgtap | public | _parts | name | SETOF name - pgtap | public | _parts | name, name | SETOF name - pgtap | public | _pg_sv_column_array | oid, smallint[] | name[] - pgtap | public | _pg_sv_table_accessible | oid, oid | boolean - pgtap | public | _pg_sv_type_array | oid[] | name[] - pgtap | public | _prokind | p_oid oid | "char" - pgtap | public | _query | text | text - pgtap | public | _quote_ident_like | text, text | text - pgtap | public | _refine_vol | text | text - pgtap | public | _relcomp | text, text, text, text, text | text - pgtap | public | _relcomp | text, text, text, text | text - pgtap | public | _relcomp | text, anyarray, text, text | text - pgtap | public | _relexists | name | boolean - pgtap | public | _relexists | name, name | boolean - pgtap | public | _relne | text, text, text, text | text - pgtap | public | _relne | text, anyarray, text, text | text - pgtap | public | _returns | name, name, name[] | text - pgtap | public | _returns | name, name[] | text - pgtap | public | _returns | name | text - pgtap | public | _returns | name, name | text - pgtap | public | _rexists | character[], name, name | boolean - pgtap | public | _rexists | character, name | boolean - pgtap | public | _rexists | character[], name | boolean - pgtap | public | _rexists | character, name, name | boolean - pgtap | public | _rule_on | name, name | "char" - pgtap | public | _rule_on | name, name, name | "char" - pgtap | public | _runem | text[], boolean | SETOF text - pgtap | public | _runner | text[], text[], text[], text[], text[] | SETOF text - pgtap | public | _set | text, integer | integer - pgtap | public | _set | integer, integer | integer - pgtap | public | _set | text, integer, text | integer - pgtap | public | _strict | name, name, name[] | boolean - pgtap | public | _strict | name, name[] | boolean - pgtap | public | _strict | name | boolean - pgtap | public | _strict | name, name | boolean - pgtap | public | _table_privs | | name[] - pgtap | public | _temptable | text, text | text - pgtap | public | _temptable | anyarray, text | text - pgtap | public | _temptypes | text | text - pgtap | public | _time_trials | text, integer, numeric | SETOF _time_trial_type - pgtap | public | _tlike | boolean, text, text, text | text - pgtap | public | _todo | | text - pgtap | public | _trig | name, name | boolean - pgtap | public | _trig | name, name, name | boolean - pgtap | public | _type_func | "char", name | boolean - pgtap | public | _type_func | "char", name, name, name[] | boolean - pgtap | public | _type_func | "char", name, name[] | boolean - pgtap | public | _type_func | "char", name, name | boolean - pgtap | public | _types_are | name, name[], text, character[] | text - pgtap | public | _types_are | name[], text, character[] | text - pgtap | public | _unalike | boolean, anyelement, text, text | text - pgtap | public | _vol | name, name, name[] | text - pgtap | public | _vol | name, name[] | text - pgtap | public | _vol | name | text - pgtap | public | _vol | name, name | text - pgtap | public | add_result | boolean, boolean, text, text, text | integer - pgtap | public | alike | anyelement, text | text - pgtap | public | alike | anyelement, text, text | text - pgtap | public | any_column_privs_are | name, name, name, name[], text | text - pgtap | public | any_column_privs_are | name, name, name[] | text - pgtap | public | any_column_privs_are | name, name, name, name[] | text - pgtap | public | any_column_privs_are | name, name, name[], text | text - pgtap | public | bag_eq | text, anyarray, text | text - pgtap | public | bag_eq | text, text | text - pgtap | public | bag_eq | text, text, text | text - pgtap | public | bag_eq | text, anyarray | text - pgtap | public | bag_has | text, text | text - pgtap | public | bag_has | text, text, text | text - pgtap | public | bag_hasnt | text, text | text - pgtap | public | bag_hasnt | text, text, text | text - pgtap | public | bag_ne | text, anyarray, text | text - pgtap | public | bag_ne | text, text | text - pgtap | public | bag_ne | text, text, text | text - pgtap | public | bag_ne | text, anyarray | text - pgtap | public | can | name[] | text - pgtap | public | can | name[], text | text - pgtap | public | can | name, name[], text | text - pgtap | public | can | name, name[] | text - pgtap | public | cast_context_is | name, name, text, text | text - pgtap | public | cast_context_is | name, name, text | text - pgtap | public | casts_are | text[] | text - pgtap | public | casts_are | text[], text | text - pgtap | public | check_test | text, boolean | SETOF text - pgtap | public | check_test | text, boolean, text, text, text, boolean | SETOF text - pgtap | public | check_test | text, boolean, text, text | SETOF text - pgtap | public | check_test | text, boolean, text | SETOF text - pgtap | public | check_test | text, boolean, text, text, text | SETOF text - pgtap | public | cmp_ok | anyelement, text, anyelement | text - pgtap | public | cmp_ok | anyelement, text, anyelement, text | text - pgtap | public | col_default_is | name, name, anyelement | text - pgtap | public | col_default_is | name, name, text, text | text - pgtap | public | col_default_is | name, name, name, text, text | text - pgtap | public | col_default_is | name, name, text | text - pgtap | public | col_default_is | name, name, anyelement, text | text - pgtap | public | col_default_is | name, name, name, anyelement, text | text - pgtap | public | col_has_check | name, name, name, text | text - pgtap | public | col_has_check | name, name[], text | text - pgtap | public | col_has_check | name, name[] | text - pgtap | public | col_has_check | name, name, text | text - pgtap | public | col_has_check | name, name, name[], text | text - pgtap | public | col_has_check | name, name | text - pgtap | public | col_has_default | name, name, name, text | text - pgtap | public | col_has_default | name, name, text | text - pgtap | public | col_has_default | name, name | text - pgtap | public | col_hasnt_default | name, name, name, text | text - pgtap | public | col_hasnt_default | name, name, text | text - pgtap | public | col_hasnt_default | name, name | text - pgtap | public | col_is_fk | name, name, name, text | text - pgtap | public | col_is_fk | name, name[], text | text - pgtap | public | col_is_fk | name, name[] | text - pgtap | public | col_is_fk | name, name, text | text - pgtap | public | col_is_fk | name, name, name[], text | text - pgtap | public | col_is_fk | name, name | text - pgtap | public | col_is_null | table_name name, column_name name, description text | text - pgtap | public | col_is_null | schema_name name, table_name name, column_name name, description text | text - pgtap | public | col_is_pk | name, name, name, text | text - pgtap | public | col_is_pk | name, name[], text | text - pgtap | public | col_is_pk | name, name[] | text - pgtap | public | col_is_pk | name, name, text | text - pgtap | public | col_is_pk | name, name, name[], text | text - pgtap | public | col_is_pk | name, name | text - pgtap | public | col_is_unique | name, name, name, text | text - pgtap | public | col_is_unique | name, name[], text | text - pgtap | public | col_is_unique | name, name, name[] | text - pgtap | public | col_is_unique | name, name[] | text - pgtap | public | col_is_unique | name, name, text | text - pgtap | public | col_is_unique | name, name, name[], text | text - pgtap | public | col_is_unique | name, name | text - pgtap | public | col_is_unique | name, name, name | text - pgtap | public | col_isnt_fk | name, name, name, text | text - pgtap | public | col_isnt_fk | name, name[], text | text - pgtap | public | col_isnt_fk | name, name[] | text - pgtap | public | col_isnt_fk | name, name, text | text - pgtap | public | col_isnt_fk | name, name, name[], text | text - pgtap | public | col_isnt_fk | name, name | text - pgtap | public | col_isnt_pk | name, name, name, text | text - pgtap | public | col_isnt_pk | name, name[], text | text - pgtap | public | col_isnt_pk | name, name[] | text - pgtap | public | col_isnt_pk | name, name, text | text - pgtap | public | col_isnt_pk | name, name, name[], text | text - pgtap | public | col_isnt_pk | name, name | text - pgtap | public | col_not_null | table_name name, column_name name, description text | text - pgtap | public | col_not_null | schema_name name, table_name name, column_name name, description text | text - pgtap | public | col_type_is | name, name, name, text | text - pgtap | public | col_type_is | name, name, text, text | text - pgtap | public | col_type_is | name, name, name, text, text | text - pgtap | public | col_type_is | name, name, name, name, text, text | text - pgtap | public | col_type_is | name, name, text | text - pgtap | public | col_type_is | name, name, name, name, text | text - pgtap | public | collect_tap | VARIADIC text[] | text - pgtap | public | collect_tap | character varying[] | text - pgtap | public | column_privs_are | name, name, name, name[], text | text - pgtap | public | column_privs_are | name, name, name, name, name[] | text - pgtap | public | column_privs_are | name, name, name, name[] | text - pgtap | public | column_privs_are | name, name, name, name, name[], text | text - pgtap | public | columns_are | name, name[], text | text - pgtap | public | columns_are | name, name, name[] | text - pgtap | public | columns_are | name, name[] | text - pgtap | public | columns_are | name, name, name[], text | text - pgtap | public | composite_owner_is | name, name, name, text | text - pgtap | public | composite_owner_is | name, name, text | text - pgtap | public | composite_owner_is | name, name | text - pgtap | public | composite_owner_is | name, name, name | text - pgtap | public | database_privs_are | name, name, name[] | text - pgtap | public | database_privs_are | name, name, name[], text | text - pgtap | public | db_owner_is | name, name, text | text - pgtap | public | db_owner_is | name, name | text - pgtap | public | diag | msg text | text - pgtap | public | diag | VARIADIC text[] | text - pgtap | public | diag | VARIADIC anyarray | text - pgtap | public | diag | msg anyelement | text - pgtap | public | diag_test_name | text | text - pgtap | public | display_oper | name, oid | text - pgtap | public | do_tap | text | SETOF text - pgtap | public | do_tap | name, text | SETOF text - pgtap | public | do_tap | name | SETOF text - pgtap | public | do_tap | | SETOF text - pgtap | public | doesnt_imatch | anyelement, text | text - pgtap | public | doesnt_imatch | anyelement, text, text | text - pgtap | public | doesnt_match | anyelement, text | text - pgtap | public | doesnt_match | anyelement, text, text | text - pgtap | public | domain_type_is | name, text, name, text, text | text - pgtap | public | domain_type_is | text, text | text - pgtap | public | domain_type_is | name, text, text, text | text - pgtap | public | domain_type_is | name, text, text | text - pgtap | public | domain_type_is | text, text, text | text - pgtap | public | domain_type_is | name, text, name, text | text - pgtap | public | domain_type_isnt | name, text, name, text, text | text - pgtap | public | domain_type_isnt | text, text | text - pgtap | public | domain_type_isnt | name, text, text, text | text - pgtap | public | domain_type_isnt | name, text, text | text - pgtap | public | domain_type_isnt | text, text, text | text - pgtap | public | domain_type_isnt | name, text, name, text | text - pgtap | public | domains_are | name[] | text - pgtap | public | domains_are | name[], text | text - pgtap | public | domains_are | name, name[], text | text - pgtap | public | domains_are | name, name[] | text - pgtap | public | enum_has_labels | name, name[], text | text - pgtap | public | enum_has_labels | name, name, name[] | text - pgtap | public | enum_has_labels | name, name[] | text - pgtap | public | enum_has_labels | name, name, name[], text | text - pgtap | public | enums_are | name[] | text - pgtap | public | enums_are | name[], text | text - pgtap | public | enums_are | name, name[], text | text - pgtap | public | enums_are | name, name[] | text - pgtap | public | extensions_are | name[] | text - pgtap | public | extensions_are | name[], text | text - pgtap | public | extensions_are | name, name[], text | text - pgtap | public | extensions_are | name, name[] | text - pgtap | public | fail | text | text - pgtap | public | fail | | text - pgtap | public | fdw_privs_are | name, name, name[] | text - pgtap | public | fdw_privs_are | name, name, name[], text | text - pgtap | public | findfuncs | text | text[] - pgtap | public | findfuncs | text, text | text[] - pgtap | public | findfuncs | name, text, text | text[] - pgtap | public | findfuncs | name, text | text[] - pgtap | public | finish | exception_on_failure boolean | SETOF text - pgtap | public | fk_ok | name, name, name, name, name, text | text - pgtap | public | fk_ok | name, name, name, name, name, name, text | text - pgtap | public | fk_ok | name, name, name, name | text - pgtap | public | fk_ok | name, name, name, name, text | text - pgtap | public | fk_ok | name, name, name[], name, name, name[], text | text - pgtap | public | fk_ok | name, name, name[], name, name, name[] | text - pgtap | public | fk_ok | name, name[], name, name[] | text - pgtap | public | fk_ok | name, name[], name, name[], text | text - pgtap | public | foreign_table_owner_is | name, name, name, text | text - pgtap | public | foreign_table_owner_is | name, name, text | text - pgtap | public | foreign_table_owner_is | name, name | text - pgtap | public | foreign_table_owner_is | name, name, name | text - pgtap | public | foreign_tables_are | name[] | text - pgtap | public | foreign_tables_are | name[], text | text - pgtap | public | foreign_tables_are | name, name[], text | text - pgtap | public | foreign_tables_are | name, name[] | text - pgtap | public | function_lang_is | name, name, name, text | text - pgtap | public | function_lang_is | name, name, text | text - pgtap | public | function_lang_is | name, name[], name, text | text - pgtap | public | function_lang_is | name, name, name[], name | text - pgtap | public | function_lang_is | name, name | text - pgtap | public | function_lang_is | name, name, name | text - pgtap | public | function_lang_is | name, name[], name | text - pgtap | public | function_lang_is | name, name, name[], name, text | text - pgtap | public | function_owner_is | name, name[], name, text | text - pgtap | public | function_owner_is | name, name, name[], name | text - pgtap | public | function_owner_is | name, name[], name | text - pgtap | public | function_owner_is | name, name, name[], name, text | text - pgtap | public | function_privs_are | name, name, name[], name, name[], text | text - pgtap | public | function_privs_are | name, name[], name, name[] | text - pgtap | public | function_privs_are | name, name[], name, name[], text | text - pgtap | public | function_privs_are | name, name, name[], name, name[] | text - pgtap | public | function_returns | name, name, name[], text, text | text - pgtap | public | function_returns | name, name[], text | text - pgtap | public | function_returns | name, name, text, text | text - pgtap | public | function_returns | name, name, text | text - pgtap | public | function_returns | name, text, text | text - pgtap | public | function_returns | name, text | text - pgtap | public | function_returns | name, name, name[], text | text - pgtap | public | function_returns | name, name[], text, text | text - pgtap | public | functions_are | name[] | text - pgtap | public | functions_are | name[], text | text - pgtap | public | functions_are | name, name[], text | text - pgtap | public | functions_are | name, name[] | text - pgtap | public | groups_are | name[] | text - pgtap | public | groups_are | name[], text | text - pgtap | public | has_cast | name, name, name, text | text - pgtap | public | has_cast | name, name, name, name | text - pgtap | public | has_cast | name, name, text | text - pgtap | public | has_cast | name, name, name, name, text | text - pgtap | public | has_cast | name, name | text - pgtap | public | has_cast | name, name, name | text - pgtap | public | has_check | name, name, text | text - pgtap | public | has_check | name, text | text - pgtap | public | has_check | name | text - pgtap | public | has_column | name, name, name, text | text - pgtap | public | has_column | name, name, text | text - pgtap | public | has_column | name, name | text - pgtap | public | has_composite | name, name, text | text - pgtap | public | has_composite | name, text | text - pgtap | public | has_composite | name | text - pgtap | public | has_domain | name, name, text | text - pgtap | public | has_domain | name, text | text - pgtap | public | has_domain | name | text - pgtap | public | has_domain | name, name | text - pgtap | public | has_enum | name, name, text | text - pgtap | public | has_enum | name, text | text - pgtap | public | has_enum | name | text - pgtap | public | has_enum | name, name | text - pgtap | public | has_extension | name, name, text | text - pgtap | public | has_extension | name, text | text - pgtap | public | has_extension | name | text - pgtap | public | has_extension | name, name | text - pgtap | public | has_fk | name, name, text | text - pgtap | public | has_fk | name, text | text - pgtap | public | has_fk | name | text - pgtap | public | has_foreign_table | name, name, text | text - pgtap | public | has_foreign_table | name, text | text - pgtap | public | has_foreign_table | name | text - pgtap | public | has_foreign_table | name, name | text - pgtap | public | has_function | name, name[], text | text - pgtap | public | has_function | name, name, name[] | text - pgtap | public | has_function | name, name[] | text - pgtap | public | has_function | name, name, text | text - pgtap | public | has_function | name, text | text - pgtap | public | has_function | name | text - pgtap | public | has_function | name, name, name[], text | text - pgtap | public | has_function | name, name | text - pgtap | public | has_group | name, text | text - pgtap | public | has_group | name | text - pgtap | public | has_index | name, name, name, text | text - pgtap | public | has_index | name, name, name, name[], text | text - pgtap | public | has_index | name, name, name[] | text - pgtap | public | has_index | name, name, name, name | text - pgtap | public | has_index | name, name, text | text - pgtap | public | has_index | name, name, name, name[] | text - pgtap | public | has_index | name, name, name, name, text | text - pgtap | public | has_index | name, name, name[], text | text - pgtap | public | has_index | name, name | text - pgtap | public | has_index | name, name, name | text - pgtap | public | has_inherited_tables | name, name, text | text - pgtap | public | has_inherited_tables | name, text | text - pgtap | public | has_inherited_tables | name | text - pgtap | public | has_inherited_tables | name, name | text - pgtap | public | has_language | name, text | text - pgtap | public | has_language | name | text - pgtap | public | has_leftop | name, name, name, text | text - pgtap | public | has_leftop | name, name, name, name | text - pgtap | public | has_leftop | name, name, text | text - pgtap | public | has_leftop | name, name, name, name, text | text - pgtap | public | has_leftop | name, name | text - pgtap | public | has_leftop | name, name, name | text - pgtap | public | has_materialized_view | name, name, text | text - pgtap | public | has_materialized_view | name, text | text - pgtap | public | has_materialized_view | name | text - pgtap | public | has_opclass | name, name, text | text - pgtap | public | has_opclass | name, text | text - pgtap | public | has_opclass | name | text - pgtap | public | has_opclass | name, name | text - pgtap | public | has_operator | name, name, name, text | text - pgtap | public | has_operator | name, name, name, name, name, text | text - pgtap | public | has_operator | name, name, name, name | text - pgtap | public | has_operator | name, name, name, name, text | text - pgtap | public | has_operator | name, name, name, name, name | text - pgtap | public | has_operator | name, name, name | text - pgtap | public | has_pk | name, name, text | text - pgtap | public | has_pk | name, text | text - pgtap | public | has_pk | name | text - pgtap | public | has_relation | name, name, text | text - pgtap | public | has_relation | name, text | text - pgtap | public | has_relation | name | text - pgtap | public | has_rightop | name, name, name, text | text - pgtap | public | has_rightop | name, name, name, name | text - pgtap | public | has_rightop | name, name, text | text - pgtap | public | has_rightop | name, name, name, name, text | text - pgtap | public | has_rightop | name, name | text - pgtap | public | has_rightop | name, name, name | text - pgtap | public | has_role | name, text | text - pgtap | public | has_role | name | text - pgtap | public | has_rule | name, name, name, text | text - pgtap | public | has_rule | name, name, text | text - pgtap | public | has_rule | name, name | text - pgtap | public | has_rule | name, name, name | text - pgtap | public | has_schema | name, text | text - pgtap | public | has_schema | name | text - pgtap | public | has_sequence | name, name, text | text - pgtap | public | has_sequence | name, text | text - pgtap | public | has_sequence | name | text - pgtap | public | has_sequence | name, name | text - pgtap | public | has_table | name, name, text | text - pgtap | public | has_table | name, text | text - pgtap | public | has_table | name | text - pgtap | public | has_table | name, name | text - pgtap | public | has_tablespace | name, text, text | text - pgtap | public | has_tablespace | name, text | text - pgtap | public | has_tablespace | name | text - pgtap | public | has_trigger | name, name, name, text | text - pgtap | public | has_trigger | name, name, text | text - pgtap | public | has_trigger | name, name | text - pgtap | public | has_trigger | name, name, name | text - pgtap | public | has_type | name, name, text | text - pgtap | public | has_type | name, text | text - pgtap | public | has_type | name | text - pgtap | public | has_type | name, name | text - pgtap | public | has_unique | text | text - pgtap | public | has_unique | text, text | text - pgtap | public | has_unique | text, text, text | text - pgtap | public | has_user | name, text | text - pgtap | public | has_user | name | text - pgtap | public | has_view | name, name, text | text - pgtap | public | has_view | name, text | text - pgtap | public | has_view | name | text - pgtap | public | has_view | name, name | text - pgtap | public | hasnt_cast | name, name, name, text | text - pgtap | public | hasnt_cast | name, name, name, name | text - pgtap | public | hasnt_cast | name, name, text | text - pgtap | public | hasnt_cast | name, name, name, name, text | text - pgtap | public | hasnt_cast | name, name | text - pgtap | public | hasnt_cast | name, name, name | text - pgtap | public | hasnt_column | name, name, name, text | text - pgtap | public | hasnt_column | name, name, text | text - pgtap | public | hasnt_column | name, name | text - pgtap | public | hasnt_composite | name, name, text | text - pgtap | public | hasnt_composite | name, text | text - pgtap | public | hasnt_composite | name | text - pgtap | public | hasnt_domain | name, name, text | text - pgtap | public | hasnt_domain | name, text | text - pgtap | public | hasnt_domain | name | text - pgtap | public | hasnt_domain | name, name | text - pgtap | public | hasnt_enum | name, name, text | text - pgtap | public | hasnt_enum | name, text | text - pgtap | public | hasnt_enum | name | text - pgtap | public | hasnt_enum | name, name | text - pgtap | public | hasnt_extension | name, name, text | text - pgtap | public | hasnt_extension | name, text | text - pgtap | public | hasnt_extension | name | text - pgtap | public | hasnt_extension | name, name | text - pgtap | public | hasnt_fk | name, name, text | text - pgtap | public | hasnt_fk | name, text | text - pgtap | public | hasnt_fk | name | text - pgtap | public | hasnt_foreign_table | name, name, text | text - pgtap | public | hasnt_foreign_table | name, text | text - pgtap | public | hasnt_foreign_table | name | text - pgtap | public | hasnt_foreign_table | name, name | text - pgtap | public | hasnt_function | name, name[], text | text - pgtap | public | hasnt_function | name, name, name[] | text - pgtap | public | hasnt_function | name, name[] | text - pgtap | public | hasnt_function | name, name, text | text - pgtap | public | hasnt_function | name, text | text - pgtap | public | hasnt_function | name | text - pgtap | public | hasnt_function | name, name, name[], text | text - pgtap | public | hasnt_function | name, name | text - pgtap | public | hasnt_group | name, text | text - pgtap | public | hasnt_group | name | text - pgtap | public | hasnt_index | name, name, name, text | text - pgtap | public | hasnt_index | name, name, text | text - pgtap | public | hasnt_index | name, name | text - pgtap | public | hasnt_index | name, name, name | text - pgtap | public | hasnt_inherited_tables | name, name, text | text - pgtap | public | hasnt_inherited_tables | name, text | text - pgtap | public | hasnt_inherited_tables | name | text - pgtap | public | hasnt_inherited_tables | name, name | text - pgtap | public | hasnt_language | name, text | text - pgtap | public | hasnt_language | name | text - pgtap | public | hasnt_leftop | name, name, name, text | text - pgtap | public | hasnt_leftop | name, name, name, name | text - pgtap | public | hasnt_leftop | name, name, text | text - pgtap | public | hasnt_leftop | name, name, name, name, text | text - pgtap | public | hasnt_leftop | name, name | text - pgtap | public | hasnt_leftop | name, name, name | text - pgtap | public | hasnt_materialized_view | name, name, text | text - pgtap | public | hasnt_materialized_view | name, text | text - pgtap | public | hasnt_materialized_view | name | text - pgtap | public | hasnt_opclass | name, name, text | text - pgtap | public | hasnt_opclass | name, text | text - pgtap | public | hasnt_opclass | name | text - pgtap | public | hasnt_opclass | name, name | text - pgtap | public | hasnt_operator | name, name, name, text | text - pgtap | public | hasnt_operator | name, name, name, name, name, text | text - pgtap | public | hasnt_operator | name, name, name, name | text - pgtap | public | hasnt_operator | name, name, name, name, text | text - pgtap | public | hasnt_operator | name, name, name, name, name | text - pgtap | public | hasnt_operator | name, name, name | text - pgtap | public | hasnt_pk | name, name, text | text - pgtap | public | hasnt_pk | name, text | text - pgtap | public | hasnt_pk | name | text - pgtap | public | hasnt_relation | name, name, text | text - pgtap | public | hasnt_relation | name, text | text - pgtap | public | hasnt_relation | name | text - pgtap | public | hasnt_rightop | name, name, name, text | text - pgtap | public | hasnt_rightop | name, name, name, name | text - pgtap | public | hasnt_rightop | name, name, text | text - pgtap | public | hasnt_rightop | name, name, name, name, text | text - pgtap | public | hasnt_rightop | name, name | text - pgtap | public | hasnt_rightop | name, name, name | text - pgtap | public | hasnt_role | name, text | text - pgtap | public | hasnt_role | name | text - pgtap | public | hasnt_rule | name, name, name, text | text - pgtap | public | hasnt_rule | name, name, text | text - pgtap | public | hasnt_rule | name, name | text - pgtap | public | hasnt_rule | name, name, name | text - pgtap | public | hasnt_schema | name, text | text - pgtap | public | hasnt_schema | name | text - pgtap | public | hasnt_sequence | name, name, text | text - pgtap | public | hasnt_sequence | name, text | text - pgtap | public | hasnt_sequence | name | text - pgtap | public | hasnt_table | name, name, text | text - pgtap | public | hasnt_table | name, text | text - pgtap | public | hasnt_table | name | text - pgtap | public | hasnt_table | name, name | text - pgtap | public | hasnt_tablespace | name, text | text - pgtap | public | hasnt_tablespace | name | text - pgtap | public | hasnt_trigger | name, name, name, text | text - pgtap | public | hasnt_trigger | name, name, text | text - pgtap | public | hasnt_trigger | name, name | text - pgtap | public | hasnt_trigger | name, name, name | text - pgtap | public | hasnt_type | name, name, text | text - pgtap | public | hasnt_type | name, text | text - pgtap | public | hasnt_type | name | text - pgtap | public | hasnt_type | name, name | text - pgtap | public | hasnt_user | name, text | text - pgtap | public | hasnt_user | name | text - pgtap | public | hasnt_view | name, name, text | text - pgtap | public | hasnt_view | name, text | text - pgtap | public | hasnt_view | name | text - pgtap | public | hasnt_view | name, name | text - pgtap | public | ialike | anyelement, text | text - pgtap | public | ialike | anyelement, text, text | text - pgtap | public | imatches | anyelement, text | text - pgtap | public | imatches | anyelement, text, text | text - pgtap | public | in_todo | | boolean - pgtap | public | index_is_primary | name, name, name, text | text - pgtap | public | index_is_primary | name | text - pgtap | public | index_is_primary | name, name | text - pgtap | public | index_is_primary | name, name, name | text - pgtap | public | index_is_type | name, name, name, name | text - pgtap | public | index_is_type | name, name, name, name, text | text - pgtap | public | index_is_type | name, name | text - pgtap | public | index_is_type | name, name, name | text - pgtap | public | index_is_unique | name, name, name, text | text - pgtap | public | index_is_unique | name | text - pgtap | public | index_is_unique | name, name | text - pgtap | public | index_is_unique | name, name, name | text - pgtap | public | index_owner_is | name, name, name, text | text - pgtap | public | index_owner_is | name, name, name, name | text - pgtap | public | index_owner_is | name, name, name, name, text | text - pgtap | public | index_owner_is | name, name, name | text - pgtap | public | indexes_are | name, name[], text | text - pgtap | public | indexes_are | name, name, name[] | text - pgtap | public | indexes_are | name, name[] | text - pgtap | public | indexes_are | name, name, name[], text | text - pgtap | public | is | anyelement, anyelement, text | text - pgtap | public | is | anyelement, anyelement | text - pgtap | public | is_aggregate | name, name[], text | text - pgtap | public | is_aggregate | name, name, name[] | text - pgtap | public | is_aggregate | name, name[] | text - pgtap | public | is_aggregate | name, name, text | text - pgtap | public | is_aggregate | name, text | text - pgtap | public | is_aggregate | name | text - pgtap | public | is_aggregate | name, name, name[], text | text - pgtap | public | is_aggregate | name, name | text - pgtap | public | is_ancestor_of | name, name, name, name, integer, text | text - pgtap | public | is_ancestor_of | name, name, integer | text - pgtap | public | is_ancestor_of | name, name, name, name | text - pgtap | public | is_ancestor_of | name, name, text | text - pgtap | public | is_ancestor_of | name, name, name, name, text | text - pgtap | public | is_ancestor_of | name, name, name, name, integer | text - pgtap | public | is_ancestor_of | name, name | text - pgtap | public | is_ancestor_of | name, name, integer, text | text - pgtap | public | is_clustered | name, name, name, text | text - pgtap | public | is_clustered | name | text - pgtap | public | is_clustered | name, name | text - pgtap | public | is_clustered | name, name, name | text - pgtap | public | is_definer | name, name[], text | text - pgtap | public | is_definer | name, name, name[] | text - pgtap | public | is_definer | name, name[] | text - pgtap | public | is_definer | name, name, text | text - pgtap | public | is_definer | name, text | text - pgtap | public | is_definer | name | text - pgtap | public | is_definer | name, name, name[], text | text - pgtap | public | is_definer | name, name | text - pgtap | public | is_descendent_of | name, name, name, name, integer, text | text - pgtap | public | is_descendent_of | name, name, integer | text - pgtap | public | is_descendent_of | name, name, name, name | text - pgtap | public | is_descendent_of | name, name, text | text - pgtap | public | is_descendent_of | name, name, name, name, text | text - pgtap | public | is_descendent_of | name, name, name, name, integer | text - pgtap | public | is_descendent_of | name, name | text - pgtap | public | is_descendent_of | name, name, integer, text | text - pgtap | public | is_empty | text | text - pgtap | public | is_empty | text, text | text - pgtap | public | is_indexed | name, name, name, text | text - pgtap | public | is_indexed | name, name[], text | text - pgtap | public | is_indexed | name, name, name[] | text - pgtap | public | is_indexed | name, name[] | text - pgtap | public | is_indexed | name, name, name[], text | text - pgtap | public | is_indexed | name, name | text - pgtap | public | is_indexed | name, name, name | text - pgtap | public | is_member_of | name, name[], text | text - pgtap | public | is_member_of | name, name[] | text - pgtap | public | is_member_of | name, name, text | text - pgtap | public | is_member_of | name, name | text - pgtap | public | is_normal_function | name, name[], text | text - pgtap | public | is_normal_function | name, name, name[] | text - pgtap | public | is_normal_function | name, name[] | text - pgtap | public | is_normal_function | name, name, text | text - pgtap | public | is_normal_function | name, text | text - pgtap | public | is_normal_function | name | text - pgtap | public | is_normal_function | name, name, name[], text | text - pgtap | public | is_normal_function | name, name | text - pgtap | public | is_partition_of | name, name, name, name | text - pgtap | public | is_partition_of | name, name, text | text - pgtap | public | is_partition_of | name, name, name, name, text | text - pgtap | public | is_partition_of | name, name | text - pgtap | public | is_partitioned | name, name, text | text - pgtap | public | is_partitioned | name, text | text - pgtap | public | is_partitioned | name | text - pgtap | public | is_partitioned | name, name | text - pgtap | public | is_procedure | name, name[], text | text - pgtap | public | is_procedure | name, name, name[] | text - pgtap | public | is_procedure | name, name[] | text - pgtap | public | is_procedure | name, name, text | text - pgtap | public | is_procedure | name, text | text - pgtap | public | is_procedure | name | text - pgtap | public | is_procedure | name, name, name[], text | text - pgtap | public | is_procedure | name, name | text - pgtap | public | is_strict | name, name[], text | text - pgtap | public | is_strict | name, name, name[] | text - pgtap | public | is_strict | name, name[] | text - pgtap | public | is_strict | name, name, text | text - pgtap | public | is_strict | name, text | text - pgtap | public | is_strict | name | text - pgtap | public | is_strict | name, name, name[], text | text - pgtap | public | is_strict | name, name | text - pgtap | public | is_superuser | name, text | text - pgtap | public | is_superuser | name | text - pgtap | public | is_window | name, name[], text | text - pgtap | public | is_window | name, name, name[] | text - pgtap | public | is_window | name, name[] | text - pgtap | public | is_window | name, name, text | text - pgtap | public | is_window | name, text | text - pgtap | public | is_window | name | text - pgtap | public | is_window | name, name, name[], text | text - pgtap | public | is_window | name, name | text - pgtap | public | isa_ok | anyelement, regtype | text - pgtap | public | isa_ok | anyelement, regtype, text | text - pgtap | public | isnt | anyelement, anyelement, text | text - pgtap | public | isnt | anyelement, anyelement | text - pgtap | public | isnt_aggregate | name, name[], text | text - pgtap | public | isnt_aggregate | name, name, name[] | text - pgtap | public | isnt_aggregate | name, name[] | text - pgtap | public | isnt_aggregate | name, name, text | text - pgtap | public | isnt_aggregate | name, text | text - pgtap | public | isnt_aggregate | name | text - pgtap | public | isnt_aggregate | name, name, name[], text | text - pgtap | public | isnt_aggregate | name, name | text - pgtap | public | isnt_ancestor_of | name, name, name, name, integer, text | text - pgtap | public | isnt_ancestor_of | name, name, integer | text - pgtap | public | isnt_ancestor_of | name, name, name, name | text - pgtap | public | isnt_ancestor_of | name, name, text | text - pgtap | public | isnt_ancestor_of | name, name, name, name, text | text - pgtap | public | isnt_ancestor_of | name, name, name, name, integer | text - pgtap | public | isnt_ancestor_of | name, name | text - pgtap | public | isnt_ancestor_of | name, name, integer, text | text - pgtap | public | isnt_definer | name, name[], text | text - pgtap | public | isnt_definer | name, name, name[] | text - pgtap | public | isnt_definer | name, name[] | text - pgtap | public | isnt_definer | name, name, text | text - pgtap | public | isnt_definer | name, text | text - pgtap | public | isnt_definer | name | text - pgtap | public | isnt_definer | name, name, name[], text | text - pgtap | public | isnt_definer | name, name | text - pgtap | public | isnt_descendent_of | name, name, name, name, integer, text | text - pgtap | public | isnt_descendent_of | name, name, integer | text - pgtap | public | isnt_descendent_of | name, name, name, name | text - pgtap | public | isnt_descendent_of | name, name, text | text - pgtap | public | isnt_descendent_of | name, name, name, name, text | text - pgtap | public | isnt_descendent_of | name, name, name, name, integer | text - pgtap | public | isnt_descendent_of | name, name | text - pgtap | public | isnt_descendent_of | name, name, integer, text | text - pgtap | public | isnt_empty | text | text - pgtap | public | isnt_empty | text, text | text - pgtap | public | isnt_member_of | name, name[], text | text - pgtap | public | isnt_member_of | name, name[] | text - pgtap | public | isnt_member_of | name, name, text | text - pgtap | public | isnt_member_of | name, name | text - pgtap | public | isnt_normal_function | name, name[], text | text - pgtap | public | isnt_normal_function | name, name, name[] | text - pgtap | public | isnt_normal_function | name, name[] | text - pgtap | public | isnt_normal_function | name, name, text | text - pgtap | public | isnt_normal_function | name, text | text - pgtap | public | isnt_normal_function | name | text - pgtap | public | isnt_normal_function | name, name, name[], text | text - pgtap | public | isnt_normal_function | name, name | text - pgtap | public | isnt_partitioned | name, name, text | text - pgtap | public | isnt_partitioned | name, text | text - pgtap | public | isnt_partitioned | name | text - pgtap | public | isnt_partitioned | name, name | text - pgtap | public | isnt_procedure | name, name[], text | text - pgtap | public | isnt_procedure | name, name, name[] | text - pgtap | public | isnt_procedure | name, name[] | text - pgtap | public | isnt_procedure | name, name, text | text - pgtap | public | isnt_procedure | name, text | text - pgtap | public | isnt_procedure | name | text - pgtap | public | isnt_procedure | name, name, name[], text | text - pgtap | public | isnt_procedure | name, name | text - pgtap | public | isnt_strict | name, name[], text | text - pgtap | public | isnt_strict | name, name, name[] | text - pgtap | public | isnt_strict | name, name[] | text - pgtap | public | isnt_strict | name, name, text | text - pgtap | public | isnt_strict | name, text | text - pgtap | public | isnt_strict | name | text - pgtap | public | isnt_strict | name, name, name[], text | text - pgtap | public | isnt_strict | name, name | text - pgtap | public | isnt_superuser | name, text | text - pgtap | public | isnt_superuser | name | text - pgtap | public | isnt_window | name, name[], text | text - pgtap | public | isnt_window | name, name, name[] | text - pgtap | public | isnt_window | name, name[] | text - pgtap | public | isnt_window | name, name, text | text - pgtap | public | isnt_window | name, text | text - pgtap | public | isnt_window | name | text - pgtap | public | isnt_window | name, name, name[], text | text - pgtap | public | isnt_window | name, name | text - pgtap | public | language_is_trusted | name, text | text - pgtap | public | language_is_trusted | name | text - pgtap | public | language_owner_is | name, name, text | text - pgtap | public | language_owner_is | name, name | text - pgtap | public | language_privs_are | name, name, name[] | text - pgtap | public | language_privs_are | name, name, name[], text | text - pgtap | public | languages_are | name[] | text - pgtap | public | languages_are | name[], text | text - pgtap | public | lives_ok | text | text - pgtap | public | lives_ok | text, text | text - pgtap | public | matches | anyelement, text | text - pgtap | public | matches | anyelement, text, text | text - pgtap | public | materialized_view_owner_is | name, name, name, text | text - pgtap | public | materialized_view_owner_is | name, name, text | text - pgtap | public | materialized_view_owner_is | name, name | text - pgtap | public | materialized_view_owner_is | name, name, name | text - pgtap | public | materialized_views_are | name[] | text - pgtap | public | materialized_views_are | name[], text | text - pgtap | public | materialized_views_are | name, name[], text | text - pgtap | public | materialized_views_are | name, name[] | text - pgtap | public | no_plan | | SETOF boolean - pgtap | public | num_failed | | integer - pgtap | public | ok | boolean | text - pgtap | public | ok | boolean, text | text - pgtap | public | opclass_owner_is | name, name, name, text | text - pgtap | public | opclass_owner_is | name, name, text | text - pgtap | public | opclass_owner_is | name, name | text - pgtap | public | opclass_owner_is | name, name, name | text - pgtap | public | opclasses_are | name[] | text - pgtap | public | opclasses_are | name[], text | text - pgtap | public | opclasses_are | name, name[], text | text - pgtap | public | opclasses_are | name, name[] | text - pgtap | public | operators_are | name, text[] | text - pgtap | public | operators_are | text[] | text - pgtap | public | operators_are | text[], text | text - pgtap | public | operators_are | name, text[], text | text - pgtap | public | os_name | | text - pgtap | public | partitions_are | name, name[], text | text - pgtap | public | partitions_are | name, name, name[] | text - pgtap | public | partitions_are | name, name[] | text - pgtap | public | partitions_are | name, name, name[], text | text - pgtap | public | pass | text | text - pgtap | public | pass | | text - pgtap | public | performs_ok | text, numeric, text | text - pgtap | public | performs_ok | text, numeric | text - pgtap | public | performs_within | text, numeric, numeric, integer | text - pgtap | public | performs_within | text, numeric, numeric | text - pgtap | public | performs_within | text, numeric, numeric, integer, text | text - pgtap | public | performs_within | text, numeric, numeric, text | text - pgtap | public | pg_version | | text - pgtap | public | pg_version_num | | integer - pgtap | public | pgtap_version | | numeric - pgtap | public | plan | integer | text - pgtap | public | policies_are | name, name[], text | text - pgtap | public | policies_are | name, name, name[] | text - pgtap | public | policies_are | name, name[] | text - pgtap | public | policies_are | name, name, name[], text | text - pgtap | public | policy_cmd_is | name, name, name, text | text - pgtap | public | policy_cmd_is | name, name, text, text | text - pgtap | public | policy_cmd_is | name, name, name, text, text | text - pgtap | public | policy_cmd_is | name, name, text | text - pgtap | public | policy_roles_are | name, name, name, name[], text | text - pgtap | public | policy_roles_are | name, name, name[] | text - pgtap | public | policy_roles_are | name, name, name, name[] | text - pgtap | public | policy_roles_are | name, name, name[], text | text - pgtap | public | relation_owner_is | name, name, name, text | text - pgtap | public | relation_owner_is | name, name, text | text - pgtap | public | relation_owner_is | name, name | text - pgtap | public | relation_owner_is | name, name, name | text - pgtap | public | results_eq | text, refcursor | text - pgtap | public | results_eq | text, anyarray, text | text - pgtap | public | results_eq | text, text | text - pgtap | public | results_eq | text, refcursor, text | text - pgtap | public | results_eq | refcursor, anyarray | text - pgtap | public | results_eq | refcursor, anyarray, text | text - pgtap | public | results_eq | text, text, text | text - pgtap | public | results_eq | text, anyarray | text - pgtap | public | results_eq | refcursor, refcursor, text | text - pgtap | public | results_eq | refcursor, text, text | text - pgtap | public | results_eq | refcursor, text | text - pgtap | public | results_eq | refcursor, refcursor | text - pgtap | public | results_ne | text, refcursor | text - pgtap | public | results_ne | text, anyarray, text | text - pgtap | public | results_ne | text, text | text - pgtap | public | results_ne | text, refcursor, text | text - pgtap | public | results_ne | refcursor, anyarray | text - pgtap | public | results_ne | refcursor, anyarray, text | text - pgtap | public | results_ne | text, text, text | text - pgtap | public | results_ne | text, anyarray | text - pgtap | public | results_ne | refcursor, refcursor, text | text - pgtap | public | results_ne | refcursor, text, text | text - pgtap | public | results_ne | refcursor, text | text - pgtap | public | results_ne | refcursor, refcursor | text - pgtap | public | roles_are | name[] | text - pgtap | public | roles_are | name[], text | text - pgtap | public | row_eq | text, anyelement | text - pgtap | public | row_eq | text, anyelement, text | text - pgtap | public | rule_is_instead | name, name, name, text | text - pgtap | public | rule_is_instead | name, name, text | text - pgtap | public | rule_is_instead | name, name | text - pgtap | public | rule_is_instead | name, name, name | text - pgtap | public | rule_is_on | name, name, name, text | text - pgtap | public | rule_is_on | name, name, text, text | text - pgtap | public | rule_is_on | name, name, name, text, text | text - pgtap | public | rule_is_on | name, name, text | text - pgtap | public | rules_are | name, name[], text | text - pgtap | public | rules_are | name, name, name[] | text - pgtap | public | rules_are | name, name[] | text - pgtap | public | rules_are | name, name, name[], text | text - pgtap | public | runtests | text | SETOF text - pgtap | public | runtests | name, text | SETOF text - pgtap | public | runtests | name | SETOF text - pgtap | public | runtests | | SETOF text - pgtap | public | schema_owner_is | name, name, text | text - pgtap | public | schema_owner_is | name, name | text - pgtap | public | schema_privs_are | name, name, name[] | text - pgtap | public | schema_privs_are | name, name, name[], text | text - pgtap | public | schemas_are | name[] | text - pgtap | public | schemas_are | name[], text | text - pgtap | public | sequence_owner_is | name, name, name, text | text - pgtap | public | sequence_owner_is | name, name, text | text - pgtap | public | sequence_owner_is | name, name | text - pgtap | public | sequence_owner_is | name, name, name | text - pgtap | public | sequence_privs_are | name, name, name, name[], text | text - pgtap | public | sequence_privs_are | name, name, name[] | text - pgtap | public | sequence_privs_are | name, name, name, name[] | text - pgtap | public | sequence_privs_are | name, name, name[], text | text - pgtap | public | sequences_are | name[] | text - pgtap | public | sequences_are | name[], text | text - pgtap | public | sequences_are | name, name[], text | text - pgtap | public | sequences_are | name, name[] | text - pgtap | public | server_privs_are | name, name, name[] | text - pgtap | public | server_privs_are | name, name, name[], text | text - pgtap | public | set_eq | text, anyarray, text | text - pgtap | public | set_eq | text, text | text - pgtap | public | set_eq | text, text, text | text - pgtap | public | set_eq | text, anyarray | text - pgtap | public | set_has | text, text | text - pgtap | public | set_has | text, text, text | text - pgtap | public | set_hasnt | text, text | text - pgtap | public | set_hasnt | text, text, text | text - pgtap | public | set_ne | text, anyarray, text | text - pgtap | public | set_ne | text, text | text - pgtap | public | set_ne | text, text, text | text - pgtap | public | set_ne | text, anyarray | text - pgtap | public | skip | integer | text - pgtap | public | skip | text | text - pgtap | public | skip | why text, how_many integer | text - pgtap | public | skip | integer, text | text - pgtap | public | table_owner_is | name, name, name, text | text - pgtap | public | table_owner_is | name, name, text | text - pgtap | public | table_owner_is | name, name | text - pgtap | public | table_owner_is | name, name, name | text - pgtap | public | table_privs_are | name, name, name, name[], text | text - pgtap | public | table_privs_are | name, name, name[] | text - pgtap | public | table_privs_are | name, name, name, name[] | text - pgtap | public | table_privs_are | name, name, name[], text | text - pgtap | public | tables_are | name[] | text - pgtap | public | tables_are | name[], text | text - pgtap | public | tables_are | name, name[], text | text - pgtap | public | tables_are | name, name[] | text - pgtap | public | tablespace_owner_is | name, name, text | text - pgtap | public | tablespace_owner_is | name, name | text - pgtap | public | tablespace_privs_are | name, name, name[] | text - pgtap | public | tablespace_privs_are | name, name, name[], text | text - pgtap | public | tablespaces_are | name[] | text - pgtap | public | tablespaces_are | name[], text | text - pgtap | public | throws_ilike | text, text | text - pgtap | public | throws_ilike | text, text, text | text - pgtap | public | throws_imatching | text, text | text - pgtap | public | throws_imatching | text, text, text | text - pgtap | public | throws_like | text, text | text - pgtap | public | throws_like | text, text, text | text - pgtap | public | throws_matching | text, text | text - pgtap | public | throws_matching | text, text, text | text - pgtap | public | throws_ok | text | text - pgtap | public | throws_ok | text, integer | text - pgtap | public | throws_ok | text, text | text - pgtap | public | throws_ok | text, character, text, text | text - pgtap | public | throws_ok | text, text, text | text - pgtap | public | throws_ok | text, integer, text, text | text - pgtap | public | throws_ok | text, integer, text | text - pgtap | public | todo | how_many integer, why text | SETOF boolean - pgtap | public | todo | why text, how_many integer | SETOF boolean - pgtap | public | todo | why text | SETOF boolean - pgtap | public | todo | how_many integer | SETOF boolean - pgtap | public | todo_end | | SETOF boolean - pgtap | public | todo_start | text | SETOF boolean - pgtap | public | todo_start | | SETOF boolean - pgtap | public | trigger_is | name, name, name, text | text - pgtap | public | trigger_is | name, name, name, name, name, text | text - pgtap | public | trigger_is | name, name, name, name, name | text - pgtap | public | trigger_is | name, name, name | text - pgtap | public | triggers_are | name, name[], text | text - pgtap | public | triggers_are | name, name, name[] | text - pgtap | public | triggers_are | name, name[] | text - pgtap | public | triggers_are | name, name, name[], text | text - pgtap | public | type_owner_is | name, name, name, text | text - pgtap | public | type_owner_is | name, name, text | text - pgtap | public | type_owner_is | name, name | text - pgtap | public | type_owner_is | name, name, name | text - pgtap | public | types_are | name[] | text - pgtap | public | types_are | name[], text | text - pgtap | public | types_are | name, name[], text | text - pgtap | public | types_are | name, name[] | text - pgtap | public | unalike | anyelement, text | text - pgtap | public | unalike | anyelement, text, text | text - pgtap | public | unialike | anyelement, text | text - pgtap | public | unialike | anyelement, text, text | text - pgtap | public | users_are | name[] | text - pgtap | public | users_are | name[], text | text - pgtap | public | view_owner_is | name, name, name, text | text - pgtap | public | view_owner_is | name, name, text | text - pgtap | public | view_owner_is | name, name | text - pgtap | public | view_owner_is | name, name, name | text - pgtap | public | views_are | name[] | text - pgtap | public | views_are | name[], text | text - pgtap | public | views_are | name, name[], text | text - pgtap | public | views_are | name, name[] | text - pgtap | public | volatility_is | name, name, name[], text, text | text - pgtap | public | volatility_is | name, name[], text | text - pgtap | public | volatility_is | name, name, text, text | text - pgtap | public | volatility_is | name, name, text | text - pgtap | public | volatility_is | name, text, text | text - pgtap | public | volatility_is | name, text | text - pgtap | public | volatility_is | name, name, name[], text | text - pgtap | public | volatility_is | name, name[], text, text | text - plpgsql | pg_catalog | plpgsql_call_handler | | language_handler - plpgsql | pg_catalog | plpgsql_inline_handler | internal | void - plpgsql | pg_catalog | plpgsql_validator | oid | void - plpgsql_check | public | __plpgsql_show_dependency_tb | funcoid regprocedure, relid regclass, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype | TABLE(type text, oid oid, schema text, name text, params text) - plpgsql_check | public | __plpgsql_show_dependency_tb | name text, relid regclass, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype | TABLE(type text, oid oid, schema text, name text, params text) - plpgsql_check | public | plpgsql_check_function | funcoid regprocedure, relid regclass, format text, fatal_errors boolean, other_warnings boolean, performance_warnings boolean, extra_warnings boolean, security_warnings boolean, compatibility_warnings boolean, oldtable name, newtable name, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype, without_warnings boolean, all_warnings boolean, use_incomment_options boolean, incomment_options_usage_warning boolean, constant_tracing boolean | SETOF text - plpgsql_check | public | plpgsql_check_function | name text, relid regclass, format text, fatal_errors boolean, other_warnings boolean, performance_warnings boolean, extra_warnings boolean, security_warnings boolean, compatibility_warnings boolean, oldtable name, newtable name, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype, without_warnings boolean, all_warnings boolean, use_incomment_options boolean, incomment_options_usage_warning boolean, constant_tracing boolean | SETOF text - plpgsql_check | public | plpgsql_check_function_tb | funcoid regprocedure, relid regclass, fatal_errors boolean, other_warnings boolean, performance_warnings boolean, extra_warnings boolean, security_warnings boolean, compatibility_warnings boolean, oldtable name, newtable name, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype, without_warnings boolean, all_warnings boolean, use_incomment_options boolean, incomment_options_usage_warning boolean, constant_tracing boolean | TABLE(functionid regproc, lineno integer, statement text, sqlstate text, message text, detail text, hint text, level text, "position" integer, query text, context text) - plpgsql_check | public | plpgsql_check_function_tb | name text, relid regclass, fatal_errors boolean, other_warnings boolean, performance_warnings boolean, extra_warnings boolean, security_warnings boolean, compatibility_warnings boolean, oldtable name, newtable name, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype, without_warnings boolean, all_warnings boolean, use_incomment_options boolean, incomment_options_usage_warning boolean, constant_tracing boolean | TABLE(functionid regproc, lineno integer, statement text, sqlstate text, message text, detail text, hint text, level text, "position" integer, query text, context text) - plpgsql_check | public | plpgsql_check_pragma | VARIADIC name text[] | integer - plpgsql_check | public | plpgsql_check_profiler | enable boolean | boolean - plpgsql_check | public | plpgsql_check_tracer | enable boolean, verbosity text | boolean - plpgsql_check | public | plpgsql_coverage_branches | funcoid regprocedure | double precision - plpgsql_check | public | plpgsql_coverage_branches | name text | double precision - plpgsql_check | public | plpgsql_coverage_statements | funcoid regprocedure | double precision - plpgsql_check | public | plpgsql_coverage_statements | name text | double precision - plpgsql_check | public | plpgsql_profiler_function_statements_tb | funcoid regprocedure | TABLE(stmtid integer, parent_stmtid integer, parent_note text, block_num integer, lineno integer, queryid bigint, exec_stmts bigint, exec_stmts_err bigint, total_time double precision, avg_time double precision, max_time double precision, processed_rows bigint, stmtname text) - plpgsql_check | public | plpgsql_profiler_function_statements_tb | name text | TABLE(stmtid integer, parent_stmtid integer, parent_note text, block_num integer, lineno integer, queryid bigint, exec_stmts bigint, exec_stmts_err bigint, total_time double precision, avg_time double precision, max_time double precision, processed_rows bigint, stmtname text) - plpgsql_check | public | plpgsql_profiler_function_tb | funcoid regprocedure | TABLE(lineno integer, stmt_lineno integer, queryids bigint[], cmds_on_row integer, exec_stmts bigint, exec_stmts_err bigint, total_time double precision, avg_time double precision, max_time double precision[], processed_rows bigint[], source text) - plpgsql_check | public | plpgsql_profiler_function_tb | name text | TABLE(lineno integer, stmt_lineno integer, queryids bigint[], cmds_on_row integer, exec_stmts bigint, exec_stmts_err bigint, total_time double precision, avg_time double precision, max_time double precision[], processed_rows bigint[], source text) - plpgsql_check | public | plpgsql_profiler_functions_all | | TABLE(funcoid regprocedure, exec_count bigint, exec_stmts_err bigint, total_time double precision, avg_time double precision, stddev_time double precision, min_time double precision, max_time double precision) - plpgsql_check | public | plpgsql_profiler_install_fake_queryid_hook | | void - plpgsql_check | public | plpgsql_profiler_remove_fake_queryid_hook | | void - plpgsql_check | public | plpgsql_profiler_reset | funcoid regprocedure | void - plpgsql_check | public | plpgsql_profiler_reset_all | | void - plpgsql_check | public | plpgsql_show_dependency_tb | funcoid regprocedure, relid regclass, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype | TABLE(type text, oid oid, schema text, name text, params text) - plpgsql_check | public | plpgsql_show_dependency_tb | fnname text, relid regclass, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype | TABLE(type text, oid oid, schema text, name text, params text) - postgis | public | _postgis_deprecate | oldname text, newname text, version text | void - postgis | public | _postgis_index_extent | tbl regclass, col text | box2d - postgis | public | _postgis_join_selectivity | regclass, text, regclass, text, text | double precision - postgis | public | _postgis_pgsql_version | | text - postgis | public | _postgis_scripts_pgsql_version | | text - postgis | public | _postgis_selectivity | tbl regclass, att_name text, geom geometry, mode text | double precision - postgis | public | _postgis_stats | tbl regclass, att_name text, text | text - postgis | public | _st_3ddfullywithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | _st_3ddwithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | _st_3dintersects | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_asgml | integer, geometry, integer, integer, text, text | text - postgis | public | _st_asx3d | integer, geometry, integer, integer, text | text - postgis | public | _st_bestsrid | geography | integer - postgis | public | _st_bestsrid | geography, geography | integer - postgis | public | _st_contains | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_containsproperly | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_coveredby | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_coveredby | geog1 geography, geog2 geography | boolean - postgis | public | _st_covers | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_covers | geog1 geography, geog2 geography | boolean - postgis | public | _st_crosses | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_dfullywithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | _st_distancetree | geography, geography, double precision, boolean | double precision - postgis | public | _st_distancetree | geography, geography | double precision - postgis | public | _st_distanceuncached | geography, geography, double precision, boolean | double precision - postgis | public | _st_distanceuncached | geography, geography, boolean | double precision - postgis | public | _st_distanceuncached | geography, geography | double precision - postgis | public | _st_dwithin | geog1 geography, geog2 geography, tolerance double precision, use_spheroid boolean | boolean - postgis | public | _st_dwithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | _st_dwithinuncached | geography, geography, double precision, boolean | boolean - postgis | public | _st_dwithinuncached | geography, geography, double precision | boolean - postgis | public | _st_equals | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_expand | geography, double precision | geography - postgis | public | _st_geomfromgml | text, integer | geometry - postgis | public | _st_intersects | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_linecrossingdirection | line1 geometry, line2 geometry | integer - postgis | public | _st_longestline | geom1 geometry, geom2 geometry | geometry - postgis | public | _st_maxdistance | geom1 geometry, geom2 geometry | double precision - postgis | public | _st_orderingequals | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_overlaps | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_pointoutside | geography | geography - postgis | public | _st_sortablehash | geom geometry | bigint - postgis | public | _st_touches | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_voronoi | g1 geometry, clip geometry, tolerance double precision, return_polygons boolean | geometry - postgis | public | _st_within | geom1 geometry, geom2 geometry | boolean - postgis | public | addauth | text | boolean - postgis | public | addgeometrycolumn | schema_name character varying, table_name character varying, column_name character varying, new_srid integer, new_type character varying, new_dim integer, use_typmod boolean | text - postgis | public | addgeometrycolumn | catalog_name character varying, schema_name character varying, table_name character varying, column_name character varying, new_srid_in integer, new_type character varying, new_dim integer, use_typmod boolean | text - postgis | public | addgeometrycolumn | table_name character varying, column_name character varying, new_srid integer, new_type character varying, new_dim integer, use_typmod boolean | text - postgis | public | box | box3d | box - postgis | public | box | geometry | box - postgis | public | box2d | box3d | box2d - postgis | public | box2d | geometry | box2d - postgis | public | box2d_in | cstring | box2d - postgis | public | box2d_out | box2d | cstring - postgis | public | box2df_in | cstring | box2df - postgis | public | box2df_out | box2df | cstring - postgis | public | box3d | geometry | box3d - postgis | public | box3d | box2d | box3d - postgis | public | box3d_in | cstring | box3d - postgis | public | box3d_out | box3d | cstring - postgis | public | box3dtobox | box3d | box - postgis | public | bytea | geography | bytea - postgis | public | bytea | geometry | bytea - postgis | public | checkauth | text, text | integer - postgis | public | checkauth | text, text, text | integer - postgis | public | checkauthtrigger | | trigger - postgis | public | contains_2d | geometry, box2df | boolean - postgis | public | contains_2d | box2df, geometry | boolean - postgis | public | contains_2d | box2df, box2df | boolean - postgis | public | disablelongtransactions | | text - postgis | public | dropgeometrycolumn | schema_name character varying, table_name character varying, column_name character varying | text - postgis | public | dropgeometrycolumn | table_name character varying, column_name character varying | text - postgis | public | dropgeometrycolumn | catalog_name character varying, schema_name character varying, table_name character varying, column_name character varying | text - postgis | public | dropgeometrytable | table_name character varying | text - postgis | public | dropgeometrytable | schema_name character varying, table_name character varying | text - postgis | public | dropgeometrytable | catalog_name character varying, schema_name character varying, table_name character varying | text - postgis | public | enablelongtransactions | | text - postgis | public | equals | geom1 geometry, geom2 geometry | boolean - postgis | public | find_srid | character varying, character varying, character varying | integer - postgis | public | geog_brin_inclusion_add_value | internal, internal, internal, internal | boolean - postgis | public | geography | bytea | geography - postgis | public | geography | geometry | geography - postgis | public | geography | geography, integer, boolean | geography - postgis | public | geography_analyze | internal | boolean - postgis | public | geography_cmp | geography, geography | integer - postgis | public | geography_distance_knn | geography, geography | double precision - postgis | public | geography_eq | geography, geography | boolean - postgis | public | geography_ge | geography, geography | boolean - postgis | public | geography_gist_compress | internal | internal - postgis | public | geography_gist_consistent | internal, geography, integer | boolean - postgis | public | geography_gist_decompress | internal | internal - postgis | public | geography_gist_distance | internal, geography, integer | double precision - postgis | public | geography_gist_penalty | internal, internal, internal | internal - postgis | public | geography_gist_picksplit | internal, internal | internal - postgis | public | geography_gist_same | box2d, box2d, internal | internal - postgis | public | geography_gist_union | bytea, internal | internal - postgis | public | geography_gt | geography, geography | boolean - postgis | public | geography_in | cstring, oid, integer | geography - postgis | public | geography_le | geography, geography | boolean - postgis | public | geography_lt | geography, geography | boolean - postgis | public | geography_out | geography | cstring - postgis | public | geography_overlaps | geography, geography | boolean - postgis | public | geography_recv | internal, oid, integer | geography - postgis | public | geography_send | geography | bytea - postgis | public | geography_spgist_choose_nd | internal, internal | void - postgis | public | geography_spgist_compress_nd | internal | internal - postgis | public | geography_spgist_config_nd | internal, internal | void - postgis | public | geography_spgist_inner_consistent_nd | internal, internal | void - postgis | public | geography_spgist_leaf_consistent_nd | internal, internal | boolean - postgis | public | geography_spgist_picksplit_nd | internal, internal | void - postgis | public | geography_typmod_in | cstring[] | integer - postgis | public | geography_typmod_out | integer | cstring - postgis | public | geom2d_brin_inclusion_add_value | internal, internal, internal, internal | boolean - postgis | public | geom3d_brin_inclusion_add_value | internal, internal, internal, internal | boolean - postgis | public | geom4d_brin_inclusion_add_value | internal, internal, internal, internal | boolean - postgis | public | geometry | geometry, integer, boolean | geometry - postgis | public | geometry | box3d | geometry - postgis | public | geometry | text | geometry - postgis | public | geometry | point | geometry - postgis | public | geometry | bytea | geometry - postgis | public | geometry | geography | geometry - postgis | public | geometry | path | geometry - postgis | public | geometry | polygon | geometry - postgis | public | geometry | box2d | geometry - postgis | public | geometry_above | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_analyze | internal | boolean - postgis | public | geometry_below | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_cmp | geom1 geometry, geom2 geometry | integer - postgis | public | geometry_contained_3d | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_contains | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_contains_3d | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_contains_nd | geometry, geometry | boolean - postgis | public | geometry_distance_box | geom1 geometry, geom2 geometry | double precision - postgis | public | geometry_distance_centroid | geom1 geometry, geom2 geometry | double precision - postgis | public | geometry_distance_centroid_nd | geometry, geometry | double precision - postgis | public | geometry_distance_cpa | geometry, geometry | double precision - postgis | public | geometry_eq | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_ge | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_gist_compress_2d | internal | internal - postgis | public | geometry_gist_compress_nd | internal | internal - postgis | public | geometry_gist_consistent_2d | internal, geometry, integer | boolean - postgis | public | geometry_gist_consistent_nd | internal, geometry, integer | boolean - postgis | public | geometry_gist_decompress_2d | internal | internal - postgis | public | geometry_gist_decompress_nd | internal | internal - postgis | public | geometry_gist_distance_2d | internal, geometry, integer | double precision - postgis | public | geometry_gist_distance_nd | internal, geometry, integer | double precision - postgis | public | geometry_gist_penalty_2d | internal, internal, internal | internal - postgis | public | geometry_gist_penalty_nd | internal, internal, internal | internal - postgis | public | geometry_gist_picksplit_2d | internal, internal | internal - postgis | public | geometry_gist_picksplit_nd | internal, internal | internal - postgis | public | geometry_gist_same_2d | geom1 geometry, geom2 geometry, internal | internal - postgis | public | geometry_gist_same_nd | geometry, geometry, internal | internal - postgis | public | geometry_gist_sortsupport_2d | internal | void - postgis | public | geometry_gist_union_2d | bytea, internal | internal - postgis | public | geometry_gist_union_nd | bytea, internal | internal - postgis | public | geometry_gt | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_hash | geometry | integer - postgis | public | geometry_in | cstring | geometry - postgis | public | geometry_le | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_left | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_lt | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_out | geometry | cstring - postgis | public | geometry_overabove | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_overbelow | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_overlaps | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_overlaps_3d | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_overlaps_nd | geometry, geometry | boolean - postgis | public | geometry_overleft | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_overright | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_recv | internal | geometry - postgis | public | geometry_right | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_same | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_same_3d | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_same_nd | geometry, geometry | boolean - postgis | public | geometry_send | geometry | bytea - postgis | public | geometry_sortsupport | internal | void - postgis | public | geometry_spgist_choose_2d | internal, internal | void - postgis | public | geometry_spgist_choose_3d | internal, internal | void - postgis | public | geometry_spgist_choose_nd | internal, internal | void - postgis | public | geometry_spgist_compress_2d | internal | internal - postgis | public | geometry_spgist_compress_3d | internal | internal - postgis | public | geometry_spgist_compress_nd | internal | internal - postgis | public | geometry_spgist_config_2d | internal, internal | void - postgis | public | geometry_spgist_config_3d | internal, internal | void - postgis | public | geometry_spgist_config_nd | internal, internal | void - postgis | public | geometry_spgist_inner_consistent_2d | internal, internal | void - postgis | public | geometry_spgist_inner_consistent_3d | internal, internal | void - postgis | public | geometry_spgist_inner_consistent_nd | internal, internal | void - postgis | public | geometry_spgist_leaf_consistent_2d | internal, internal | boolean - postgis | public | geometry_spgist_leaf_consistent_3d | internal, internal | boolean - postgis | public | geometry_spgist_leaf_consistent_nd | internal, internal | boolean - postgis | public | geometry_spgist_picksplit_2d | internal, internal | void - postgis | public | geometry_spgist_picksplit_3d | internal, internal | void - postgis | public | geometry_spgist_picksplit_nd | internal, internal | void - postgis | public | geometry_typmod_in | cstring[] | integer - postgis | public | geometry_typmod_out | integer | cstring - postgis | public | geometry_within | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_within_nd | geometry, geometry | boolean - postgis | public | geometrytype | geography | text - postgis | public | geometrytype | geometry | text - postgis | public | geomfromewkb | bytea | geometry - postgis | public | geomfromewkt | text | geometry - postgis | public | get_proj4_from_srid | integer | text - postgis | public | gettransactionid | | xid - postgis | public | gidx_in | cstring | gidx - postgis | public | gidx_out | gidx | cstring - postgis | public | gserialized_gist_joinsel_2d | internal, oid, internal, smallint | double precision - postgis | public | gserialized_gist_joinsel_nd | internal, oid, internal, smallint | double precision - postgis | public | gserialized_gist_sel_2d | internal, oid, internal, integer | double precision - postgis | public | gserialized_gist_sel_nd | internal, oid, internal, integer | double precision - postgis | public | is_contained_2d | geometry, box2df | boolean - postgis | public | is_contained_2d | box2df, geometry | boolean - postgis | public | is_contained_2d | box2df, box2df | boolean - postgis | public | json | geometry | json - postgis | public | jsonb | geometry | jsonb - postgis | public | lockrow | text, text, text, timestamp without time zone | integer - postgis | public | lockrow | text, text, text, text | integer - postgis | public | lockrow | text, text, text | integer - postgis | public | lockrow | text, text, text, text, timestamp without time zone | integer - postgis | public | longtransactionsenabled | | boolean - postgis | public | overlaps_2d | geometry, box2df | boolean - postgis | public | overlaps_2d | box2df, geometry | boolean - postgis | public | overlaps_2d | box2df, box2df | boolean - postgis | public | overlaps_geog | gidx, gidx | boolean - postgis | public | overlaps_geog | geography, gidx | boolean - postgis | public | overlaps_geog | gidx, geography | boolean - postgis | public | overlaps_nd | gidx, gidx | boolean - postgis | public | overlaps_nd | geometry, gidx | boolean - postgis | public | overlaps_nd | gidx, geometry | boolean - postgis | public | path | geometry | path - postgis | public | pgis_asflatgeobuf_finalfn | internal | bytea - postgis | public | pgis_asflatgeobuf_transfn | internal, anyelement, boolean | internal - postgis | public | pgis_asflatgeobuf_transfn | internal, anyelement | internal - postgis | public | pgis_asflatgeobuf_transfn | internal, anyelement, boolean, text | internal - postgis | public | pgis_asgeobuf_finalfn | internal | bytea - postgis | public | pgis_asgeobuf_transfn | internal, anyelement | internal - postgis | public | pgis_asgeobuf_transfn | internal, anyelement, text | internal - postgis | public | pgis_asmvt_combinefn | internal, internal | internal - postgis | public | pgis_asmvt_deserialfn | bytea, internal | internal - postgis | public | pgis_asmvt_finalfn | internal | bytea - postgis | public | pgis_asmvt_serialfn | internal | bytea - postgis | public | pgis_asmvt_transfn | internal, anyelement, text, integer, text | internal - postgis | public | pgis_asmvt_transfn | internal, anyelement | internal - postgis | public | pgis_asmvt_transfn | internal, anyelement, text, integer | internal - postgis | public | pgis_asmvt_transfn | internal, anyelement, text | internal - postgis | public | pgis_asmvt_transfn | internal, anyelement, text, integer, text, text | internal - postgis | public | pgis_geometry_accum_transfn | internal, geometry, double precision | internal - postgis | public | pgis_geometry_accum_transfn | internal, geometry | internal - postgis | public | pgis_geometry_accum_transfn | internal, geometry, double precision, integer | internal - postgis | public | pgis_geometry_clusterintersecting_finalfn | internal | geometry[] - postgis | public | pgis_geometry_clusterwithin_finalfn | internal | geometry[] - postgis | public | pgis_geometry_collect_finalfn | internal | geometry - postgis | public | pgis_geometry_makeline_finalfn | internal | geometry - postgis | public | pgis_geometry_polygonize_finalfn | internal | geometry - postgis | public | pgis_geometry_union_parallel_combinefn | internal, internal | internal - postgis | public | pgis_geometry_union_parallel_deserialfn | bytea, internal | internal - postgis | public | pgis_geometry_union_parallel_finalfn | internal | geometry - postgis | public | pgis_geometry_union_parallel_serialfn | internal | bytea - postgis | public | pgis_geometry_union_parallel_transfn | internal, geometry, double precision | internal - postgis | public | pgis_geometry_union_parallel_transfn | internal, geometry | internal - postgis | public | point | geometry | point - postgis | public | polygon | geometry | polygon - postgis | public | populate_geometry_columns | tbl_oid oid, use_typmod boolean | integer - postgis | public | populate_geometry_columns | use_typmod boolean | text - postgis | public | postgis_addbbox | geometry | geometry - postgis | public | postgis_cache_bbox | | trigger - postgis | public | postgis_constraint_dims | geomschema text, geomtable text, geomcolumn text | integer - postgis | public | postgis_constraint_srid | geomschema text, geomtable text, geomcolumn text | integer - postgis | public | postgis_constraint_type | geomschema text, geomtable text, geomcolumn text | character varying - postgis | public | postgis_dropbbox | geometry | geometry - postgis | public | postgis_extensions_upgrade | | text - postgis | public | postgis_full_version | | text - postgis | public | postgis_geos_noop | geometry | geometry - postgis | public | postgis_geos_version | | text - postgis | public | postgis_getbbox | geometry | box2d - postgis | public | postgis_hasbbox | geometry | boolean - postgis | public | postgis_index_supportfn | internal | internal - postgis | public | postgis_lib_build_date | | text - postgis | public | postgis_lib_revision | | text - postgis | public | postgis_lib_version | | text - postgis | public | postgis_libjson_version | | text - postgis | public | postgis_liblwgeom_version | | text - postgis | public | postgis_libprotobuf_version | | text - postgis | public | postgis_libxml_version | | text - postgis | public | postgis_noop | geometry | geometry - postgis | public | postgis_proj_version | | text - postgis | public | postgis_scripts_build_date | | text - postgis | public | postgis_scripts_installed | | text - postgis | public | postgis_scripts_released | | text - postgis | public | postgis_svn_version | | text - postgis | public | postgis_transform_geometry | geom geometry, text, text, integer | geometry - postgis | public | postgis_type_name | geomname character varying, coord_dimension integer, use_new_name boolean | character varying - postgis | public | postgis_typmod_dims | integer | integer - postgis | public | postgis_typmod_srid | integer | integer - postgis | public | postgis_typmod_type | integer | text - postgis | public | postgis_version | | text - postgis | public | postgis_wagyu_version | | text - postgis | public | spheroid_in | cstring | spheroid - postgis | public | spheroid_out | spheroid | cstring - postgis | public | st_3dclosestpoint | geom1 geometry, geom2 geometry | geometry - postgis | public | st_3ddfullywithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | st_3ddistance | geom1 geometry, geom2 geometry | double precision - postgis | public | st_3ddwithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | st_3dextent | geometry | box3d - postgis | public | st_3dintersects | geom1 geometry, geom2 geometry | boolean - postgis | public | st_3dlength | geometry | double precision - postgis | public | st_3dlineinterpolatepoint | geometry, double precision | geometry - postgis | public | st_3dlongestline | geom1 geometry, geom2 geometry | geometry - postgis | public | st_3dmakebox | geom1 geometry, geom2 geometry | box3d - postgis | public | st_3dmaxdistance | geom1 geometry, geom2 geometry | double precision - postgis | public | st_3dperimeter | geometry | double precision - postgis | public | st_3dshortestline | geom1 geometry, geom2 geometry | geometry - postgis | public | st_addmeasure | geometry, double precision, double precision | geometry - postgis | public | st_addpoint | geom1 geometry, geom2 geometry, integer | geometry - postgis | public | st_addpoint | geom1 geometry, geom2 geometry | geometry - postgis | public | st_affine | geometry, double precision, double precision, double precision, double precision, double precision, double precision | geometry - postgis | public | st_affine | geometry, double precision, double precision, double precision, double precision, double precision, double precision, double precision, double precision, double precision, double precision, double precision, double precision | geometry - postgis | public | st_angle | pt1 geometry, pt2 geometry, pt3 geometry, pt4 geometry | double precision - postgis | public | st_angle | line1 geometry, line2 geometry | double precision - postgis | public | st_area | geog geography, use_spheroid boolean | double precision - postgis | public | st_area | text | double precision - postgis | public | st_area | geometry | double precision - postgis | public | st_area2d | geometry | double precision - postgis | public | st_asbinary | geography | bytea - postgis | public | st_asbinary | geometry, text | bytea - postgis | public | st_asbinary | geometry | bytea - postgis | public | st_asbinary | geography, text | bytea - postgis | public | st_asencodedpolyline | geom geometry, nprecision integer | text - postgis | public | st_asewkb | geometry, text | bytea - postgis | public | st_asewkb | geometry | bytea - postgis | public | st_asewkt | text | text - postgis | public | st_asewkt | geography, integer | text - postgis | public | st_asewkt | geography | text - postgis | public | st_asewkt | geometry, integer | text - postgis | public | st_asewkt | geometry | text - postgis | public | st_asflatgeobuf | anyelement | bytea - postgis | public | st_asflatgeobuf | anyelement, boolean | bytea - postgis | public | st_asflatgeobuf | anyelement, boolean, text | bytea - postgis | public | st_asgeobuf | anyelement | bytea - postgis | public | st_asgeobuf | anyelement, text | bytea - postgis | public | st_asgeojson | text | text - postgis | public | st_asgeojson | geom geometry, maxdecimaldigits integer, options integer | text - postgis | public | st_asgeojson | geog geography, maxdecimaldigits integer, options integer | text - postgis | public | st_asgeojson | r record, geom_column text, maxdecimaldigits integer, pretty_bool boolean | text - postgis | public | st_asgml | text | text - postgis | public | st_asgml | version integer, geog geography, maxdecimaldigits integer, options integer, nprefix text, id text | text - postgis | public | st_asgml | geog geography, maxdecimaldigits integer, options integer, nprefix text, id text | text - postgis | public | st_asgml | geom geometry, maxdecimaldigits integer, options integer | text - postgis | public | st_asgml | version integer, geom geometry, maxdecimaldigits integer, options integer, nprefix text, id text | text - postgis | public | st_ashexewkb | geometry, text | text - postgis | public | st_ashexewkb | geometry | text - postgis | public | st_askml | text | text - postgis | public | st_askml | geom geometry, maxdecimaldigits integer, nprefix text | text - postgis | public | st_askml | geog geography, maxdecimaldigits integer, nprefix text | text - postgis | public | st_aslatlontext | geom geometry, tmpl text | text - postgis | public | st_asmarc21 | geom geometry, format text | text - postgis | public | st_asmvt | anyelement | bytea - postgis | public | st_asmvt | anyelement, text, integer, text, text | bytea - postgis | public | st_asmvt | anyelement, text, integer | bytea - postgis | public | st_asmvt | anyelement, text | bytea - postgis | public | st_asmvt | anyelement, text, integer, text | bytea - postgis | public | st_asmvtgeom | geom geometry, bounds box2d, extent integer, buffer integer, clip_geom boolean | geometry - postgis | public | st_assvg | geog geography, rel integer, maxdecimaldigits integer | text - postgis | public | st_assvg | geom geometry, rel integer, maxdecimaldigits integer | text - postgis | public | st_assvg | text | text - postgis | public | st_astext | text | text - postgis | public | st_astext | geography, integer | text - postgis | public | st_astext | geography | text - postgis | public | st_astext | geometry, integer | text - postgis | public | st_astext | geometry | text - postgis | public | st_astwkb | geom geometry[], ids bigint[], prec integer, prec_z integer, prec_m integer, with_sizes boolean, with_boxes boolean | bytea - postgis | public | st_astwkb | geom geometry, prec integer, prec_z integer, prec_m integer, with_sizes boolean, with_boxes boolean | bytea - postgis | public | st_asx3d | geom geometry, maxdecimaldigits integer, options integer | text - postgis | public | st_azimuth | geom1 geometry, geom2 geometry | double precision - postgis | public | st_azimuth | geog1 geography, geog2 geography | double precision - postgis | public | st_bdmpolyfromtext | text, integer | geometry - postgis | public | st_bdpolyfromtext | text, integer | geometry - postgis | public | st_boundary | geometry | geometry - postgis | public | st_boundingdiagonal | geom geometry, fits boolean | geometry - postgis | public | st_box2dfromgeohash | text, integer | box2d - postgis | public | st_buffer | geom geometry, radius double precision, options text | geometry - postgis | public | st_buffer | geography, double precision, text | geography - postgis | public | st_buffer | geography, double precision, integer | geography - postgis | public | st_buffer | geom geometry, radius double precision, quadsegs integer | geometry - postgis | public | st_buffer | text, double precision, text | geometry - postgis | public | st_buffer | geography, double precision | geography - postgis | public | st_buffer | text, double precision, integer | geometry - postgis | public | st_buffer | text, double precision | geometry - postgis | public | st_buildarea | geometry | geometry - postgis | public | st_centroid | text | geometry - postgis | public | st_centroid | geography, use_spheroid boolean | geography - postgis | public | st_centroid | geometry | geometry - postgis | public | st_chaikinsmoothing | geometry, integer, boolean | geometry - postgis | public | st_cleangeometry | geometry | geometry - postgis | public | st_clipbybox2d | geom geometry, box box2d | geometry - postgis | public | st_closestpoint | geom1 geometry, geom2 geometry | geometry - postgis | public | st_closestpointofapproach | geometry, geometry | double precision - postgis | public | st_clusterdbscan | geometry, eps double precision, minpoints integer | integer - postgis | public | st_clusterintersecting | geometry[] | geometry[] - postgis | public | st_clusterintersecting | geometry | geometry[] - postgis | public | st_clusterkmeans | geom geometry, k integer, max_radius double precision | integer - postgis | public | st_clusterwithin | geometry[], double precision | geometry[] - postgis | public | st_clusterwithin | geometry, double precision | geometry[] - postgis | public | st_collect | geom1 geometry, geom2 geometry | geometry - postgis | public | st_collect | geometry[] | geometry - postgis | public | st_collect | geometry | geometry - postgis | public | st_collectionextract | geometry, integer | geometry - postgis | public | st_collectionextract | geometry | geometry - postgis | public | st_collectionhomogenize | geometry | geometry - postgis | public | st_combinebbox | box2d, geometry | box2d - postgis | public | st_combinebbox | box3d, geometry | box3d - postgis | public | st_combinebbox | box3d, box3d | box3d - postgis | public | st_concavehull | param_geom geometry, param_pctconvex double precision, param_allow_holes boolean | geometry - postgis | public | st_contains | geom1 geometry, geom2 geometry | boolean - postgis | public | st_containsproperly | geom1 geometry, geom2 geometry | boolean - postgis | public | st_convexhull | geometry | geometry - postgis | public | st_coorddim | geometry geometry | smallint - postgis | public | st_coveredby | geom1 geometry, geom2 geometry | boolean - postgis | public | st_coveredby | text, text | boolean - postgis | public | st_coveredby | geog1 geography, geog2 geography | boolean - postgis | public | st_covers | geom1 geometry, geom2 geometry | boolean - postgis | public | st_covers | text, text | boolean - postgis | public | st_covers | geog1 geography, geog2 geography | boolean - postgis | public | st_cpawithin | geometry, geometry, double precision | boolean - postgis | public | st_crosses | geom1 geometry, geom2 geometry | boolean - postgis | public | st_curvetoline | geom geometry, tol double precision, toltype integer, flags integer | geometry - postgis | public | st_delaunaytriangles | g1 geometry, tolerance double precision, flags integer | geometry - postgis | public | st_dfullywithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | st_difference | geom1 geometry, geom2 geometry, gridsize double precision | geometry - postgis | public | st_dimension | geometry | integer - postgis | public | st_disjoint | geom1 geometry, geom2 geometry | boolean - postgis | public | st_distance | geom1 geometry, geom2 geometry | double precision - postgis | public | st_distance | text, text | double precision - postgis | public | st_distance | geog1 geography, geog2 geography, use_spheroid boolean | double precision - postgis | public | st_distancecpa | geometry, geometry | double precision - postgis | public | st_distancesphere | geom1 geometry, geom2 geometry | double precision - postgis | public | st_distancesphere | geom1 geometry, geom2 geometry, radius double precision | double precision - postgis | public | st_distancespheroid | geom1 geometry, geom2 geometry, spheroid | double precision - postgis | public | st_distancespheroid | geom1 geometry, geom2 geometry | double precision - postgis | public | st_dump | geometry | SETOF geometry_dump - postgis | public | st_dumppoints | geometry | SETOF geometry_dump - postgis | public | st_dumprings | geometry | SETOF geometry_dump - postgis | public | st_dumpsegments | geometry | SETOF geometry_dump - postgis | public | st_dwithin | text, text, double precision | boolean - postgis | public | st_dwithin | geog1 geography, geog2 geography, tolerance double precision, use_spheroid boolean | boolean - postgis | public | st_dwithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | st_endpoint | geometry | geometry - postgis | public | st_envelope | geometry | geometry - postgis | public | st_equals | geom1 geometry, geom2 geometry | boolean - postgis | public | st_estimatedextent | text, text, text, boolean | box2d - postgis | public | st_estimatedextent | text, text | box2d - postgis | public | st_estimatedextent | text, text, text | box2d - postgis | public | st_expand | box3d, double precision | box3d - postgis | public | st_expand | box box3d, dx double precision, dy double precision, dz double precision | box3d - postgis | public | st_expand | box2d, double precision | box2d - postgis | public | st_expand | box box2d, dx double precision, dy double precision | box2d - postgis | public | st_expand | geometry, double precision | geometry - postgis | public | st_expand | geom geometry, dx double precision, dy double precision, dz double precision, dm double precision | geometry - postgis | public | st_extent | geometry | box2d - postgis | public | st_exteriorring | geometry | geometry - postgis | public | st_filterbym | geometry, double precision, double precision, boolean | geometry - postgis | public | st_findextent | text, text | box2d - postgis | public | st_findextent | text, text, text | box2d - postgis | public | st_flipcoordinates | geometry | geometry - postgis | public | st_force2d | geometry | geometry - postgis | public | st_force3d | geom geometry, zvalue double precision | geometry - postgis | public | st_force3dm | geom geometry, mvalue double precision | geometry - postgis | public | st_force3dz | geom geometry, zvalue double precision | geometry - postgis | public | st_force4d | geom geometry, zvalue double precision, mvalue double precision | geometry - postgis | public | st_forcecollection | geometry | geometry - postgis | public | st_forcecurve | geometry | geometry - postgis | public | st_forcepolygonccw | geometry | geometry - postgis | public | st_forcepolygoncw | geometry | geometry - postgis | public | st_forcerhr | geometry | geometry - postgis | public | st_forcesfs | geometry, version text | geometry - postgis | public | st_forcesfs | geometry | geometry - postgis | public | st_frechetdistance | geom1 geometry, geom2 geometry, double precision | double precision - postgis | public | st_fromflatgeobuf | anyelement, bytea | SETOF anyelement - postgis | public | st_fromflatgeobuftotable | text, text, bytea | void - postgis | public | st_generatepoints | area geometry, npoints integer, seed integer | geometry - postgis | public | st_generatepoints | area geometry, npoints integer | geometry - postgis | public | st_geogfromtext | text | geography - postgis | public | st_geogfromwkb | bytea | geography - postgis | public | st_geographyfromtext | text | geography - postgis | public | st_geohash | geog geography, maxchars integer | text - postgis | public | st_geohash | geom geometry, maxchars integer | text - postgis | public | st_geomcollfromtext | text | geometry - postgis | public | st_geomcollfromtext | text, integer | geometry - postgis | public | st_geomcollfromwkb | bytea, integer | geometry - postgis | public | st_geomcollfromwkb | bytea | geometry - postgis | public | st_geometricmedian | g geometry, tolerance double precision, max_iter integer, fail_if_not_converged boolean | geometry - postgis | public | st_geometryfromtext | text | geometry - postgis | public | st_geometryfromtext | text, integer | geometry - postgis | public | st_geometryn | geometry, integer | geometry - postgis | public | st_geometrytype | geometry | text - postgis | public | st_geomfromewkb | bytea | geometry - postgis | public | st_geomfromewkt | text | geometry - postgis | public | st_geomfromgeohash | text, integer | geometry - postgis | public | st_geomfromgeojson | text | geometry - postgis | public | st_geomfromgeojson | json | geometry - postgis | public | st_geomfromgeojson | jsonb | geometry - postgis | public | st_geomfromgml | text | geometry - postgis | public | st_geomfromgml | text, integer | geometry - postgis | public | st_geomfromkml | text | geometry - postgis | public | st_geomfrommarc21 | marc21xml text | geometry - postgis | public | st_geomfromtext | text | geometry - postgis | public | st_geomfromtext | text, integer | geometry - postgis | public | st_geomfromtwkb | bytea | geometry - postgis | public | st_geomfromwkb | bytea, integer | geometry - postgis | public | st_geomfromwkb | bytea | geometry - postgis | public | st_gmltosql | text | geometry - postgis | public | st_gmltosql | text, integer | geometry - postgis | public | st_hasarc | geometry geometry | boolean - postgis | public | st_hausdorffdistance | geom1 geometry, geom2 geometry | double precision - postgis | public | st_hausdorffdistance | geom1 geometry, geom2 geometry, double precision | double precision - postgis | public | st_hexagon | size double precision, cell_i integer, cell_j integer, origin geometry | geometry - postgis | public | st_hexagongrid | size double precision, bounds geometry, OUT geom geometry, OUT i integer, OUT j integer | SETOF record - postgis | public | st_interiorringn | geometry, integer | geometry - postgis | public | st_interpolatepoint | line geometry, point geometry | double precision - postgis | public | st_intersection | geom1 geometry, geom2 geometry, gridsize double precision | geometry - postgis | public | st_intersection | text, text | geometry - postgis | public | st_intersection | geography, geography | geography - postgis | public | st_intersects | geom1 geometry, geom2 geometry | boolean - postgis | public | st_intersects | text, text | boolean - postgis | public | st_intersects | geog1 geography, geog2 geography | boolean - postgis | public | st_isclosed | geometry | boolean - postgis | public | st_iscollection | geometry | boolean - postgis | public | st_isempty | geometry | boolean - postgis | public | st_ispolygonccw | geometry | boolean - postgis | public | st_ispolygoncw | geometry | boolean - postgis | public | st_isring | geometry | boolean - postgis | public | st_issimple | geometry | boolean - postgis | public | st_isvalid | geometry, integer | boolean - postgis | public | st_isvalid | geometry | boolean - postgis | public | st_isvaliddetail | geom geometry, flags integer | valid_detail - postgis | public | st_isvalidreason | geometry, integer | text - postgis | public | st_isvalidreason | geometry | text - postgis | public | st_isvalidtrajectory | geometry | boolean - postgis | public | st_length | geog geography, use_spheroid boolean | double precision - postgis | public | st_length | text | double precision - postgis | public | st_length | geometry | double precision - postgis | public | st_length2d | geometry | double precision - postgis | public | st_length2dspheroid | geometry, spheroid | double precision - postgis | public | st_lengthspheroid | geometry, spheroid | double precision - postgis | public | st_letters | letters text, font json | geometry - postgis | public | st_linecrossingdirection | line1 geometry, line2 geometry | integer - postgis | public | st_linefromencodedpolyline | txtin text, nprecision integer | geometry - postgis | public | st_linefrommultipoint | geometry | geometry - postgis | public | st_linefromtext | text | geometry - postgis | public | st_linefromtext | text, integer | geometry - postgis | public | st_linefromwkb | bytea, integer | geometry - postgis | public | st_linefromwkb | bytea | geometry - postgis | public | st_lineinterpolatepoint | geometry, double precision | geometry - postgis | public | st_lineinterpolatepoints | geometry, double precision, repeat boolean | geometry - postgis | public | st_linelocatepoint | geom1 geometry, geom2 geometry | double precision - postgis | public | st_linemerge | geometry, boolean | geometry - postgis | public | st_linemerge | geometry | geometry - postgis | public | st_linestringfromwkb | bytea, integer | geometry - postgis | public | st_linestringfromwkb | bytea | geometry - postgis | public | st_linesubstring | geometry, double precision, double precision | geometry - postgis | public | st_linetocurve | geometry geometry | geometry - postgis | public | st_locatealong | geometry geometry, measure double precision, leftrightoffset double precision | geometry - postgis | public | st_locatebetween | geometry geometry, frommeasure double precision, tomeasure double precision, leftrightoffset double precision | geometry - postgis | public | st_locatebetweenelevations | geometry geometry, fromelevation double precision, toelevation double precision | geometry - postgis | public | st_longestline | geom1 geometry, geom2 geometry | geometry - postgis | public | st_m | geometry | double precision - postgis | public | st_makebox2d | geom1 geometry, geom2 geometry | box2d - postgis | public | st_makeenvelope | double precision, double precision, double precision, double precision, integer | geometry - postgis | public | st_makeline | geom1 geometry, geom2 geometry | geometry - postgis | public | st_makeline | geometry[] | geometry - postgis | public | st_makeline | geometry | geometry - postgis | public | st_makepoint | double precision, double precision, double precision, double precision | geometry - postgis | public | st_makepoint | double precision, double precision | geometry - postgis | public | st_makepoint | double precision, double precision, double precision | geometry - postgis | public | st_makepointm | double precision, double precision, double precision | geometry - postgis | public | st_makepolygon | geometry, geometry[] | geometry - postgis | public | st_makepolygon | geometry | geometry - postgis | public | st_makevalid | geom geometry, params text | geometry - postgis | public | st_makevalid | geometry | geometry - postgis | public | st_maxdistance | geom1 geometry, geom2 geometry | double precision - postgis | public | st_maximuminscribedcircle | geometry, OUT center geometry, OUT nearest geometry, OUT radius double precision | record - postgis | public | st_memcollect | geometry | geometry - postgis | public | st_memsize | geometry | integer - postgis | public | st_memunion | geometry | geometry - postgis | public | st_minimumboundingcircle | inputgeom geometry, segs_per_quarter integer | geometry - postgis | public | st_minimumboundingradius | geometry, OUT center geometry, OUT radius double precision | record - postgis | public | st_minimumclearance | geometry | double precision - postgis | public | st_minimumclearanceline | geometry | geometry - postgis | public | st_mlinefromtext | text | geometry - postgis | public | st_mlinefromtext | text, integer | geometry - postgis | public | st_mlinefromwkb | bytea, integer | geometry - postgis | public | st_mlinefromwkb | bytea | geometry - postgis | public | st_mpointfromtext | text | geometry - postgis | public | st_mpointfromtext | text, integer | geometry - postgis | public | st_mpointfromwkb | bytea, integer | geometry - postgis | public | st_mpointfromwkb | bytea | geometry - postgis | public | st_mpolyfromtext | text | geometry - postgis | public | st_mpolyfromtext | text, integer | geometry - postgis | public | st_mpolyfromwkb | bytea, integer | geometry - postgis | public | st_mpolyfromwkb | bytea | geometry - postgis | public | st_multi | geometry | geometry - postgis | public | st_multilinefromwkb | bytea | geometry - postgis | public | st_multilinestringfromtext | text | geometry - postgis | public | st_multilinestringfromtext | text, integer | geometry - postgis | public | st_multipointfromtext | text | geometry - postgis | public | st_multipointfromwkb | bytea, integer | geometry - postgis | public | st_multipointfromwkb | bytea | geometry - postgis | public | st_multipolyfromwkb | bytea, integer | geometry - postgis | public | st_multipolyfromwkb | bytea | geometry - postgis | public | st_multipolygonfromtext | text | geometry - postgis | public | st_multipolygonfromtext | text, integer | geometry - postgis | public | st_ndims | geometry | smallint - postgis | public | st_node | g geometry | geometry - postgis | public | st_normalize | geom geometry | geometry - postgis | public | st_npoints | geometry | integer - postgis | public | st_nrings | geometry | integer - postgis | public | st_numgeometries | geometry | integer - postgis | public | st_numinteriorring | geometry | integer - postgis | public | st_numinteriorrings | geometry | integer - postgis | public | st_numpatches | geometry | integer - postgis | public | st_numpoints | geometry | integer - postgis | public | st_offsetcurve | line geometry, distance double precision, params text | geometry - postgis | public | st_orderingequals | geom1 geometry, geom2 geometry | boolean - postgis | public | st_orientedenvelope | geometry | geometry - postgis | public | st_overlaps | geom1 geometry, geom2 geometry | boolean - postgis | public | st_patchn | geometry, integer | geometry - postgis | public | st_perimeter | geog geography, use_spheroid boolean | double precision - postgis | public | st_perimeter | geometry | double precision - postgis | public | st_perimeter2d | geometry | double precision - postgis | public | st_point | double precision, double precision, srid integer | geometry - postgis | public | st_point | double precision, double precision | geometry - postgis | public | st_pointfromgeohash | text, integer | geometry - postgis | public | st_pointfromtext | text | geometry - postgis | public | st_pointfromtext | text, integer | geometry - postgis | public | st_pointfromwkb | bytea, integer | geometry - postgis | public | st_pointfromwkb | bytea | geometry - postgis | public | st_pointinsidecircle | geometry, double precision, double precision, double precision | boolean - postgis | public | st_pointm | xcoordinate double precision, ycoordinate double precision, mcoordinate double precision, srid integer | geometry - postgis | public | st_pointn | geometry, integer | geometry - postgis | public | st_pointonsurface | geometry | geometry - postgis | public | st_points | geometry | geometry - postgis | public | st_pointz | xcoordinate double precision, ycoordinate double precision, zcoordinate double precision, srid integer | geometry - postgis | public | st_pointzm | xcoordinate double precision, ycoordinate double precision, zcoordinate double precision, mcoordinate double precision, srid integer | geometry - postgis | public | st_polyfromtext | text | geometry - postgis | public | st_polyfromtext | text, integer | geometry - postgis | public | st_polyfromwkb | bytea, integer | geometry - postgis | public | st_polyfromwkb | bytea | geometry - postgis | public | st_polygon | geometry, integer | geometry - postgis | public | st_polygonfromtext | text | geometry - postgis | public | st_polygonfromtext | text, integer | geometry - postgis | public | st_polygonfromwkb | bytea, integer | geometry - postgis | public | st_polygonfromwkb | bytea | geometry - postgis | public | st_polygonize | geometry[] | geometry - postgis | public | st_polygonize | geometry | geometry - postgis | public | st_project | geog geography, distance double precision, azimuth double precision | geography - postgis | public | st_quantizecoordinates | g geometry, prec_x integer, prec_y integer, prec_z integer, prec_m integer | geometry - postgis | public | st_reduceprecision | geom geometry, gridsize double precision | geometry - postgis | public | st_relate | geom1 geometry, geom2 geometry, integer | text - postgis | public | st_relate | geom1 geometry, geom2 geometry | text - postgis | public | st_relate | geom1 geometry, geom2 geometry, text | boolean - postgis | public | st_relatematch | text, text | boolean - postgis | public | st_removepoint | geometry, integer | geometry - postgis | public | st_removerepeatedpoints | geom geometry, tolerance double precision | geometry - postgis | public | st_reverse | geometry | geometry - postgis | public | st_rotate | geometry, double precision, geometry | geometry - postgis | public | st_rotate | geometry, double precision, double precision, double precision | geometry - postgis | public | st_rotate | geometry, double precision | geometry - postgis | public | st_rotatex | geometry, double precision | geometry - postgis | public | st_rotatey | geometry, double precision | geometry - postgis | public | st_rotatez | geometry, double precision | geometry - postgis | public | st_scale | geometry, double precision, double precision | geometry - postgis | public | st_scale | geometry, double precision, double precision, double precision | geometry - postgis | public | st_scale | geometry, geometry, origin geometry | geometry - postgis | public | st_scale | geometry, geometry | geometry - postgis | public | st_scroll | geometry, geometry | geometry - postgis | public | st_segmentize | geog geography, max_segment_length double precision | geography - postgis | public | st_segmentize | geometry, double precision | geometry - postgis | public | st_seteffectivearea | geometry, double precision, integer | geometry - postgis | public | st_setpoint | geometry, integer, geometry | geometry - postgis | public | st_setsrid | geog geography, srid integer | geography - postgis | public | st_setsrid | geom geometry, srid integer | geometry - postgis | public | st_sharedpaths | geom1 geometry, geom2 geometry | geometry - postgis | public | st_shiftlongitude | geometry | geometry - postgis | public | st_shortestline | geom1 geometry, geom2 geometry | geometry - postgis | public | st_simplify | geometry, double precision, boolean | geometry - postgis | public | st_simplify | geometry, double precision | geometry - postgis | public | st_simplifypolygonhull | geom geometry, vertex_fraction double precision, is_outer boolean | geometry - postgis | public | st_simplifypreservetopology | geometry, double precision | geometry - postgis | public | st_simplifyvw | geometry, double precision | geometry - postgis | public | st_snap | geom1 geometry, geom2 geometry, double precision | geometry - postgis | public | st_snaptogrid | geometry, double precision, double precision | geometry - postgis | public | st_snaptogrid | geom1 geometry, geom2 geometry, double precision, double precision, double precision, double precision | geometry - postgis | public | st_snaptogrid | geometry, double precision, double precision, double precision, double precision | geometry - postgis | public | st_snaptogrid | geometry, double precision | geometry - postgis | public | st_split | geom1 geometry, geom2 geometry | geometry - postgis | public | st_square | size double precision, cell_i integer, cell_j integer, origin geometry | geometry - postgis | public | st_squaregrid | size double precision, bounds geometry, OUT geom geometry, OUT i integer, OUT j integer | SETOF record - postgis | public | st_srid | geog geography | integer - postgis | public | st_srid | geom geometry | integer - postgis | public | st_startpoint | geometry | geometry - postgis | public | st_subdivide | geom geometry, maxvertices integer, gridsize double precision | SETOF geometry - postgis | public | st_summary | geography | text - postgis | public | st_summary | geometry | text - postgis | public | st_swapordinates | geom geometry, ords cstring | geometry - postgis | public | st_symdifference | geom1 geometry, geom2 geometry, gridsize double precision | geometry - postgis | public | st_symmetricdifference | geom1 geometry, geom2 geometry | geometry - postgis | public | st_tileenvelope | zoom integer, x integer, y integer, bounds geometry, margin double precision | geometry - postgis | public | st_touches | geom1 geometry, geom2 geometry | boolean - postgis | public | st_transform | geom geometry, to_proj text | geometry - postgis | public | st_transform | geom geometry, from_proj text, to_srid integer | geometry - postgis | public | st_transform | geometry, integer | geometry - postgis | public | st_transform | geom geometry, from_proj text, to_proj text | geometry - postgis | public | st_translate | geometry, double precision, double precision | geometry - postgis | public | st_translate | geometry, double precision, double precision, double precision | geometry - postgis | public | st_transscale | geometry, double precision, double precision, double precision, double precision | geometry - postgis | public | st_triangulatepolygon | g1 geometry | geometry - postgis | public | st_unaryunion | geometry, gridsize double precision | geometry - postgis | public | st_union | geom1 geometry, geom2 geometry, gridsize double precision | geometry - postgis | public | st_union | geom1 geometry, geom2 geometry | geometry - postgis | public | st_union | geometry[] | geometry - postgis | public | st_union | geometry, gridsize double precision | geometry - postgis | public | st_union | geometry | geometry - postgis | public | st_voronoilines | g1 geometry, tolerance double precision, extend_to geometry | geometry - postgis | public | st_voronoipolygons | g1 geometry, tolerance double precision, extend_to geometry | geometry - postgis | public | st_within | geom1 geometry, geom2 geometry | boolean - postgis | public | st_wkbtosql | wkb bytea | geometry - postgis | public | st_wkttosql | text | geometry - postgis | public | st_wrapx | geom geometry, wrap double precision, move double precision | geometry - postgis | public | st_x | geometry | double precision - postgis | public | st_xmax | box3d | double precision - postgis | public | st_xmin | box3d | double precision - postgis | public | st_y | geometry | double precision - postgis | public | st_ymax | box3d | double precision - postgis | public | st_ymin | box3d | double precision - postgis | public | st_z | geometry | double precision - postgis | public | st_zmax | box3d | double precision - postgis | public | st_zmflag | geometry | smallint - postgis | public | st_zmin | box3d | double precision - postgis | public | text | geometry | text - postgis | public | unlockrows | text | integer - postgis | public | updategeometrysrid | catalogn_name character varying, schema_name character varying, table_name character varying, column_name character varying, new_srid_in integer | text - postgis | public | updategeometrysrid | character varying, character varying, character varying, integer | text - postgis | public | updategeometrysrid | character varying, character varying, integer | text - postgis_raster | public | __st_countagg_transfn | agg agg_count, rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision | agg_count - postgis_raster | public | _add_overview_constraint | ovschema name, ovtable name, ovcolumn name, refschema name, reftable name, refcolumn name, factor integer | boolean - postgis_raster | public | _add_raster_constraint | cn name, sql text | boolean - postgis_raster | public | _add_raster_constraint_alignment | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_blocksize | rastschema name, rasttable name, rastcolumn name, axis text | boolean - postgis_raster | public | _add_raster_constraint_coverage_tile | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_extent | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_nodata_values | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_num_bands | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_out_db | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_pixel_types | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_scale | rastschema name, rasttable name, rastcolumn name, axis character | boolean - postgis_raster | public | _add_raster_constraint_spatially_unique | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_srid | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_overview_constraint | ovschema name, ovtable name, ovcolumn name | boolean - postgis_raster | public | _drop_raster_constraint | rastschema name, rasttable name, cn name | boolean - postgis_raster | public | _drop_raster_constraint_alignment | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_blocksize | rastschema name, rasttable name, rastcolumn name, axis text | boolean - postgis_raster | public | _drop_raster_constraint_coverage_tile | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_extent | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_nodata_values | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_num_bands | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_out_db | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_pixel_types | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_regular_blocking | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_scale | rastschema name, rasttable name, rastcolumn name, axis character | boolean - postgis_raster | public | _drop_raster_constraint_spatially_unique | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_srid | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _overview_constraint | ov raster, factor integer, refschema name, reftable name, refcolumn name | boolean - postgis_raster | public | _overview_constraint_info | ovschema name, ovtable name, ovcolumn name, OUT refschema name, OUT reftable name, OUT refcolumn name, OUT factor integer | record - postgis_raster | public | _raster_constraint_info_alignment | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _raster_constraint_info_blocksize | rastschema name, rasttable name, rastcolumn name, axis text | integer - postgis_raster | public | _raster_constraint_info_coverage_tile | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _raster_constraint_info_extent | rastschema name, rasttable name, rastcolumn name | geometry - postgis_raster | public | _raster_constraint_info_index | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _raster_constraint_info_nodata_values | rastschema name, rasttable name, rastcolumn name | double precision[] - postgis_raster | public | _raster_constraint_info_num_bands | rastschema name, rasttable name, rastcolumn name | integer - postgis_raster | public | _raster_constraint_info_out_db | rastschema name, rasttable name, rastcolumn name | boolean[] - postgis_raster | public | _raster_constraint_info_pixel_types | rastschema name, rasttable name, rastcolumn name | text[] - postgis_raster | public | _raster_constraint_info_regular_blocking | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _raster_constraint_info_scale | rastschema name, rasttable name, rastcolumn name, axis character | double precision - postgis_raster | public | _raster_constraint_info_spatially_unique | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _raster_constraint_info_srid | rastschema name, rasttable name, rastcolumn name | integer - postgis_raster | public | _raster_constraint_nodata_values | rast raster | numeric[] - postgis_raster | public | _raster_constraint_out_db | rast raster | boolean[] - postgis_raster | public | _raster_constraint_pixel_types | rast raster | text[] - postgis_raster | public | _st_aspect4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_asraster | geom geometry, scalex double precision, scaley double precision, width integer, height integer, pixeltype text[], value double precision[], nodataval double precision[], upperleftx double precision, upperlefty double precision, gridx double precision, gridy double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | _st_clip | rast raster, nband integer[], geom geometry, nodataval double precision[], crop boolean | raster - postgis_raster | public | _st_colormap | rast raster, nband integer, colormap text, method text | raster - postgis_raster | public | _st_contains | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_containsproperly | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_convertarray4ma | value double precision[] | double precision[] - postgis_raster | public | _st_count | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision | bigint - postgis_raster | public | _st_countagg_finalfn | agg agg_count | bigint - postgis_raster | public | _st_countagg_transfn | agg agg_count, rast raster, nband integer, exclude_nodata_value boolean | agg_count - postgis_raster | public | _st_countagg_transfn | agg agg_count, rast raster, exclude_nodata_value boolean | agg_count - postgis_raster | public | _st_countagg_transfn | agg agg_count, rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision | agg_count - postgis_raster | public | _st_coveredby | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_covers | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_dfullywithin | rast1 raster, nband1 integer, rast2 raster, nband2 integer, distance double precision | boolean - postgis_raster | public | _st_dwithin | rast1 raster, nband1 integer, rast2 raster, nband2 integer, distance double precision | boolean - postgis_raster | public | _st_gdalwarp | rast raster, algorithm text, maxerr double precision, srid integer, scalex double precision, scaley double precision, gridx double precision, gridy double precision, skewx double precision, skewy double precision, width integer, height integer | raster - postgis_raster | public | _st_grayscale4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_hillshade4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_histogram | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision, bins integer, width double precision[], "right" boolean, min double precision, max double precision, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | _st_intersects | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_intersects | geom geometry, rast raster, nband integer | boolean - postgis_raster | public | _st_mapalgebra | rastbandargset rastbandarg[], expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision | raster - postgis_raster | public | _st_mapalgebra | rastbandargset rastbandarg[], callbackfunc regprocedure, pixeltype text, distancex integer, distancey integer, extenttype text, customextent raster, mask double precision[], weighted boolean, VARIADIC userargs text[] | raster - postgis_raster | public | _st_neighborhood | rast raster, band integer, columnx integer, rowy integer, distancex integer, distancey integer, exclude_nodata_value boolean | double precision[] - postgis_raster | public | _st_overlaps | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_pixelascentroids | rast raster, band integer, columnx integer, rowy integer, exclude_nodata_value boolean | TABLE(geom geometry, val double precision, x integer, y integer) - postgis_raster | public | _st_pixelaspolygons | rast raster, band integer, columnx integer, rowy integer, exclude_nodata_value boolean | TABLE(geom geometry, val double precision, x integer, y integer) - postgis_raster | public | _st_quantile | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | _st_rastertoworldcoord | rast raster, columnx integer, rowy integer, OUT longitude double precision, OUT latitude double precision | record - postgis_raster | public | _st_reclass | rast raster, VARIADIC reclassargset reclassarg[] | raster - postgis_raster | public | _st_roughness4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_samealignment_finalfn | agg agg_samealignment | boolean - postgis_raster | public | _st_samealignment_transfn | agg agg_samealignment, rast raster | agg_samealignment - postgis_raster | public | _st_setvalues | rast raster, nband integer, x integer, y integer, newvalueset double precision[], noset boolean[], hasnosetvalue boolean, nosetvalue double precision, keepnodata boolean | raster - postgis_raster | public | _st_slope4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_summarystats | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision | summarystats - postgis_raster | public | _st_summarystats_finalfn | internal | summarystats - postgis_raster | public | _st_summarystats_transfn | internal, raster, integer, boolean, double precision | internal - postgis_raster | public | _st_summarystats_transfn | internal, raster, boolean, double precision | internal - postgis_raster | public | _st_summarystats_transfn | internal, raster, integer, boolean | internal - postgis_raster | public | _st_tile | rast raster, width integer, height integer, nband integer[], padwithnodata boolean, nodataval double precision | SETOF raster - postgis_raster | public | _st_touches | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_tpi4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_tri4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_union_finalfn | internal | raster - postgis_raster | public | _st_union_transfn | internal, raster, integer, text | internal - postgis_raster | public | _st_union_transfn | internal, raster | internal - postgis_raster | public | _st_union_transfn | internal, raster, text | internal - postgis_raster | public | _st_union_transfn | internal, raster, integer | internal - postgis_raster | public | _st_union_transfn | internal, raster, unionarg[] | internal - postgis_raster | public | _st_valuecount | rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer, OUT percent double precision | SETOF record - postgis_raster | public | _st_valuecount | rast raster, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer, OUT percent double precision | SETOF record - postgis_raster | public | _st_within | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_worldtorastercoord | rast raster, longitude double precision, latitude double precision, OUT columnx integer, OUT rowy integer | record - postgis_raster | public | _updaterastersrid | schema_name name, table_name name, column_name name, new_srid integer | boolean - postgis_raster | public | addoverviewconstraints | ovschema name, ovtable name, ovcolumn name, refschema name, reftable name, refcolumn name, ovfactor integer | boolean - postgis_raster | public | addoverviewconstraints | ovtable name, ovcolumn name, reftable name, refcolumn name, ovfactor integer | boolean - postgis_raster | public | addrasterconstraints | rastschema name, rasttable name, rastcolumn name, srid boolean, scale_x boolean, scale_y boolean, blocksize_x boolean, blocksize_y boolean, same_alignment boolean, regular_blocking boolean, num_bands boolean, pixel_types boolean, nodata_values boolean, out_db boolean, extent boolean | boolean - postgis_raster | public | addrasterconstraints | rasttable name, rastcolumn name, VARIADIC constraints text[] | boolean - postgis_raster | public | addrasterconstraints | rastschema name, rasttable name, rastcolumn name, VARIADIC constraints text[] | boolean - postgis_raster | public | addrasterconstraints | rasttable name, rastcolumn name, srid boolean, scale_x boolean, scale_y boolean, blocksize_x boolean, blocksize_y boolean, same_alignment boolean, regular_blocking boolean, num_bands boolean, pixel_types boolean, nodata_values boolean, out_db boolean, extent boolean | boolean - postgis_raster | public | box3d | raster | box3d - postgis_raster | public | bytea | raster | bytea - postgis_raster | public | dropoverviewconstraints | ovtable name, ovcolumn name | boolean - postgis_raster | public | dropoverviewconstraints | ovschema name, ovtable name, ovcolumn name | boolean - postgis_raster | public | droprasterconstraints | rastschema name, rasttable name, rastcolumn name, srid boolean, scale_x boolean, scale_y boolean, blocksize_x boolean, blocksize_y boolean, same_alignment boolean, regular_blocking boolean, num_bands boolean, pixel_types boolean, nodata_values boolean, out_db boolean, extent boolean | boolean - postgis_raster | public | droprasterconstraints | rasttable name, rastcolumn name, VARIADIC constraints text[] | boolean - postgis_raster | public | droprasterconstraints | rastschema name, rasttable name, rastcolumn name, VARIADIC constraints text[] | boolean - postgis_raster | public | droprasterconstraints | rasttable name, rastcolumn name, srid boolean, scale_x boolean, scale_y boolean, blocksize_x boolean, blocksize_y boolean, same_alignment boolean, regular_blocking boolean, num_bands boolean, pixel_types boolean, nodata_values boolean, out_db boolean, extent boolean | boolean - postgis_raster | public | geometry_contained_by_raster | geometry, raster | boolean - postgis_raster | public | geometry_raster_contain | geometry, raster | boolean - postgis_raster | public | geometry_raster_overlap | geometry, raster | boolean - postgis_raster | public | postgis_gdal_version | | text - postgis_raster | public | postgis_noop | raster | geometry - postgis_raster | public | postgis_raster_lib_build_date | | text - postgis_raster | public | postgis_raster_lib_version | | text - postgis_raster | public | postgis_raster_scripts_installed | | text - postgis_raster | public | raster_above | raster, raster | boolean - postgis_raster | public | raster_below | raster, raster | boolean - postgis_raster | public | raster_contain | raster, raster | boolean - postgis_raster | public | raster_contained | raster, raster | boolean - postgis_raster | public | raster_contained_by_geometry | raster, geometry | boolean - postgis_raster | public | raster_eq | raster, raster | boolean - postgis_raster | public | raster_geometry_contain | raster, geometry | boolean - postgis_raster | public | raster_geometry_overlap | raster, geometry | boolean - postgis_raster | public | raster_hash | raster | integer - postgis_raster | public | raster_in | cstring | raster - postgis_raster | public | raster_left | raster, raster | boolean - postgis_raster | public | raster_out | raster | cstring - postgis_raster | public | raster_overabove | raster, raster | boolean - postgis_raster | public | raster_overbelow | raster, raster | boolean - postgis_raster | public | raster_overlap | raster, raster | boolean - postgis_raster | public | raster_overleft | raster, raster | boolean - postgis_raster | public | raster_overright | raster, raster | boolean - postgis_raster | public | raster_right | raster, raster | boolean - postgis_raster | public | raster_same | raster, raster | boolean - postgis_raster | public | st_addband | rast raster, index integer, outdbfile text, outdbindex integer[], nodataval double precision | raster - postgis_raster | public | st_addband | rast raster, outdbfile text, outdbindex integer[], index integer, nodataval double precision | raster - postgis_raster | public | st_addband | rast raster, addbandargset addbandarg[] | raster - postgis_raster | public | st_addband | rast raster, pixeltype text, initialvalue double precision, nodataval double precision | raster - postgis_raster | public | st_addband | rast raster, index integer, pixeltype text, initialvalue double precision, nodataval double precision | raster - postgis_raster | public | st_addband | torast raster, fromrast raster, fromband integer, torastindex integer | raster - postgis_raster | public | st_addband | torast raster, fromrasts raster[], fromband integer, torastindex integer | raster - postgis_raster | public | st_approxcount | rast raster, exclude_nodata_value boolean, sample_percent double precision | bigint - postgis_raster | public | st_approxcount | rast raster, sample_percent double precision | bigint - postgis_raster | public | st_approxcount | rast raster, nband integer, sample_percent double precision | bigint - postgis_raster | public | st_approxcount | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision | bigint - postgis_raster | public | st_approxhistogram | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision, bins integer, "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_approxhistogram | rast raster, sample_percent double precision, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_approxhistogram | rast raster, nband integer, sample_percent double precision, bins integer, width double precision[], "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_approxhistogram | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision, bins integer, width double precision[], "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_approxhistogram | rast raster, nband integer, sample_percent double precision, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_approxhistogram | rast raster, nband integer, sample_percent double precision, bins integer, "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_approxquantile | rast raster, exclude_nodata_value boolean, quantile double precision | double precision - postgis_raster | public | st_approxquantile | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision, quantile double precision | double precision - postgis_raster | public | st_approxquantile | rast raster, nband integer, sample_percent double precision, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_approxquantile | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_approxquantile | rast raster, quantile double precision | double precision - postgis_raster | public | st_approxquantile | rast raster, sample_percent double precision, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_approxquantile | rast raster, nband integer, sample_percent double precision, quantile double precision | double precision - postgis_raster | public | st_approxquantile | rast raster, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_approxquantile | rast raster, sample_percent double precision, quantile double precision | double precision - postgis_raster | public | st_approxsummarystats | rast raster, exclude_nodata_value boolean, sample_percent double precision | summarystats - postgis_raster | public | st_approxsummarystats | rast raster, sample_percent double precision | summarystats - postgis_raster | public | st_approxsummarystats | rast raster, nband integer, sample_percent double precision | summarystats - postgis_raster | public | st_approxsummarystats | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision | summarystats - postgis_raster | public | st_asbinary | raster, outasin boolean | bytea - postgis_raster | public | st_asgdalraster | rast raster, format text, options text[], srid integer | bytea - postgis_raster | public | st_ashexwkb | raster, outasin boolean | text - postgis_raster | public | st_asjpeg | rast raster, options text[] | bytea - postgis_raster | public | st_asjpeg | rast raster, nbands integer[], options text[] | bytea - postgis_raster | public | st_asjpeg | rast raster, nband integer, options text[] | bytea - postgis_raster | public | st_asjpeg | rast raster, nbands integer[], quality integer | bytea - postgis_raster | public | st_asjpeg | rast raster, nband integer, quality integer | bytea - postgis_raster | public | st_aspect | rast raster, nband integer, customextent raster, pixeltype text, units text, interpolate_nodata boolean | raster - postgis_raster | public | st_aspect | rast raster, nband integer, pixeltype text, units text, interpolate_nodata boolean | raster - postgis_raster | public | st_aspng | rast raster, options text[] | bytea - postgis_raster | public | st_aspng | rast raster, nbands integer[], options text[] | bytea - postgis_raster | public | st_aspng | rast raster, nband integer, compression integer | bytea - postgis_raster | public | st_aspng | rast raster, nband integer, options text[] | bytea - postgis_raster | public | st_aspng | rast raster, nbands integer[], compression integer | bytea - postgis_raster | public | st_asraster | geom geometry, ref raster, pixeltype text[], value double precision[], nodataval double precision[], touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, scalex double precision, scaley double precision, pixeltype text, value double precision, nodataval double precision, upperleftx double precision, upperlefty double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, width integer, height integer, pixeltype text[], value double precision[], nodataval double precision[], upperleftx double precision, upperlefty double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, scalex double precision, scaley double precision, gridx double precision, gridy double precision, pixeltype text[], value double precision[], nodataval double precision[], skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, width integer, height integer, gridx double precision, gridy double precision, pixeltype text, value double precision, nodataval double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, ref raster, pixeltype text, value double precision, nodataval double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, scalex double precision, scaley double precision, gridx double precision, gridy double precision, pixeltype text, value double precision, nodataval double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, width integer, height integer, gridx double precision, gridy double precision, pixeltype text[], value double precision[], nodataval double precision[], skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, width integer, height integer, pixeltype text, value double precision, nodataval double precision, upperleftx double precision, upperlefty double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, scalex double precision, scaley double precision, pixeltype text[], value double precision[], nodataval double precision[], upperleftx double precision, upperlefty double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_astiff | rast raster, options text[], srid integer | bytea - postgis_raster | public | st_astiff | rast raster, compression text, srid integer | bytea - postgis_raster | public | st_astiff | rast raster, nbands integer[], compression text, srid integer | bytea - postgis_raster | public | st_astiff | rast raster, nbands integer[], options text[], srid integer | bytea - postgis_raster | public | st_aswkb | raster, outasin boolean | bytea - postgis_raster | public | st_band | rast raster, nbands text, delimiter character | raster - postgis_raster | public | st_band | rast raster, nbands integer[] | raster - postgis_raster | public | st_band | rast raster, nband integer | raster - postgis_raster | public | st_bandfilesize | rast raster, band integer | bigint - postgis_raster | public | st_bandfiletimestamp | rast raster, band integer | bigint - postgis_raster | public | st_bandisnodata | rast raster, forcechecking boolean | boolean - postgis_raster | public | st_bandisnodata | rast raster, band integer, forcechecking boolean | boolean - postgis_raster | public | st_bandmetadata | rast raster, band integer | TABLE(pixeltype text, nodatavalue double precision, isoutdb boolean, path text, outdbbandnum integer, filesize bigint, filetimestamp bigint) - postgis_raster | public | st_bandmetadata | rast raster, band integer[] | TABLE(bandnum integer, pixeltype text, nodatavalue double precision, isoutdb boolean, path text, outdbbandnum integer, filesize bigint, filetimestamp bigint) - postgis_raster | public | st_bandnodatavalue | rast raster, band integer | double precision - postgis_raster | public | st_bandpath | rast raster, band integer | text - postgis_raster | public | st_bandpixeltype | rast raster, band integer | text - postgis_raster | public | st_clip | rast raster, geom geometry, nodataval double precision[], crop boolean | raster - postgis_raster | public | st_clip | rast raster, geom geometry, nodataval double precision, crop boolean | raster - postgis_raster | public | st_clip | rast raster, nband integer, geom geometry, nodataval double precision, crop boolean | raster - postgis_raster | public | st_clip | rast raster, nband integer[], geom geometry, nodataval double precision[], crop boolean | raster - postgis_raster | public | st_clip | rast raster, geom geometry, crop boolean | raster - postgis_raster | public | st_clip | rast raster, nband integer, geom geometry, crop boolean | raster - postgis_raster | public | st_colormap | rast raster, colormap text, method text | raster - postgis_raster | public | st_colormap | rast raster, nband integer, colormap text, method text | raster - postgis_raster | public | st_contains | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_contains | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_containsproperly | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_containsproperly | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_contour | rast raster, bandnumber integer, level_interval double precision, level_base double precision, fixed_levels double precision[], polygonize boolean | TABLE(geom geometry, id integer, value double precision) - postgis_raster | public | st_convexhull | raster | geometry - postgis_raster | public | st_count | rast raster, nband integer, exclude_nodata_value boolean | bigint - postgis_raster | public | st_count | rast raster, exclude_nodata_value boolean | bigint - postgis_raster | public | st_countagg | raster, integer, boolean, double precision | bigint - postgis_raster | public | st_countagg | raster, integer, boolean | bigint - postgis_raster | public | st_countagg | raster, boolean | bigint - postgis_raster | public | st_coveredby | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_coveredby | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_covers | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_covers | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_createoverview | tab regclass, col name, factor integer, algo text | regclass - postgis_raster | public | st_dfullywithin | rast1 raster, nband1 integer, rast2 raster, nband2 integer, distance double precision | boolean - postgis_raster | public | st_dfullywithin | rast1 raster, rast2 raster, distance double precision | boolean - postgis_raster | public | st_disjoint | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_disjoint | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_distinct4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_distinct4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_dumpaspolygons | rast raster, band integer, exclude_nodata_value boolean | SETOF geomval - postgis_raster | public | st_dumpvalues | rast raster, nband integer, exclude_nodata_value boolean | double precision[] - postgis_raster | public | st_dumpvalues | rast raster, nband integer[], exclude_nodata_value boolean | TABLE(nband integer, valarray double precision[]) - postgis_raster | public | st_dwithin | rast1 raster, nband1 integer, rast2 raster, nband2 integer, distance double precision | boolean - postgis_raster | public | st_dwithin | rast1 raster, rast2 raster, distance double precision | boolean - postgis_raster | public | st_envelope | raster | geometry - postgis_raster | public | st_fromgdalraster | gdaldata bytea, srid integer | raster - postgis_raster | public | st_gdaldrivers | OUT idx integer, OUT short_name text, OUT long_name text, OUT can_read boolean, OUT can_write boolean, OUT create_options text | SETOF record - postgis_raster | public | st_georeference | rast raster, format text | text - postgis_raster | public | st_geotransform | raster, OUT imag double precision, OUT jmag double precision, OUT theta_i double precision, OUT theta_ij double precision, OUT xoffset double precision, OUT yoffset double precision | record - postgis_raster | public | st_grayscale | rastbandargset rastbandarg[], extenttype text | raster - postgis_raster | public | st_grayscale | rast raster, redband integer, greenband integer, blueband integer, extenttype text | raster - postgis_raster | public | st_hasnoband | rast raster, nband integer | boolean - postgis_raster | public | st_height | raster | integer - postgis_raster | public | st_hillshade | rast raster, nband integer, customextent raster, pixeltype text, azimuth double precision, altitude double precision, max_bright double precision, scale double precision, interpolate_nodata boolean | raster - postgis_raster | public | st_hillshade | rast raster, nband integer, pixeltype text, azimuth double precision, altitude double precision, max_bright double precision, scale double precision, interpolate_nodata boolean | raster - postgis_raster | public | st_histogram | rast raster, nband integer, bins integer, "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_histogram | rast raster, nband integer, bins integer, width double precision[], "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_histogram | rast raster, nband integer, exclude_nodata_value boolean, bins integer, "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_histogram | rast raster, nband integer, exclude_nodata_value boolean, bins integer, width double precision[], "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_interpolateraster | geom geometry, options text, rast raster, bandnumber integer | raster - postgis_raster | public | st_intersection | rast1 raster, rast2 raster, returnband text, nodataval double precision[] | raster - postgis_raster | public | st_intersection | rast1 raster, band1 integer, rast2 raster, band2 integer, returnband text, nodataval double precision | raster - postgis_raster | public | st_intersection | rast1 raster, band1 integer, rast2 raster, band2 integer, returnband text, nodataval double precision[] | raster - postgis_raster | public | st_intersection | geomin geometry, rast raster, band integer | SETOF geomval - postgis_raster | public | st_intersection | rast1 raster, rast2 raster, nodataval double precision | raster - postgis_raster | public | st_intersection | rast1 raster, band1 integer, rast2 raster, band2 integer, nodataval double precision | raster - postgis_raster | public | st_intersection | rast1 raster, rast2 raster, returnband text, nodataval double precision | raster - postgis_raster | public | st_intersection | rast raster, band integer, geomin geometry | SETOF geomval - postgis_raster | public | st_intersection | rast1 raster, band1 integer, rast2 raster, band2 integer, nodataval double precision[] | raster - postgis_raster | public | st_intersection | rast raster, geomin geometry | SETOF geomval - postgis_raster | public | st_intersection | rast1 raster, rast2 raster, nodataval double precision[] | raster - postgis_raster | public | st_intersects | rast raster, geom geometry, nband integer | boolean - postgis_raster | public | st_intersects | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_intersects | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_intersects | rast raster, nband integer, geom geometry | boolean - postgis_raster | public | st_intersects | geom geometry, rast raster, nband integer | boolean - postgis_raster | public | st_invdistweight4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_iscoveragetile | rast raster, coverage raster, tilewidth integer, tileheight integer | boolean - postgis_raster | public | st_isempty | rast raster | boolean - postgis_raster | public | st_makeemptycoverage | tilewidth integer, tileheight integer, width integer, height integer, upperleftx double precision, upperlefty double precision, scalex double precision, scaley double precision, skewx double precision, skewy double precision, srid integer | SETOF raster - postgis_raster | public | st_makeemptyraster | width integer, height integer, upperleftx double precision, upperlefty double precision, scalex double precision, scaley double precision, skewx double precision, skewy double precision, srid integer | raster - postgis_raster | public | st_makeemptyraster | width integer, height integer, upperleftx double precision, upperlefty double precision, pixelsize double precision | raster - postgis_raster | public | st_makeemptyraster | rast raster | raster - postgis_raster | public | st_mapalgebra | rast1 raster, rast2 raster, expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision | raster - postgis_raster | public | st_mapalgebra | rast raster, pixeltype text, expression text, nodataval double precision | raster - postgis_raster | public | st_mapalgebra | rast1 raster, band1 integer, rast2 raster, band2 integer, expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision | raster - postgis_raster | public | st_mapalgebra | rast raster, nband integer[], callbackfunc regprocedure, pixeltype text, extenttype text, customextent raster, distancex integer, distancey integer, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebra | rast raster, nband integer, callbackfunc regprocedure, mask double precision[], weighted boolean, pixeltype text, extenttype text, customextent raster, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebra | rastbandargset rastbandarg[], callbackfunc regprocedure, pixeltype text, extenttype text, customextent raster, distancex integer, distancey integer, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebra | rast1 raster, nband1 integer, rast2 raster, nband2 integer, callbackfunc regprocedure, pixeltype text, extenttype text, customextent raster, distancex integer, distancey integer, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebra | rast raster, nband integer, callbackfunc regprocedure, pixeltype text, extenttype text, customextent raster, distancex integer, distancey integer, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebra | rast raster, nband integer, pixeltype text, expression text, nodataval double precision | raster - postgis_raster | public | st_mapalgebraexpr | rast1 raster, rast2 raster, expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision | raster - postgis_raster | public | st_mapalgebraexpr | rast raster, pixeltype text, expression text, nodataval double precision | raster - postgis_raster | public | st_mapalgebraexpr | rast1 raster, band1 integer, rast2 raster, band2 integer, expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision | raster - postgis_raster | public | st_mapalgebraexpr | rast raster, band integer, pixeltype text, expression text, nodataval double precision | raster - postgis_raster | public | st_mapalgebrafct | rast raster, onerastuserfunc regprocedure | raster - postgis_raster | public | st_mapalgebrafct | rast1 raster, band1 integer, rast2 raster, band2 integer, tworastuserfunc regprocedure, pixeltype text, extenttype text, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebrafct | rast raster, pixeltype text, onerastuserfunc regprocedure | raster - postgis_raster | public | st_mapalgebrafct | rast raster, onerastuserfunc regprocedure, VARIADIC args text[] | raster - postgis_raster | public | st_mapalgebrafct | rast raster, pixeltype text, onerastuserfunc regprocedure, VARIADIC args text[] | raster - postgis_raster | public | st_mapalgebrafct | rast raster, band integer, onerastuserfunc regprocedure, VARIADIC args text[] | raster - postgis_raster | public | st_mapalgebrafct | rast raster, band integer, pixeltype text, onerastuserfunc regprocedure | raster - postgis_raster | public | st_mapalgebrafct | rast1 raster, rast2 raster, tworastuserfunc regprocedure, pixeltype text, extenttype text, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebrafct | rast raster, band integer, pixeltype text, onerastuserfunc regprocedure, VARIADIC args text[] | raster - postgis_raster | public | st_mapalgebrafct | rast raster, band integer, onerastuserfunc regprocedure | raster - postgis_raster | public | st_mapalgebrafctngb | rast raster, band integer, pixeltype text, ngbwidth integer, ngbheight integer, onerastngbuserfunc regprocedure, nodatamode text, VARIADIC args text[] | raster - postgis_raster | public | st_max4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_max4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_mean4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_mean4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_memsize | raster | integer - postgis_raster | public | st_metadata | rast raster, OUT upperleftx double precision, OUT upperlefty double precision, OUT width integer, OUT height integer, OUT scalex double precision, OUT scaley double precision, OUT skewx double precision, OUT skewy double precision, OUT srid integer, OUT numbands integer | record - postgis_raster | public | st_min4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_min4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_minconvexhull | rast raster, nband integer | geometry - postgis_raster | public | st_mindist4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_minpossiblevalue | pixeltype text | double precision - postgis_raster | public | st_nearestvalue | rast raster, columnx integer, rowy integer, exclude_nodata_value boolean | double precision - postgis_raster | public | st_nearestvalue | rast raster, band integer, columnx integer, rowy integer, exclude_nodata_value boolean | double precision - postgis_raster | public | st_nearestvalue | rast raster, band integer, pt geometry, exclude_nodata_value boolean | double precision - postgis_raster | public | st_nearestvalue | rast raster, pt geometry, exclude_nodata_value boolean | double precision - postgis_raster | public | st_neighborhood | rast raster, columnx integer, rowy integer, distancex integer, distancey integer, exclude_nodata_value boolean | double precision[] - postgis_raster | public | st_neighborhood | rast raster, band integer, pt geometry, distancex integer, distancey integer, exclude_nodata_value boolean | double precision[] - postgis_raster | public | st_neighborhood | rast raster, band integer, columnx integer, rowy integer, distancex integer, distancey integer, exclude_nodata_value boolean | double precision[] - postgis_raster | public | st_neighborhood | rast raster, pt geometry, distancex integer, distancey integer, exclude_nodata_value boolean | double precision[] - postgis_raster | public | st_notsamealignmentreason | rast1 raster, rast2 raster | text - postgis_raster | public | st_numbands | raster | integer - postgis_raster | public | st_overlaps | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_overlaps | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_pixelascentroid | rast raster, x integer, y integer | geometry - postgis_raster | public | st_pixelascentroids | rast raster, band integer, exclude_nodata_value boolean | TABLE(geom geometry, val double precision, x integer, y integer) - postgis_raster | public | st_pixelaspoint | rast raster, x integer, y integer | geometry - postgis_raster | public | st_pixelaspoints | rast raster, band integer, exclude_nodata_value boolean | TABLE(geom geometry, val double precision, x integer, y integer) - postgis_raster | public | st_pixelaspolygon | rast raster, x integer, y integer | geometry - postgis_raster | public | st_pixelaspolygons | rast raster, band integer, exclude_nodata_value boolean | TABLE(geom geometry, val double precision, x integer, y integer) - postgis_raster | public | st_pixelheight | raster | double precision - postgis_raster | public | st_pixelofvalue | rast raster, nband integer, search double precision, exclude_nodata_value boolean | TABLE(x integer, y integer) - postgis_raster | public | st_pixelofvalue | rast raster, search double precision, exclude_nodata_value boolean | TABLE(x integer, y integer) - postgis_raster | public | st_pixelofvalue | rast raster, nband integer, search double precision[], exclude_nodata_value boolean | TABLE(val double precision, x integer, y integer) - postgis_raster | public | st_pixelofvalue | rast raster, search double precision[], exclude_nodata_value boolean | TABLE(val double precision, x integer, y integer) - postgis_raster | public | st_pixelwidth | raster | double precision - postgis_raster | public | st_polygon | rast raster, band integer | geometry - postgis_raster | public | st_quantile | rast raster, exclude_nodata_value boolean, quantile double precision | double precision - postgis_raster | public | st_quantile | rast raster, nband integer, quantile double precision | double precision - postgis_raster | public | st_quantile | rast raster, nband integer, exclude_nodata_value boolean, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_quantile | rast raster, quantile double precision | double precision - postgis_raster | public | st_quantile | rast raster, nband integer, exclude_nodata_value boolean, quantile double precision | double precision - postgis_raster | public | st_quantile | rast raster, nband integer, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_quantile | rast raster, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_range4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_range4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_rastertoworldcoord | rast raster, columnx integer, rowy integer, OUT longitude double precision, OUT latitude double precision | record - postgis_raster | public | st_rastertoworldcoordx | rast raster, xr integer | double precision - postgis_raster | public | st_rastertoworldcoordx | rast raster, xr integer, yr integer | double precision - postgis_raster | public | st_rastertoworldcoordy | rast raster, xr integer, yr integer | double precision - postgis_raster | public | st_rastertoworldcoordy | rast raster, yr integer | double precision - postgis_raster | public | st_rastfromhexwkb | text | raster - postgis_raster | public | st_rastfromwkb | bytea | raster - postgis_raster | public | st_reclass | rast raster, nband integer, reclassexpr text, pixeltype text, nodataval double precision | raster - postgis_raster | public | st_reclass | rast raster, VARIADIC reclassargset reclassarg[] | raster - postgis_raster | public | st_reclass | rast raster, reclassexpr text, pixeltype text | raster - postgis_raster | public | st_resample | rast raster, ref raster, usescale boolean, algorithm text, maxerr double precision | raster - postgis_raster | public | st_resample | rast raster, width integer, height integer, gridx double precision, gridy double precision, skewx double precision, skewy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_resample | rast raster, scalex double precision, scaley double precision, gridx double precision, gridy double precision, skewx double precision, skewy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_resample | rast raster, ref raster, algorithm text, maxerr double precision, usescale boolean | raster - postgis_raster | public | st_rescale | rast raster, scalexy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_rescale | rast raster, scalex double precision, scaley double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_resize | rast raster, width integer, height integer, algorithm text, maxerr double precision | raster - postgis_raster | public | st_resize | rast raster, width text, height text, algorithm text, maxerr double precision | raster - postgis_raster | public | st_resize | rast raster, percentwidth double precision, percentheight double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_reskew | rast raster, skewx double precision, skewy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_reskew | rast raster, skewxy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_retile | tab regclass, col name, ext geometry, sfx double precision, sfy double precision, tw integer, th integer, algo text | SETOF raster - postgis_raster | public | st_rotation | raster | double precision - postgis_raster | public | st_roughness | rast raster, nband integer, customextent raster, pixeltype text, interpolate_nodata boolean | raster - postgis_raster | public | st_roughness | rast raster, nband integer, pixeltype text, interpolate_nodata boolean | raster - postgis_raster | public | st_samealignment | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_samealignment | raster | boolean - postgis_raster | public | st_samealignment | ulx1 double precision, uly1 double precision, scalex1 double precision, scaley1 double precision, skewx1 double precision, skewy1 double precision, ulx2 double precision, uly2 double precision, scalex2 double precision, scaley2 double precision, skewx2 double precision, skewy2 double precision | boolean - postgis_raster | public | st_scalex | raster | double precision - postgis_raster | public | st_scaley | raster | double precision - postgis_raster | public | st_setbandindex | rast raster, band integer, outdbindex integer, force boolean | raster - postgis_raster | public | st_setbandisnodata | rast raster, band integer | raster - postgis_raster | public | st_setbandnodatavalue | rast raster, band integer, nodatavalue double precision, forcechecking boolean | raster - postgis_raster | public | st_setbandnodatavalue | rast raster, nodatavalue double precision | raster - postgis_raster | public | st_setbandpath | rast raster, band integer, outdbpath text, outdbindex integer, force boolean | raster - postgis_raster | public | st_setgeoreference | rast raster, upperleftx double precision, upperlefty double precision, scalex double precision, scaley double precision, skewx double precision, skewy double precision | raster - postgis_raster | public | st_setgeoreference | rast raster, georef text, format text | raster - postgis_raster | public | st_setgeotransform | rast raster, imag double precision, jmag double precision, theta_i double precision, theta_ij double precision, xoffset double precision, yoffset double precision | raster - postgis_raster | public | st_setm | rast raster, geom geometry, resample text, band integer | geometry - postgis_raster | public | st_setrotation | rast raster, rotation double precision | raster - postgis_raster | public | st_setscale | rast raster, scalex double precision, scaley double precision | raster - postgis_raster | public | st_setscale | rast raster, scale double precision | raster - postgis_raster | public | st_setskew | rast raster, skewx double precision, skewy double precision | raster - postgis_raster | public | st_setskew | rast raster, skew double precision | raster - postgis_raster | public | st_setsrid | rast raster, srid integer | raster - postgis_raster | public | st_setupperleft | rast raster, upperleftx double precision, upperlefty double precision | raster - postgis_raster | public | st_setvalue | rast raster, nband integer, geom geometry, newvalue double precision | raster - postgis_raster | public | st_setvalue | rast raster, geom geometry, newvalue double precision | raster - postgis_raster | public | st_setvalue | rast raster, x integer, y integer, newvalue double precision | raster - postgis_raster | public | st_setvalue | rast raster, band integer, x integer, y integer, newvalue double precision | raster - postgis_raster | public | st_setvalues | rast raster, nband integer, x integer, y integer, newvalueset double precision[], nosetvalue double precision, keepnodata boolean | raster - postgis_raster | public | st_setvalues | rast raster, nband integer, x integer, y integer, newvalueset double precision[], noset boolean[], keepnodata boolean | raster - postgis_raster | public | st_setvalues | rast raster, nband integer, x integer, y integer, width integer, height integer, newvalue double precision, keepnodata boolean | raster - postgis_raster | public | st_setvalues | rast raster, x integer, y integer, width integer, height integer, newvalue double precision, keepnodata boolean | raster - postgis_raster | public | st_setvalues | rast raster, nband integer, geomvalset geomval[], keepnodata boolean | raster - postgis_raster | public | st_setz | rast raster, geom geometry, resample text, band integer | geometry - postgis_raster | public | st_skewx | raster | double precision - postgis_raster | public | st_skewy | raster | double precision - postgis_raster | public | st_slope | rast raster, nband integer, customextent raster, pixeltype text, units text, scale double precision, interpolate_nodata boolean | raster - postgis_raster | public | st_slope | rast raster, nband integer, pixeltype text, units text, scale double precision, interpolate_nodata boolean | raster - postgis_raster | public | st_snaptogrid | rast raster, gridx double precision, gridy double precision, scalex double precision, scaley double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_snaptogrid | rast raster, gridx double precision, gridy double precision, algorithm text, maxerr double precision, scalex double precision, scaley double precision | raster - postgis_raster | public | st_snaptogrid | rast raster, gridx double precision, gridy double precision, scalexy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_srid | raster | integer - postgis_raster | public | st_stddev4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_stddev4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_sum4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_sum4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_summary | rast raster | text - postgis_raster | public | st_summarystats | rast raster, nband integer, exclude_nodata_value boolean | summarystats - postgis_raster | public | st_summarystats | rast raster, exclude_nodata_value boolean | summarystats - postgis_raster | public | st_summarystatsagg | raster, integer, boolean, double precision | summarystats - postgis_raster | public | st_summarystatsagg | raster, integer, boolean | summarystats - postgis_raster | public | st_summarystatsagg | raster, boolean, double precision | summarystats - postgis_raster | public | st_tile | rast raster, nband integer, width integer, height integer, padwithnodata boolean, nodataval double precision | SETOF raster - postgis_raster | public | st_tile | rast raster, nband integer[], width integer, height integer, padwithnodata boolean, nodataval double precision | SETOF raster - postgis_raster | public | st_tile | rast raster, width integer, height integer, padwithnodata boolean, nodataval double precision | SETOF raster - postgis_raster | public | st_touches | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_touches | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_tpi | rast raster, nband integer, customextent raster, pixeltype text, interpolate_nodata boolean | raster - postgis_raster | public | st_tpi | rast raster, nband integer, pixeltype text, interpolate_nodata boolean | raster - postgis_raster | public | st_transform | rast raster, srid integer, algorithm text, maxerr double precision, scalex double precision, scaley double precision | raster - postgis_raster | public | st_transform | rast raster, srid integer, scalexy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_transform | rast raster, alignto raster, algorithm text, maxerr double precision | raster - postgis_raster | public | st_transform | rast raster, srid integer, scalex double precision, scaley double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_tri | rast raster, nband integer, customextent raster, pixeltype text, interpolate_nodata boolean | raster - postgis_raster | public | st_tri | rast raster, nband integer, pixeltype text, interpolate_nodata boolean | raster - postgis_raster | public | st_union | raster, integer | raster - postgis_raster | public | st_union | raster | raster - postgis_raster | public | st_union | raster, unionarg[] | raster - postgis_raster | public | st_union | raster, integer, text | raster - postgis_raster | public | st_union | raster, text | raster - postgis_raster | public | st_upperleftx | raster | double precision - postgis_raster | public | st_upperlefty | raster | double precision - postgis_raster | public | st_value | rast raster, band integer, x integer, y integer, exclude_nodata_value boolean | double precision - postgis_raster | public | st_value | rast raster, x integer, y integer, exclude_nodata_value boolean | double precision - postgis_raster | public | st_value | rast raster, band integer, pt geometry, exclude_nodata_value boolean, resample text | double precision - postgis_raster | public | st_value | rast raster, pt geometry, exclude_nodata_value boolean | double precision - postgis_raster | public | st_valuecount | rastertable text, rastercolumn text, nband integer, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer | SETOF record - postgis_raster | public | st_valuecount | rast raster, nband integer, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer | SETOF record - postgis_raster | public | st_valuecount | rastertable text, rastercolumn text, nband integer, searchvalue double precision, roundto double precision | integer - postgis_raster | public | st_valuecount | rastertable text, rastercolumn text, searchvalue double precision, roundto double precision | integer - postgis_raster | public | st_valuecount | rast raster, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer | SETOF record - postgis_raster | public | st_valuecount | rast raster, nband integer, searchvalue double precision, roundto double precision | integer - postgis_raster | public | st_valuecount | rast raster, searchvalue double precision, roundto double precision | integer - postgis_raster | public | st_valuecount | rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer | SETOF record - postgis_raster | public | st_valuecount | rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalue double precision, roundto double precision | integer - postgis_raster | public | st_valuecount | rast raster, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer | SETOF record - postgis_raster | public | st_valuecount | rastertable text, rastercolumn text, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer | SETOF record - postgis_raster | public | st_valuecount | rast raster, nband integer, exclude_nodata_value boolean, searchvalue double precision, roundto double precision | integer - postgis_raster | public | st_valuepercent | rast raster, searchvalues double precision[], roundto double precision, OUT value double precision, OUT percent double precision | SETOF record - postgis_raster | public | st_valuepercent | rastertable text, rastercolumn text, nband integer, searchvalue double precision, roundto double precision | double precision - postgis_raster | public | st_valuepercent | rastertable text, rastercolumn text, searchvalue double precision, roundto double precision | double precision - postgis_raster | public | st_valuepercent | rastertable text, rastercolumn text, searchvalues double precision[], roundto double precision, OUT value double precision, OUT percent double precision | SETOF record - postgis_raster | public | st_valuepercent | rast raster, nband integer, searchvalue double precision, roundto double precision | double precision - postgis_raster | public | st_valuepercent | rast raster, searchvalue double precision, roundto double precision | double precision - postgis_raster | public | st_valuepercent | rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT percent double precision | SETOF record - postgis_raster | public | st_valuepercent | rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalue double precision, roundto double precision | double precision - postgis_raster | public | st_valuepercent | rast raster, nband integer, searchvalues double precision[], roundto double precision, OUT value double precision, OUT percent double precision | SETOF record - postgis_raster | public | st_valuepercent | rastertable text, rastercolumn text, nband integer, searchvalues double precision[], roundto double precision, OUT value double precision, OUT percent double precision | SETOF record - postgis_raster | public | st_valuepercent | rast raster, nband integer, exclude_nodata_value boolean, searchvalue double precision, roundto double precision | double precision - postgis_raster | public | st_valuepercent | rast raster, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT percent double precision | SETOF record - postgis_raster | public | st_width | raster | integer - postgis_raster | public | st_within | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_within | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_worldtorastercoord | rast raster, longitude double precision, latitude double precision, OUT columnx integer, OUT rowy integer | record - postgis_raster | public | st_worldtorastercoord | rast raster, pt geometry, OUT columnx integer, OUT rowy integer | record - postgis_raster | public | st_worldtorastercoordx | rast raster, xw double precision | integer - postgis_raster | public | st_worldtorastercoordx | rast raster, xw double precision, yw double precision | integer - postgis_raster | public | st_worldtorastercoordx | rast raster, pt geometry | integer - postgis_raster | public | st_worldtorastercoordy | rast raster, xw double precision, yw double precision | integer - postgis_raster | public | st_worldtorastercoordy | rast raster, pt geometry | integer - postgis_raster | public | st_worldtorastercoordy | rast raster, yw double precision | integer - postgis_raster | public | updaterastersrid | table_name name, column_name name, new_srid integer | boolean - postgis_raster | public | updaterastersrid | schema_name name, table_name name, column_name name, new_srid integer | boolean - postgis_sfcgal | public | postgis_sfcgal_full_version | | text - postgis_sfcgal | public | postgis_sfcgal_noop | geometry | geometry - postgis_sfcgal | public | postgis_sfcgal_scripts_installed | | text - postgis_sfcgal | public | postgis_sfcgal_version | | text - postgis_sfcgal | public | st_3darea | geometry | double precision - postgis_sfcgal | public | st_3dconvexhull | geometry | geometry - postgis_sfcgal | public | st_3ddifference | geom1 geometry, geom2 geometry | geometry - postgis_sfcgal | public | st_3dintersection | geom1 geometry, geom2 geometry | geometry - postgis_sfcgal | public | st_3dunion | geom1 geometry, geom2 geometry | geometry - postgis_sfcgal | public | st_3dunion | geometry | geometry - postgis_sfcgal | public | st_alphashape | g1 geometry, alpha double precision, allow_holes boolean | geometry - postgis_sfcgal | public | st_approximatemedialaxis | geometry | geometry - postgis_sfcgal | public | st_constraineddelaunaytriangles | geometry | geometry - postgis_sfcgal | public | st_extrude | geometry, double precision, double precision, double precision | geometry - postgis_sfcgal | public | st_forcelhr | geometry | geometry - postgis_sfcgal | public | st_isplanar | geometry | boolean - postgis_sfcgal | public | st_issolid | geometry | boolean - postgis_sfcgal | public | st_makesolid | geometry | geometry - postgis_sfcgal | public | st_minkowskisum | geometry, geometry | geometry - postgis_sfcgal | public | st_optimalalphashape | g1 geometry, allow_holes boolean, nb_components integer | geometry - postgis_sfcgal | public | st_orientation | geometry | integer - postgis_sfcgal | public | st_straightskeleton | geometry | geometry - postgis_sfcgal | public | st_tesselate | geometry | geometry - postgis_sfcgal | public | st_volume | geometry | double precision - postgis_topology | topology | _asgmledge | edge_id integer, start_node integer, end_node integer, line geometry, visitedtable regclass, nsprefix_in text, prec integer, options integer, idprefix text, gmlver integer | text - postgis_topology | topology | _asgmlface | toponame text, face_id integer, visitedtable regclass, nsprefix_in text, prec integer, options integer, idprefix text, gmlver integer | text - postgis_topology | topology | _asgmlnode | id integer, point geometry, nsprefix_in text, prec integer, options integer, idprefix text, gmlver integer | text - postgis_topology | topology | _checkedgelinking | curedge_edge_id integer, prevedge_edge_id integer, prevedge_next_left_edge integer, prevedge_next_right_edge integer | topology.validatetopology_returntype - postgis_topology | topology | _st_adjacentedges | atopology character varying, anode integer, anedge integer | integer[] - postgis_topology | topology | _st_mintolerance | ageom geometry | double precision - postgis_topology | topology | _st_mintolerance | atopology character varying, ageom geometry | double precision - postgis_topology | topology | _validatetopologyedgelinking | bbox geometry | SETOF topology.validatetopology_returntype - postgis_topology | topology | _validatetopologygetfaceshellmaximaledgering | atopology character varying, aface integer | geometry - postgis_topology | topology | _validatetopologygetringedges | starting_edge integer | integer[] - postgis_topology | topology | _validatetopologyrings | bbox geometry | SETOF topology.validatetopology_returntype - postgis_topology | topology | addedge | atopology character varying, aline geometry | integer - postgis_topology | topology | addface | atopology character varying, apoly geometry, force_new boolean | integer - postgis_topology | topology | addnode | atopology character varying, apoint geometry, allowedgesplitting boolean, setcontainingface boolean | integer - postgis_topology | topology | addtopogeometrycolumn | toponame character varying, schema character varying, tbl character varying, col character varying, ltype character varying, child integer | integer - postgis_topology | topology | addtopogeometrycolumn | character varying, character varying, character varying, character varying, character varying | integer - postgis_topology | topology | addtosearchpath | a_schema_name character varying | text - postgis_topology | topology | asgml | tg topology.topogeometry | text - postgis_topology | topology | asgml | tg topology.topogeometry, nsprefix text | text - postgis_topology | topology | asgml | tg topology.topogeometry, nsprefix text, prec integer, opts integer | text - postgis_topology | topology | asgml | tg topology.topogeometry, nsprefix text, prec integer, options integer, vis regclass | text - postgis_topology | topology | asgml | tg topology.topogeometry, nsprefix_in text, precision_in integer, options_in integer, visitedtable regclass, idprefix text, gmlver integer | text - postgis_topology | topology | asgml | tg topology.topogeometry, nsprefix text, prec integer, options integer, visitedtable regclass, idprefix text | text - postgis_topology | topology | asgml | tg topology.topogeometry, visitedtable regclass, nsprefix text | text - postgis_topology | topology | asgml | tg topology.topogeometry, visitedtable regclass | text - postgis_topology | topology | astopojson | tg topology.topogeometry, edgemaptable regclass | text - postgis_topology | topology | cleartopogeom | tg topology.topogeometry | topology.topogeometry - postgis_topology | topology | copytopology | atopology character varying, newtopo character varying | integer - postgis_topology | topology | createtopogeom | toponame character varying, tg_type integer, layer_id integer, tg_objs topology.topoelementarray | topology.topogeometry - postgis_topology | topology | createtopogeom | toponame character varying, tg_type integer, layer_id integer | topology.topogeometry - postgis_topology | topology | createtopology | atopology character varying, srid integer, prec double precision, hasz boolean | integer - postgis_topology | topology | createtopology | character varying, integer | integer - postgis_topology | topology | createtopology | toponame character varying, srid integer, prec double precision | integer - postgis_topology | topology | createtopology | character varying | integer - postgis_topology | topology | droptopogeometrycolumn | schema character varying, tbl character varying, col character varying | text - postgis_topology | topology | droptopology | atopology character varying | text - postgis_topology | topology | equals | tg1 topology.topogeometry, tg2 topology.topogeometry | boolean - postgis_topology | topology | findlayer | tg topology.topogeometry | topology.layer - postgis_topology | topology | findlayer | schema_name name, table_name name, feature_column name | topology.layer - postgis_topology | topology | findlayer | topology_id integer, layer_id integer | topology.layer - postgis_topology | topology | findlayer | layer_table regclass, feature_column name | topology.layer - postgis_topology | topology | findtopology | integer | topology.topology - postgis_topology | topology | findtopology | text | topology.topology - postgis_topology | topology | findtopology | name, name, name | topology.topology - postgis_topology | topology | findtopology | topology.topogeometry | topology.topology - postgis_topology | topology | findtopology | regclass, name | topology.topology - postgis_topology | topology | geometry | topogeom topology.topogeometry | geometry - postgis_topology | topology | geometrytype | tg topology.topogeometry | text - postgis_topology | topology | getedgebypoint | atopology character varying, apoint geometry, tol1 double precision | integer - postgis_topology | topology | getfacebypoint | atopology character varying, apoint geometry, tol1 double precision | integer - postgis_topology | topology | getfacecontainingpoint | atopology text, apoint geometry | integer - postgis_topology | topology | getnodebypoint | atopology character varying, apoint geometry, tol1 double precision | integer - postgis_topology | topology | getnodeedges | atopology character varying, anode integer | SETOF topology.getfaceedges_returntype - postgis_topology | topology | getringedges | atopology character varying, anedge integer, maxedges integer | SETOF topology.getfaceedges_returntype - postgis_topology | topology | gettopogeomelementarray | tg topology.topogeometry | topology.topoelementarray - postgis_topology | topology | gettopogeomelementarray | toponame character varying, layer_id integer, tgid integer | topology.topoelementarray - postgis_topology | topology | gettopogeomelements | tg topology.topogeometry | SETOF topology.topoelement - postgis_topology | topology | gettopogeomelements | toponame character varying, layerid integer, tgid integer | SETOF topology.topoelement - postgis_topology | topology | gettopologyid | toponame character varying | integer - postgis_topology | topology | gettopologyname | topoid integer | character varying - postgis_topology | topology | gettopologysrid | toponame character varying | integer - postgis_topology | topology | intersects | tg1 topology.topogeometry, tg2 topology.topogeometry | boolean - postgis_topology | topology | layertrigger | | trigger - postgis_topology | topology | polygonize | toponame character varying | text - postgis_topology | topology | populate_topology_layer | | TABLE(schema_name text, table_name text, feature_column text) - postgis_topology | topology | postgis_topology_scripts_installed | | text - postgis_topology | topology | relationtrigger | | trigger - postgis_topology | topology | removeunusedprimitives | atopology text, bbox geometry | integer - postgis_topology | topology | st_addedgemodface | atopology character varying, anode integer, anothernode integer, acurve geometry | integer - postgis_topology | topology | st_addedgenewfaces | atopology character varying, anode integer, anothernode integer, acurve geometry | integer - postgis_topology | topology | st_addisoedge | atopology character varying, anode integer, anothernode integer, acurve geometry | integer - postgis_topology | topology | st_addisonode | atopology character varying, aface integer, apoint geometry | integer - postgis_topology | topology | st_changeedgegeom | atopology character varying, anedge integer, acurve geometry | text - postgis_topology | topology | st_createtopogeo | atopology character varying, acollection geometry | text - postgis_topology | topology | st_geometrytype | tg topology.topogeometry | text - postgis_topology | topology | st_getfaceedges | toponame character varying, face_id integer | SETOF topology.getfaceedges_returntype - postgis_topology | topology | st_getfacegeometry | toponame character varying, aface integer | geometry - postgis_topology | topology | st_inittopogeo | atopology character varying | text - postgis_topology | topology | st_modedgeheal | toponame character varying, e1id integer, e2id integer | integer - postgis_topology | topology | st_modedgesplit | atopology character varying, anedge integer, apoint geometry | integer - postgis_topology | topology | st_moveisonode | atopology character varying, anode integer, apoint geometry | text - postgis_topology | topology | st_newedgeheal | toponame character varying, e1id integer, e2id integer | integer - postgis_topology | topology | st_newedgessplit | atopology character varying, anedge integer, apoint geometry | integer - postgis_topology | topology | st_remedgemodface | toponame character varying, e1id integer | integer - postgis_topology | topology | st_remedgenewface | toponame character varying, e1id integer | integer - postgis_topology | topology | st_remisonode | character varying, integer | text - postgis_topology | topology | st_removeisoedge | atopology character varying, anedge integer | text - postgis_topology | topology | st_removeisonode | atopology character varying, anode integer | text - postgis_topology | topology | st_simplify | tg topology.topogeometry, tolerance double precision | geometry - postgis_topology | topology | st_srid | tg topology.topogeometry | integer - postgis_topology | topology | topoelementarray_agg | topology.topoelement | topology.topoelementarray - postgis_topology | topology | topoelementarray_append | topology.topoelementarray, topology.topoelement | topology.topoelementarray - postgis_topology | topology | topogeo_addgeometry | atopology character varying, ageom geometry, tolerance double precision | void - postgis_topology | topology | topogeo_addlinestring | atopology character varying, aline geometry, tolerance double precision | SETOF integer - postgis_topology | topology | topogeo_addpoint | atopology character varying, apoint geometry, tolerance double precision | integer - postgis_topology | topology | topogeo_addpolygon | atopology character varying, apoly geometry, tolerance double precision | SETOF integer - postgis_topology | topology | topogeom_addelement | tg topology.topogeometry, el topology.topoelement | topology.topogeometry - postgis_topology | topology | topogeom_addtopogeom | tgt topology.topogeometry, src topology.topogeometry | topology.topogeometry - postgis_topology | topology | topogeom_remelement | tg topology.topogeometry, el topology.topoelement | topology.topogeometry - postgis_topology | topology | topologysummary | atopology character varying | text - postgis_topology | topology | totopogeom | ageom geometry, atopology character varying, alayer integer, atolerance double precision | topology.topogeometry - postgis_topology | topology | totopogeom | ageom geometry, tg topology.topogeometry, atolerance double precision | topology.topogeometry - postgis_topology | topology | validatetopology | toponame character varying, bbox geometry | SETOF topology.validatetopology_returntype - postgis_topology | topology | validatetopologyrelation | toponame character varying | TABLE(error text, layer_id integer, topogeo_id integer, element_id integer) - postgres_fdw | public | postgres_fdw_disconnect | text | boolean - postgres_fdw | public | postgres_fdw_disconnect_all | | boolean - postgres_fdw | public | postgres_fdw_get_connections | OUT server_name text, OUT valid boolean | SETOF record - postgres_fdw | public | postgres_fdw_handler | | fdw_handler - postgres_fdw | public | postgres_fdw_validator | text[], oid | void - refint | public | check_foreign_key | | trigger - refint | public | check_primary_key | | trigger - rum | public | rum_anyarray_config | internal | void - rum | public | rum_anyarray_consistent | internal, smallint, anyarray, integer, internal, internal, internal, internal | boolean - rum | public | rum_anyarray_distance | anyarray, anyarray | double precision - rum | public | rum_anyarray_ordering | internal, smallint, anyarray, integer, internal, internal, internal, internal, internal | double precision - rum | public | rum_anyarray_similar | anyarray, anyarray | boolean - rum | public | rum_bit_compare_prefix | bit, bit, smallint, internal | integer - rum | public | rum_bit_extract_query | bit, internal, smallint, internal, internal | internal - rum | public | rum_bit_extract_value | bit, internal | internal - rum | public | rum_btree_consistent | internal, smallint, internal, integer, internal, internal, internal, internal | boolean - rum | public | rum_bytea_compare_prefix | bytea, bytea, smallint, internal | integer - rum | public | rum_bytea_extract_query | bytea, internal, smallint, internal, internal | internal - rum | public | rum_bytea_extract_value | bytea, internal | internal - rum | public | rum_char_compare_prefix | "char", "char", smallint, internal | integer - rum | public | rum_char_extract_query | "char", internal, smallint, internal, internal | internal - rum | public | rum_char_extract_value | "char", internal | internal - rum | public | rum_cidr_compare_prefix | cidr, cidr, smallint, internal | integer - rum | public | rum_cidr_extract_query | cidr, internal, smallint, internal, internal | internal - rum | public | rum_cidr_extract_value | cidr, internal | internal - rum | public | rum_date_compare_prefix | date, date, smallint, internal | integer - rum | public | rum_date_extract_query | date, internal, smallint, internal, internal | internal - rum | public | rum_date_extract_value | date, internal | internal - rum | public | rum_extract_anyarray | anyarray, internal, internal, internal, internal | internal - rum | public | rum_extract_anyarray_query | anyarray, internal, smallint, internal, internal, internal, internal | internal - rum | public | rum_extract_tsquery | tsquery, internal, smallint, internal, internal, internal, internal | internal - rum | public | rum_extract_tsquery_hash | tsquery, internal, smallint, internal, internal, internal, internal | internal - rum | public | rum_extract_tsvector | tsvector, internal, internal, internal, internal | internal - rum | public | rum_extract_tsvector_hash | tsvector, internal, internal, internal, internal | internal - rum | public | rum_float4_compare_prefix | real, real, smallint, internal | integer - rum | public | rum_float4_config | internal | void - rum | public | rum_float4_distance | real, real | double precision - rum | public | rum_float4_extract_query | real, internal, smallint, internal, internal | internal - rum | public | rum_float4_extract_value | real, internal | internal - rum | public | rum_float4_key_distance | real, real, smallint | double precision - rum | public | rum_float4_left_distance | real, real | double precision - rum | public | rum_float4_outer_distance | real, real, smallint | double precision - rum | public | rum_float4_right_distance | real, real | double precision - rum | public | rum_float8_compare_prefix | double precision, double precision, smallint, internal | integer - rum | public | rum_float8_config | internal | void - rum | public | rum_float8_distance | double precision, double precision | double precision - rum | public | rum_float8_extract_query | double precision, internal, smallint, internal, internal | internal - rum | public | rum_float8_extract_value | double precision, internal | internal - rum | public | rum_float8_key_distance | double precision, double precision, smallint | double precision - rum | public | rum_float8_left_distance | double precision, double precision | double precision - rum | public | rum_float8_outer_distance | double precision, double precision, smallint | double precision - rum | public | rum_float8_right_distance | double precision, double precision | double precision - rum | public | rum_inet_compare_prefix | inet, inet, smallint, internal | integer - rum | public | rum_inet_extract_query | inet, internal, smallint, internal, internal | internal - rum | public | rum_inet_extract_value | inet, internal | internal - rum | public | rum_int2_compare_prefix | smallint, smallint, smallint, internal | integer - rum | public | rum_int2_config | internal | void - rum | public | rum_int2_distance | smallint, smallint | double precision - rum | public | rum_int2_extract_query | smallint, internal, smallint, internal, internal | internal - rum | public | rum_int2_extract_value | smallint, internal | internal - rum | public | rum_int2_key_distance | smallint, smallint, smallint | double precision - rum | public | rum_int2_left_distance | smallint, smallint | double precision - rum | public | rum_int2_outer_distance | smallint, smallint, smallint | double precision - rum | public | rum_int2_right_distance | smallint, smallint | double precision - rum | public | rum_int4_compare_prefix | integer, integer, smallint, internal | integer - rum | public | rum_int4_config | internal | void - rum | public | rum_int4_distance | integer, integer | double precision - rum | public | rum_int4_extract_query | integer, internal, smallint, internal, internal | internal - rum | public | rum_int4_extract_value | integer, internal | internal - rum | public | rum_int4_key_distance | integer, integer, smallint | double precision - rum | public | rum_int4_left_distance | integer, integer | double precision - rum | public | rum_int4_outer_distance | integer, integer, smallint | double precision - rum | public | rum_int4_right_distance | integer, integer | double precision - rum | public | rum_int8_compare_prefix | bigint, bigint, smallint, internal | integer - rum | public | rum_int8_config | internal | void - rum | public | rum_int8_distance | bigint, bigint | double precision - rum | public | rum_int8_extract_query | bigint, internal, smallint, internal, internal | internal - rum | public | rum_int8_extract_value | bigint, internal | internal - rum | public | rum_int8_key_distance | bigint, bigint, smallint | double precision - rum | public | rum_int8_left_distance | bigint, bigint | double precision - rum | public | rum_int8_outer_distance | bigint, bigint, smallint | double precision - rum | public | rum_int8_right_distance | bigint, bigint | double precision - rum | public | rum_interval_compare_prefix | interval, interval, smallint, internal | integer - rum | public | rum_interval_extract_query | interval, internal, smallint, internal, internal | internal - rum | public | rum_interval_extract_value | interval, internal | internal - rum | public | rum_macaddr_compare_prefix | macaddr, macaddr, smallint, internal | integer - rum | public | rum_macaddr_extract_query | macaddr, internal, smallint, internal, internal | internal - rum | public | rum_macaddr_extract_value | macaddr, internal | internal - rum | public | rum_money_compare_prefix | money, money, smallint, internal | integer - rum | public | rum_money_config | internal | void - rum | public | rum_money_distance | money, money | double precision - rum | public | rum_money_extract_query | money, internal, smallint, internal, internal | internal - rum | public | rum_money_extract_value | money, internal | internal - rum | public | rum_money_key_distance | money, money, smallint | double precision - rum | public | rum_money_left_distance | money, money | double precision - rum | public | rum_money_outer_distance | money, money, smallint | double precision - rum | public | rum_money_right_distance | money, money | double precision - rum | public | rum_numeric_cmp | numeric, numeric | integer - rum | public | rum_numeric_compare_prefix | numeric, numeric, smallint, internal | integer - rum | public | rum_numeric_extract_query | numeric, internal, smallint, internal, internal | internal - rum | public | rum_numeric_extract_value | numeric, internal | internal - rum | public | rum_oid_compare_prefix | oid, oid, smallint, internal | integer - rum | public | rum_oid_config | internal | void - rum | public | rum_oid_distance | oid, oid | double precision - rum | public | rum_oid_extract_query | oid, internal, smallint, internal, internal | internal - rum | public | rum_oid_extract_value | oid, internal | internal - rum | public | rum_oid_key_distance | oid, oid, smallint | double precision - rum | public | rum_oid_left_distance | oid, oid | double precision - rum | public | rum_oid_outer_distance | oid, oid, smallint | double precision - rum | public | rum_oid_right_distance | oid, oid | double precision - rum | public | rum_text_compare_prefix | text, text, smallint, internal | integer - rum | public | rum_text_extract_query | text, internal, smallint, internal, internal | internal - rum | public | rum_text_extract_value | text, internal | internal - rum | public | rum_time_compare_prefix | time without time zone, time without time zone, smallint, internal | integer - rum | public | rum_time_extract_query | time without time zone, internal, smallint, internal, internal | internal - rum | public | rum_time_extract_value | time without time zone, internal | internal - rum | public | rum_timestamp_compare_prefix | timestamp without time zone, timestamp without time zone, smallint, internal | integer - rum | public | rum_timestamp_config | internal | void - rum | public | rum_timestamp_consistent | internal, smallint, timestamp without time zone, integer, internal, internal, internal, internal | boolean - rum | public | rum_timestamp_distance | timestamp without time zone, timestamp without time zone | double precision - rum | public | rum_timestamp_extract_query | timestamp without time zone, internal, smallint, internal, internal, internal, internal | internal - rum | public | rum_timestamp_extract_value | timestamp without time zone, internal, internal, internal, internal | internal - rum | public | rum_timestamp_key_distance | timestamp without time zone, timestamp without time zone, smallint | double precision - rum | public | rum_timestamp_left_distance | timestamp without time zone, timestamp without time zone | double precision - rum | public | rum_timestamp_outer_distance | timestamp without time zone, timestamp without time zone, smallint | double precision - rum | public | rum_timestamp_right_distance | timestamp without time zone, timestamp without time zone | double precision - rum | public | rum_timestamptz_distance | timestamp with time zone, timestamp with time zone | double precision - rum | public | rum_timestamptz_key_distance | timestamp with time zone, timestamp with time zone, smallint | double precision - rum | public | rum_timestamptz_left_distance | timestamp with time zone, timestamp with time zone | double precision - rum | public | rum_timestamptz_right_distance | timestamp with time zone, timestamp with time zone | double precision - rum | public | rum_timetz_compare_prefix | time with time zone, time with time zone, smallint, internal | integer - rum | public | rum_timetz_extract_query | time with time zone, internal, smallint, internal, internal | internal - rum | public | rum_timetz_extract_value | time with time zone, internal | internal - rum | public | rum_ts_distance | tsvector, tsquery, integer | real - rum | public | rum_ts_distance | tsvector, tsquery | real - rum | public | rum_ts_distance | tsvector, rum_distance_query | real - rum | public | rum_ts_join_pos | internal, internal | bytea - rum | public | rum_ts_score | tsvector, tsquery, integer | real - rum | public | rum_ts_score | tsvector, tsquery | real - rum | public | rum_ts_score | tsvector, rum_distance_query | real - rum | public | rum_tsquery_addon_consistent | internal, smallint, tsvector, integer, internal, internal, internal, internal | boolean - rum | public | rum_tsquery_consistent | internal, smallint, tsvector, integer, internal, internal, internal, internal | boolean - rum | public | rum_tsquery_distance | internal, smallint, tsvector, integer, internal, internal, internal, internal, internal | double precision - rum | public | rum_tsquery_pre_consistent | internal, smallint, tsvector, integer, internal, internal, internal, internal | boolean - rum | public | rum_tsvector_config | internal | void - rum | public | rum_varbit_compare_prefix | bit varying, bit varying, smallint, internal | integer - rum | public | rum_varbit_extract_query | bit varying, internal, smallint, internal, internal | internal - rum | public | rum_varbit_extract_value | bit varying, internal | internal - rum | public | rumhandler | internal | index_am_handler - rum | public | ruminv_extract_tsquery | tsquery, internal, internal, internal, internal | internal - rum | public | ruminv_extract_tsvector | tsvector, internal, smallint, internal, internal, internal, internal | internal - rum | public | ruminv_tsquery_config | internal | void - rum | public | ruminv_tsvector_consistent | internal, smallint, tsvector, integer, internal, internal, internal, internal | boolean - rum | public | tsquery_to_distance_query | tsquery | rum_distance_query - seg | public | gseg_consistent | internal, seg, smallint, oid, internal | boolean - seg | public | gseg_penalty | internal, internal, internal | internal - seg | public | gseg_picksplit | internal, internal | internal - seg | public | gseg_same | seg, seg, internal | internal - seg | public | gseg_union | internal, internal | seg - seg | public | seg_center | seg | real - seg | public | seg_cmp | seg, seg | integer - seg | public | seg_contained | seg, seg | boolean - seg | public | seg_contains | seg, seg | boolean - seg | public | seg_different | seg, seg | boolean - seg | public | seg_ge | seg, seg | boolean - seg | public | seg_gt | seg, seg | boolean - seg | public | seg_in | cstring | seg - seg | public | seg_inter | seg, seg | seg - seg | public | seg_le | seg, seg | boolean - seg | public | seg_left | seg, seg | boolean - seg | public | seg_lower | seg | real - seg | public | seg_lt | seg, seg | boolean - seg | public | seg_out | seg | cstring - seg | public | seg_over_left | seg, seg | boolean - seg | public | seg_over_right | seg, seg | boolean - seg | public | seg_overlap | seg, seg | boolean - seg | public | seg_right | seg, seg | boolean - seg | public | seg_same | seg, seg | boolean - seg | public | seg_size | seg | real - seg | public | seg_union | seg, seg | seg - seg | public | seg_upper | seg | real - sslinfo | public | ssl_cipher | | text - sslinfo | public | ssl_client_cert_present | | boolean - sslinfo | public | ssl_client_dn | | text - sslinfo | public | ssl_client_dn_field | text | text - sslinfo | public | ssl_client_serial | | numeric - sslinfo | public | ssl_extension_info | OUT name text, OUT value text, OUT critical boolean | SETOF record - sslinfo | public | ssl_is_used | | boolean - sslinfo | public | ssl_issuer_dn | | text - sslinfo | public | ssl_issuer_field | text | text - sslinfo | public | ssl_version | | text - supabase_vault | vault | _crypto_aead_det_decrypt | message bytea, additional bytea, key_id bigint, context bytea, nonce bytea | bytea - supabase_vault | vault | _crypto_aead_det_encrypt | message bytea, additional bytea, key_id bigint, context bytea, nonce bytea | bytea - supabase_vault | vault | _crypto_aead_det_noncegen | | bytea - supabase_vault | vault | create_secret | new_secret text, new_name text, new_description text, new_key_id uuid | uuid - supabase_vault | vault | update_secret | secret_id uuid, new_secret text, new_name text, new_description text, new_key_id uuid | void - tablefunc | public | connectby | text, text, text, text, integer, text | SETOF record - tablefunc | public | connectby | text, text, text, text, text, integer, text | SETOF record - tablefunc | public | connectby | text, text, text, text, integer | SETOF record - tablefunc | public | connectby | text, text, text, text, text, integer | SETOF record - tablefunc | public | crosstab | text | SETOF record - tablefunc | public | crosstab | text, integer | SETOF record - tablefunc | public | crosstab | text, text | SETOF record - tablefunc | public | crosstab2 | text | SETOF tablefunc_crosstab_2 - tablefunc | public | crosstab3 | text | SETOF tablefunc_crosstab_3 - tablefunc | public | crosstab4 | text | SETOF tablefunc_crosstab_4 - tablefunc | public | normal_rand | integer, double precision, double precision | SETOF double precision - tcn | public | triggered_change_notification | | trigger - tsm_system_rows | public | system_rows | internal | tsm_handler - unaccent | public | unaccent | text | text - unaccent | public | unaccent | regdictionary, text | text - unaccent | public | unaccent_init | internal | internal - unaccent | public | unaccent_lexize | internal, internal, internal, internal | internal - uuid-ossp | extensions | uuid_generate_v1 | | uuid - uuid-ossp | extensions | uuid_generate_v1mc | | uuid - uuid-ossp | extensions | uuid_generate_v3 | namespace uuid, name text | uuid - uuid-ossp | extensions | uuid_generate_v4 | | uuid - uuid-ossp | extensions | uuid_generate_v5 | namespace uuid, name text | uuid - uuid-ossp | extensions | uuid_nil | | uuid - uuid-ossp | extensions | uuid_ns_dns | | uuid - uuid-ossp | extensions | uuid_ns_oid | | uuid - uuid-ossp | extensions | uuid_ns_url | | uuid - uuid-ossp | extensions | uuid_ns_x500 | | uuid - vector | public | array_to_halfvec | real[], integer, boolean | halfvec - vector | public | array_to_halfvec | integer[], integer, boolean | halfvec - vector | public | array_to_halfvec | numeric[], integer, boolean | halfvec - vector | public | array_to_halfvec | double precision[], integer, boolean | halfvec - vector | public | array_to_sparsevec | real[], integer, boolean | sparsevec - vector | public | array_to_sparsevec | integer[], integer, boolean | sparsevec - vector | public | array_to_sparsevec | numeric[], integer, boolean | sparsevec - vector | public | array_to_sparsevec | double precision[], integer, boolean | sparsevec - vector | public | array_to_vector | real[], integer, boolean | vector - vector | public | array_to_vector | integer[], integer, boolean | vector - vector | public | array_to_vector | numeric[], integer, boolean | vector - vector | public | array_to_vector | double precision[], integer, boolean | vector - vector | public | avg | vector | vector - vector | public | avg | halfvec | halfvec - vector | public | binary_quantize | vector | bit - vector | public | binary_quantize | halfvec | bit - vector | public | cosine_distance | vector, vector | double precision - vector | public | cosine_distance | halfvec, halfvec | double precision - vector | public | cosine_distance | sparsevec, sparsevec | double precision - vector | public | halfvec | halfvec, integer, boolean | halfvec - vector | public | halfvec_accum | double precision[], halfvec | double precision[] - vector | public | halfvec_add | halfvec, halfvec | halfvec - vector | public | halfvec_avg | double precision[] | halfvec - vector | public | halfvec_cmp | halfvec, halfvec | integer - vector | public | halfvec_combine | double precision[], double precision[] | double precision[] - vector | public | halfvec_concat | halfvec, halfvec | halfvec - vector | public | halfvec_eq | halfvec, halfvec | boolean - vector | public | halfvec_ge | halfvec, halfvec | boolean - vector | public | halfvec_gt | halfvec, halfvec | boolean - vector | public | halfvec_in | cstring, oid, integer | halfvec - vector | public | halfvec_l2_squared_distance | halfvec, halfvec | double precision - vector | public | halfvec_le | halfvec, halfvec | boolean - vector | public | halfvec_lt | halfvec, halfvec | boolean - vector | public | halfvec_mul | halfvec, halfvec | halfvec - vector | public | halfvec_ne | halfvec, halfvec | boolean - vector | public | halfvec_negative_inner_product | halfvec, halfvec | double precision - vector | public | halfvec_out | halfvec | cstring - vector | public | halfvec_recv | internal, oid, integer | halfvec - vector | public | halfvec_send | halfvec | bytea - vector | public | halfvec_spherical_distance | halfvec, halfvec | double precision - vector | public | halfvec_sub | halfvec, halfvec | halfvec - vector | public | halfvec_to_float4 | halfvec, integer, boolean | real[] - vector | public | halfvec_to_sparsevec | halfvec, integer, boolean | sparsevec - vector | public | halfvec_to_vector | halfvec, integer, boolean | vector - vector | public | halfvec_typmod_in | cstring[] | integer - vector | public | hamming_distance | bit, bit | double precision - vector | public | hnsw_bit_support | internal | internal - vector | public | hnsw_halfvec_support | internal | internal - vector | public | hnsw_sparsevec_support | internal | internal - vector | public | hnswhandler | internal | index_am_handler - vector | public | inner_product | vector, vector | double precision - vector | public | inner_product | halfvec, halfvec | double precision - vector | public | inner_product | sparsevec, sparsevec | double precision - vector | public | ivfflat_bit_support | internal | internal - vector | public | ivfflat_halfvec_support | internal | internal - vector | public | ivfflathandler | internal | index_am_handler - vector | public | jaccard_distance | bit, bit | double precision - vector | public | l1_distance | vector, vector | double precision - vector | public | l1_distance | halfvec, halfvec | double precision - vector | public | l1_distance | sparsevec, sparsevec | double precision - vector | public | l2_distance | vector, vector | double precision - vector | public | l2_distance | halfvec, halfvec | double precision - vector | public | l2_distance | sparsevec, sparsevec | double precision - vector | public | l2_norm | halfvec | double precision - vector | public | l2_norm | sparsevec | double precision - vector | public | l2_normalize | vector | vector - vector | public | l2_normalize | halfvec | halfvec - vector | public | l2_normalize | sparsevec | sparsevec - vector | public | sparsevec | sparsevec, integer, boolean | sparsevec - vector | public | sparsevec_cmp | sparsevec, sparsevec | integer - vector | public | sparsevec_eq | sparsevec, sparsevec | boolean - vector | public | sparsevec_ge | sparsevec, sparsevec | boolean - vector | public | sparsevec_gt | sparsevec, sparsevec | boolean - vector | public | sparsevec_in | cstring, oid, integer | sparsevec - vector | public | sparsevec_l2_squared_distance | sparsevec, sparsevec | double precision - vector | public | sparsevec_le | sparsevec, sparsevec | boolean - vector | public | sparsevec_lt | sparsevec, sparsevec | boolean - vector | public | sparsevec_ne | sparsevec, sparsevec | boolean - vector | public | sparsevec_negative_inner_product | sparsevec, sparsevec | double precision - vector | public | sparsevec_out | sparsevec | cstring - vector | public | sparsevec_recv | internal, oid, integer | sparsevec - vector | public | sparsevec_send | sparsevec | bytea - vector | public | sparsevec_to_halfvec | sparsevec, integer, boolean | halfvec - vector | public | sparsevec_to_vector | sparsevec, integer, boolean | vector - vector | public | sparsevec_typmod_in | cstring[] | integer - vector | public | subvector | halfvec, integer, integer | halfvec - vector | public | subvector | vector, integer, integer | vector - vector | public | sum | vector | vector - vector | public | sum | halfvec | halfvec - vector | public | vector | vector, integer, boolean | vector - vector | public | vector_accum | double precision[], vector | double precision[] - vector | public | vector_add | vector, vector | vector - vector | public | vector_avg | double precision[] | vector - vector | public | vector_cmp | vector, vector | integer - vector | public | vector_combine | double precision[], double precision[] | double precision[] - vector | public | vector_concat | vector, vector | vector - vector | public | vector_dims | vector | integer - vector | public | vector_dims | halfvec | integer - vector | public | vector_eq | vector, vector | boolean - vector | public | vector_ge | vector, vector | boolean - vector | public | vector_gt | vector, vector | boolean - vector | public | vector_in | cstring, oid, integer | vector - vector | public | vector_l2_squared_distance | vector, vector | double precision - vector | public | vector_le | vector, vector | boolean - vector | public | vector_lt | vector, vector | boolean - vector | public | vector_mul | vector, vector | vector - vector | public | vector_ne | vector, vector | boolean - vector | public | vector_negative_inner_product | vector, vector | double precision - vector | public | vector_norm | vector | double precision - vector | public | vector_out | vector | cstring - vector | public | vector_recv | internal, oid, integer | vector - vector | public | vector_send | vector | bytea - vector | public | vector_spherical_distance | vector, vector | double precision - vector | public | vector_sub | vector, vector | vector - vector | public | vector_to_float4 | vector, integer, boolean | real[] - vector | public | vector_to_halfvec | vector, integer, boolean | halfvec - vector | public | vector_to_sparsevec | vector, integer, boolean | sparsevec - vector | public | vector_typmod_in | cstring[] | integer - wrappers | public | airtable_fdw_handler | | fdw_handler - wrappers | public | airtable_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | airtable_fdw_validator | options text[], catalog oid | void - wrappers | public | auth0_fdw_handler | | fdw_handler - wrappers | public | auth0_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | auth0_fdw_validator | options text[], catalog oid | void - wrappers | public | big_query_fdw_handler | | fdw_handler - wrappers | public | big_query_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | big_query_fdw_validator | options text[], catalog oid | void - wrappers | public | click_house_fdw_handler | | fdw_handler - wrappers | public | click_house_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | click_house_fdw_validator | options text[], catalog oid | void - wrappers | public | cognito_fdw_handler | | fdw_handler - wrappers | public | cognito_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | cognito_fdw_validator | options text[], catalog oid | void - wrappers | public | duckdb_fdw_handler | | fdw_handler - wrappers | public | duckdb_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | duckdb_fdw_validator | options text[], catalog oid | void - wrappers | public | firebase_fdw_handler | | fdw_handler - wrappers | public | firebase_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | firebase_fdw_validator | options text[], catalog oid | void - wrappers | public | hello_world_fdw_handler | | fdw_handler - wrappers | public | hello_world_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | hello_world_fdw_validator | options text[], catalog oid | void - wrappers | public | iceberg_fdw_handler | | fdw_handler - wrappers | public | iceberg_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | iceberg_fdw_validator | options text[], catalog oid | void - wrappers | public | logflare_fdw_handler | | fdw_handler - wrappers | public | logflare_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | logflare_fdw_validator | options text[], catalog oid | void - wrappers | public | mssql_fdw_handler | | fdw_handler - wrappers | public | mssql_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | mssql_fdw_validator | options text[], catalog oid | void - wrappers | public | redis_fdw_handler | | fdw_handler - wrappers | public | redis_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | redis_fdw_validator | options text[], catalog oid | void - wrappers | public | s3_fdw_handler | | fdw_handler - wrappers | public | s3_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | s3_fdw_validator | options text[], catalog oid | void - wrappers | public | stripe_fdw_handler | | fdw_handler - wrappers | public | stripe_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | stripe_fdw_validator | options text[], catalog oid | void - wrappers | public | wasm_fdw_handler | | fdw_handler - wrappers | public | wasm_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | wasm_fdw_validator | options text[], catalog oid | void - xml2 | public | xml_encode_special_chars | text | text - xml2 | public | xml_valid | text | boolean - xml2 | public | xpath_bool | text, text | boolean - xml2 | public | xpath_list | text, text | text - xml2 | public | xpath_list | text, text, text | text - xml2 | public | xpath_nodeset | text, text, text, text | text - xml2 | public | xpath_nodeset | text, text | text - xml2 | public | xpath_nodeset | text, text, text | text - xml2 | public | xpath_number | text, text | real - xml2 | public | xpath_string | text, text | text - xml2 | public | xpath_table | text, text, text, text, text | SETOF record - xml2 | public | xslt_process | text, text | text - xml2 | public | xslt_process | text, text, text | text -(4728 rows) - +ERROR: current transaction is aborted, commands ignored until end of transaction block /* Monitor extension public table/view/matview/index interface @@ -4917,396 +186,6 @@ order by n.nspname, pc.relname, pa.attname; - extension_name | schema_name | entity_name | attname -------------------------------+-------------+-------------------------+------------------------ - address_standardizer_data_us | public | us_gaz | id - address_standardizer_data_us | public | us_gaz | is_custom - address_standardizer_data_us | public | us_gaz | seq - address_standardizer_data_us | public | us_gaz | stdword - address_standardizer_data_us | public | us_gaz | token - address_standardizer_data_us | public | us_gaz | word - address_standardizer_data_us | public | us_lex | id - address_standardizer_data_us | public | us_lex | is_custom - address_standardizer_data_us | public | us_lex | seq - address_standardizer_data_us | public | us_lex | stdword - address_standardizer_data_us | public | us_lex | token - address_standardizer_data_us | public | us_lex | word - address_standardizer_data_us | public | us_rules | id - address_standardizer_data_us | public | us_rules | is_custom - address_standardizer_data_us | public | us_rules | rule - hypopg | public | hypopg_hidden_indexes | am_name - hypopg | public | hypopg_hidden_indexes | index_name - hypopg | public | hypopg_hidden_indexes | indexrelid - hypopg | public | hypopg_hidden_indexes | is_hypo - hypopg | public | hypopg_hidden_indexes | schema_name - hypopg | public | hypopg_hidden_indexes | table_name - hypopg | public | hypopg_list_indexes | am_name - hypopg | public | hypopg_list_indexes | index_name - hypopg | public | hypopg_list_indexes | indexrelid - hypopg | public | hypopg_list_indexes | schema_name - hypopg | public | hypopg_list_indexes | table_name - pg_buffercache | public | pg_buffercache | bufferid - pg_buffercache | public | pg_buffercache | isdirty - pg_buffercache | public | pg_buffercache | pinning_backends - pg_buffercache | public | pg_buffercache | relblocknumber - pg_buffercache | public | pg_buffercache | reldatabase - pg_buffercache | public | pg_buffercache | relfilenode - pg_buffercache | public | pg_buffercache | relforknumber - pg_buffercache | public | pg_buffercache | reltablespace - pg_buffercache | public | pg_buffercache | usagecount - pg_net | net | _http_response | content - pg_net | net | _http_response | content_type - pg_net | net | _http_response | created - pg_net | net | _http_response | error_msg - pg_net | net | _http_response | headers - pg_net | net | _http_response | id - pg_net | net | _http_response | status_code - pg_net | net | _http_response | timed_out - pg_net | net | http_request_queue | body - pg_net | net | http_request_queue | headers - pg_net | net | http_request_queue | id - pg_net | net | http_request_queue | method - pg_net | net | http_request_queue | timeout_milliseconds - pg_net | net | http_request_queue | url - pg_repack | repack | primary_keys | indexrelid - pg_repack | repack | primary_keys | indrelid - pg_repack | repack | tables | alter_col_storage - pg_repack | repack | tables | ckey - pg_repack | repack | tables | ckid - pg_repack | repack | tables | copy_data - pg_repack | repack | tables | create_log - pg_repack | repack | tables | create_pktype - pg_repack | repack | tables | create_table - pg_repack | repack | tables | create_trigger - pg_repack | repack | tables | delete_log - pg_repack | repack | tables | drop_columns - pg_repack | repack | tables | enable_trigger - pg_repack | repack | tables | lock_table - pg_repack | repack | tables | pkid - pg_repack | repack | tables | relid - pg_repack | repack | tables | relname - pg_repack | repack | tables | reltoastidxid - pg_repack | repack | tables | reltoastrelid - pg_repack | repack | tables | schemaname - pg_repack | repack | tables | sql_delete - pg_repack | repack | tables | sql_insert - pg_repack | repack | tables | sql_peek - pg_repack | repack | tables | sql_pop - pg_repack | repack | tables | sql_update - pg_repack | repack | tables | tablespace_orig - pg_stat_monitor | public | pg_stat_monitor | application_name - pg_stat_monitor | public | pg_stat_monitor | bucket - pg_stat_monitor | public | pg_stat_monitor | bucket_done - pg_stat_monitor | public | pg_stat_monitor | bucket_start_time - pg_stat_monitor | public | pg_stat_monitor | calls - pg_stat_monitor | public | pg_stat_monitor | client_ip - pg_stat_monitor | public | pg_stat_monitor | cmd_type - pg_stat_monitor | public | pg_stat_monitor | cmd_type_text - pg_stat_monitor | public | pg_stat_monitor | comments - pg_stat_monitor | public | pg_stat_monitor | cpu_sys_time - pg_stat_monitor | public | pg_stat_monitor | cpu_user_time - pg_stat_monitor | public | pg_stat_monitor | datname - pg_stat_monitor | public | pg_stat_monitor | dbid - pg_stat_monitor | public | pg_stat_monitor | elevel - pg_stat_monitor | public | pg_stat_monitor | jit_deform_count - pg_stat_monitor | public | pg_stat_monitor | jit_deform_time - pg_stat_monitor | public | pg_stat_monitor | jit_emission_count - pg_stat_monitor | public | pg_stat_monitor | jit_emission_time - pg_stat_monitor | public | pg_stat_monitor | jit_functions - pg_stat_monitor | public | pg_stat_monitor | jit_generation_time - pg_stat_monitor | public | pg_stat_monitor | jit_inlining_count - pg_stat_monitor | public | pg_stat_monitor | jit_inlining_time - pg_stat_monitor | public | pg_stat_monitor | jit_optimization_count - pg_stat_monitor | public | pg_stat_monitor | jit_optimization_time - pg_stat_monitor | public | pg_stat_monitor | local_blk_read_time - pg_stat_monitor | public | pg_stat_monitor | local_blk_write_time - pg_stat_monitor | public | pg_stat_monitor | local_blks_dirtied - pg_stat_monitor | public | pg_stat_monitor | local_blks_hit - pg_stat_monitor | public | pg_stat_monitor | local_blks_read - pg_stat_monitor | public | pg_stat_monitor | local_blks_written - pg_stat_monitor | public | pg_stat_monitor | max_exec_time - pg_stat_monitor | public | pg_stat_monitor | max_plan_time - pg_stat_monitor | public | pg_stat_monitor | mean_exec_time - pg_stat_monitor | public | pg_stat_monitor | mean_plan_time - pg_stat_monitor | public | pg_stat_monitor | message - pg_stat_monitor | public | pg_stat_monitor | min_exec_time - pg_stat_monitor | public | pg_stat_monitor | min_plan_time - pg_stat_monitor | public | pg_stat_monitor | minmax_stats_since - pg_stat_monitor | public | pg_stat_monitor | pgsm_query_id - pg_stat_monitor | public | pg_stat_monitor | planid - pg_stat_monitor | public | pg_stat_monitor | plans - pg_stat_monitor | public | pg_stat_monitor | query - pg_stat_monitor | public | pg_stat_monitor | query_plan - pg_stat_monitor | public | pg_stat_monitor | queryid - pg_stat_monitor | public | pg_stat_monitor | relations - pg_stat_monitor | public | pg_stat_monitor | resp_calls - pg_stat_monitor | public | pg_stat_monitor | rows - pg_stat_monitor | public | pg_stat_monitor | shared_blk_read_time - pg_stat_monitor | public | pg_stat_monitor | shared_blk_write_time - pg_stat_monitor | public | pg_stat_monitor | shared_blks_dirtied - pg_stat_monitor | public | pg_stat_monitor | shared_blks_hit - pg_stat_monitor | public | pg_stat_monitor | shared_blks_read - pg_stat_monitor | public | pg_stat_monitor | shared_blks_written - pg_stat_monitor | public | pg_stat_monitor | sqlcode - pg_stat_monitor | public | pg_stat_monitor | stats_since - pg_stat_monitor | public | pg_stat_monitor | stddev_exec_time - pg_stat_monitor | public | pg_stat_monitor | stddev_plan_time - pg_stat_monitor | public | pg_stat_monitor | temp_blk_read_time - pg_stat_monitor | public | pg_stat_monitor | temp_blk_write_time - pg_stat_monitor | public | pg_stat_monitor | temp_blks_read - pg_stat_monitor | public | pg_stat_monitor | temp_blks_written - pg_stat_monitor | public | pg_stat_monitor | top_query - pg_stat_monitor | public | pg_stat_monitor | top_queryid - pg_stat_monitor | public | pg_stat_monitor | toplevel - pg_stat_monitor | public | pg_stat_monitor | total_exec_time - pg_stat_monitor | public | pg_stat_monitor | total_plan_time - pg_stat_monitor | public | pg_stat_monitor | userid - pg_stat_monitor | public | pg_stat_monitor | username - pg_stat_monitor | public | pg_stat_monitor | wal_bytes - pg_stat_monitor | public | pg_stat_monitor | wal_fpi - pg_stat_monitor | public | pg_stat_monitor | wal_records - pg_stat_statements | extensions | pg_stat_statements | calls - pg_stat_statements | extensions | pg_stat_statements | dbid - pg_stat_statements | extensions | pg_stat_statements | jit_deform_count - pg_stat_statements | extensions | pg_stat_statements | jit_deform_time - pg_stat_statements | extensions | pg_stat_statements | jit_emission_count - pg_stat_statements | extensions | pg_stat_statements | jit_emission_time - pg_stat_statements | extensions | pg_stat_statements | jit_functions - pg_stat_statements | extensions | pg_stat_statements | jit_generation_time - pg_stat_statements | extensions | pg_stat_statements | jit_inlining_count - pg_stat_statements | extensions | pg_stat_statements | jit_inlining_time - pg_stat_statements | extensions | pg_stat_statements | jit_optimization_count - pg_stat_statements | extensions | pg_stat_statements | jit_optimization_time - pg_stat_statements | extensions | pg_stat_statements | local_blk_read_time - pg_stat_statements | extensions | pg_stat_statements | local_blk_write_time - pg_stat_statements | extensions | pg_stat_statements | local_blks_dirtied - pg_stat_statements | extensions | pg_stat_statements | local_blks_hit - pg_stat_statements | extensions | pg_stat_statements | local_blks_read - pg_stat_statements | extensions | pg_stat_statements | local_blks_written - pg_stat_statements | extensions | pg_stat_statements | max_exec_time - pg_stat_statements | extensions | pg_stat_statements | max_plan_time - pg_stat_statements | extensions | pg_stat_statements | mean_exec_time - pg_stat_statements | extensions | pg_stat_statements | mean_plan_time - pg_stat_statements | extensions | pg_stat_statements | min_exec_time - pg_stat_statements | extensions | pg_stat_statements | min_plan_time - pg_stat_statements | extensions | pg_stat_statements | minmax_stats_since - pg_stat_statements | extensions | pg_stat_statements | plans - pg_stat_statements | extensions | pg_stat_statements | query - pg_stat_statements | extensions | pg_stat_statements | queryid - pg_stat_statements | extensions | pg_stat_statements | rows - pg_stat_statements | extensions | pg_stat_statements | shared_blk_read_time - pg_stat_statements | extensions | pg_stat_statements | shared_blk_write_time - pg_stat_statements | extensions | pg_stat_statements | shared_blks_dirtied - pg_stat_statements | extensions | pg_stat_statements | shared_blks_hit - pg_stat_statements | extensions | pg_stat_statements | shared_blks_read - pg_stat_statements | extensions | pg_stat_statements | shared_blks_written - pg_stat_statements | extensions | pg_stat_statements | stats_since - pg_stat_statements | extensions | pg_stat_statements | stddev_exec_time - pg_stat_statements | extensions | pg_stat_statements | stddev_plan_time - pg_stat_statements | extensions | pg_stat_statements | temp_blk_read_time - pg_stat_statements | extensions | pg_stat_statements | temp_blk_write_time - pg_stat_statements | extensions | pg_stat_statements | temp_blks_read - pg_stat_statements | extensions | pg_stat_statements | temp_blks_written - pg_stat_statements | extensions | pg_stat_statements | toplevel - pg_stat_statements | extensions | pg_stat_statements | total_exec_time - pg_stat_statements | extensions | pg_stat_statements | total_plan_time - pg_stat_statements | extensions | pg_stat_statements | userid - pg_stat_statements | extensions | pg_stat_statements | wal_bytes - pg_stat_statements | extensions | pg_stat_statements | wal_fpi - pg_stat_statements | extensions | pg_stat_statements | wal_records - pg_stat_statements | extensions | pg_stat_statements_info | dealloc - pg_stat_statements | extensions | pg_stat_statements_info | stats_reset - pg_tle | pgtle | feature_info | feature - pg_tle | pgtle | feature_info | obj_identity - pg_tle | pgtle | feature_info | proname - pg_tle | pgtle | feature_info | schema_name - pgmq | pgmq | a_foo | archived_at - pgmq | pgmq | a_foo | enqueued_at - pgmq | pgmq | a_foo | headers - pgmq | pgmq | a_foo | message - pgmq | pgmq | a_foo | msg_id - pgmq | pgmq | a_foo | read_ct - pgmq | pgmq | a_foo | vt - pgmq | pgmq | meta | created_at - pgmq | pgmq | meta | is_partitioned - pgmq | pgmq | meta | is_unlogged - pgmq | pgmq | meta | queue_name - pgmq | pgmq | q_foo | enqueued_at - pgmq | pgmq | q_foo | headers - pgmq | pgmq | q_foo | message - pgmq | pgmq | q_foo | msg_id - pgmq | pgmq | q_foo | read_ct - pgmq | pgmq | q_foo | vt - pgsodium | pgsodium | decrypted_key | associated_data - pgsodium | pgsodium | decrypted_key | comment - pgsodium | pgsodium | decrypted_key | created - pgsodium | pgsodium | decrypted_key | decrypted_raw_key - pgsodium | pgsodium | decrypted_key | expires - pgsodium | pgsodium | decrypted_key | id - pgsodium | pgsodium | decrypted_key | key_context - pgsodium | pgsodium | decrypted_key | key_id - pgsodium | pgsodium | decrypted_key | key_type - pgsodium | pgsodium | decrypted_key | name - pgsodium | pgsodium | decrypted_key | parent_key - pgsodium | pgsodium | decrypted_key | raw_key - pgsodium | pgsodium | decrypted_key | raw_key_nonce - pgsodium | pgsodium | decrypted_key | status - pgsodium | pgsodium | key | associated_data - pgsodium | pgsodium | key | comment - pgsodium | pgsodium | key | created - pgsodium | pgsodium | key | expires - pgsodium | pgsodium | key | id - pgsodium | pgsodium | key | key_context - pgsodium | pgsodium | key | key_id - pgsodium | pgsodium | key | key_type - pgsodium | pgsodium | key | name - pgsodium | pgsodium | key | parent_key - pgsodium | pgsodium | key | raw_key - pgsodium | pgsodium | key | raw_key_nonce - pgsodium | pgsodium | key | status - pgsodium | pgsodium | key | user_data - pgsodium | pgsodium | mask_columns | associated_columns - pgsodium | pgsodium | mask_columns | attname - pgsodium | pgsodium | mask_columns | attrelid - pgsodium | pgsodium | mask_columns | format_type - pgsodium | pgsodium | mask_columns | key_id - pgsodium | pgsodium | mask_columns | key_id_column - pgsodium | pgsodium | mask_columns | nonce_column - pgsodium | pgsodium | masking_rule | associated_columns - pgsodium | pgsodium | masking_rule | attname - pgsodium | pgsodium | masking_rule | attnum - pgsodium | pgsodium | masking_rule | attrelid - pgsodium | pgsodium | masking_rule | col_description - pgsodium | pgsodium | masking_rule | format_type - pgsodium | pgsodium | masking_rule | key_id - pgsodium | pgsodium | masking_rule | key_id_column - pgsodium | pgsodium | masking_rule | nonce_column - pgsodium | pgsodium | masking_rule | priority - pgsodium | pgsodium | masking_rule | relname - pgsodium | pgsodium | masking_rule | relnamespace - pgsodium | pgsodium | masking_rule | security_invoker - pgsodium | pgsodium | masking_rule | view_name - pgsodium | pgsodium | valid_key | associated_data - pgsodium | pgsodium | valid_key | created - pgsodium | pgsodium | valid_key | expires - pgsodium | pgsodium | valid_key | id - pgsodium | pgsodium | valid_key | key_context - pgsodium | pgsodium | valid_key | key_id - pgsodium | pgsodium | valid_key | key_type - pgsodium | pgsodium | valid_key | name - pgsodium | pgsodium | valid_key | status - pgtap | public | pg_all_foreign_keys | fk_columns - pgtap | public | pg_all_foreign_keys | fk_constraint_name - pgtap | public | pg_all_foreign_keys | fk_schema_name - pgtap | public | pg_all_foreign_keys | fk_table_name - pgtap | public | pg_all_foreign_keys | fk_table_oid - pgtap | public | pg_all_foreign_keys | is_deferrable - pgtap | public | pg_all_foreign_keys | is_deferred - pgtap | public | pg_all_foreign_keys | match_type - pgtap | public | pg_all_foreign_keys | on_delete - pgtap | public | pg_all_foreign_keys | on_update - pgtap | public | pg_all_foreign_keys | pk_columns - pgtap | public | pg_all_foreign_keys | pk_constraint_name - pgtap | public | pg_all_foreign_keys | pk_index_name - pgtap | public | pg_all_foreign_keys | pk_schema_name - pgtap | public | pg_all_foreign_keys | pk_table_name - pgtap | public | pg_all_foreign_keys | pk_table_oid - pgtap | public | tap_funky | args - pgtap | public | tap_funky | is_definer - pgtap | public | tap_funky | is_strict - pgtap | public | tap_funky | is_visible - pgtap | public | tap_funky | kind - pgtap | public | tap_funky | langoid - pgtap | public | tap_funky | name - pgtap | public | tap_funky | oid - pgtap | public | tap_funky | owner - pgtap | public | tap_funky | returns - pgtap | public | tap_funky | returns_set - pgtap | public | tap_funky | schema - pgtap | public | tap_funky | volatility - postgis | public | geography_columns | coord_dimension - postgis | public | geography_columns | f_geography_column - postgis | public | geography_columns | f_table_catalog - postgis | public | geography_columns | f_table_name - postgis | public | geography_columns | f_table_schema - postgis | public | geography_columns | srid - postgis | public | geography_columns | type - postgis | public | geometry_columns | coord_dimension - postgis | public | geometry_columns | f_geometry_column - postgis | public | geometry_columns | f_table_catalog - postgis | public | geometry_columns | f_table_name - postgis | public | geometry_columns | f_table_schema - postgis | public | geometry_columns | srid - postgis | public | geometry_columns | type - postgis | public | spatial_ref_sys | auth_name - postgis | public | spatial_ref_sys | auth_srid - postgis | public | spatial_ref_sys | proj4text - postgis | public | spatial_ref_sys | srid - postgis | public | spatial_ref_sys | srtext - postgis_raster | public | raster_columns | blocksize_x - postgis_raster | public | raster_columns | blocksize_y - postgis_raster | public | raster_columns | extent - postgis_raster | public | raster_columns | nodata_values - postgis_raster | public | raster_columns | num_bands - postgis_raster | public | raster_columns | out_db - postgis_raster | public | raster_columns | pixel_types - postgis_raster | public | raster_columns | r_raster_column - postgis_raster | public | raster_columns | r_table_catalog - postgis_raster | public | raster_columns | r_table_name - postgis_raster | public | raster_columns | r_table_schema - postgis_raster | public | raster_columns | regular_blocking - postgis_raster | public | raster_columns | same_alignment - postgis_raster | public | raster_columns | scale_x - postgis_raster | public | raster_columns | scale_y - postgis_raster | public | raster_columns | spatial_index - postgis_raster | public | raster_columns | srid - postgis_raster | public | raster_overviews | o_raster_column - postgis_raster | public | raster_overviews | o_table_catalog - postgis_raster | public | raster_overviews | o_table_name - postgis_raster | public | raster_overviews | o_table_schema - postgis_raster | public | raster_overviews | overview_factor - postgis_raster | public | raster_overviews | r_raster_column - postgis_raster | public | raster_overviews | r_table_catalog - postgis_raster | public | raster_overviews | r_table_name - postgis_raster | public | raster_overviews | r_table_schema - postgis_topology | topology | layer | child_id - postgis_topology | topology | layer | feature_column - postgis_topology | topology | layer | feature_type - postgis_topology | topology | layer | layer_id - postgis_topology | topology | layer | level - postgis_topology | topology | layer | schema_name - postgis_topology | topology | layer | table_name - postgis_topology | topology | layer | topology_id - postgis_topology | topology | topology | hasz - postgis_topology | topology | topology | id - postgis_topology | topology | topology | name - postgis_topology | topology | topology | precision - postgis_topology | topology | topology | srid - supabase_vault | vault | decrypted_secrets | created_at - supabase_vault | vault | decrypted_secrets | decrypted_secret - supabase_vault | vault | decrypted_secrets | description - supabase_vault | vault | decrypted_secrets | id - supabase_vault | vault | decrypted_secrets | key_id - supabase_vault | vault | decrypted_secrets | name - supabase_vault | vault | decrypted_secrets | nonce - supabase_vault | vault | decrypted_secrets | secret - supabase_vault | vault | decrypted_secrets | updated_at - supabase_vault | vault | secrets | created_at - supabase_vault | vault | secrets | description - supabase_vault | vault | secrets | id - supabase_vault | vault | secrets | key_id - supabase_vault | vault | secrets | name - supabase_vault | vault | secrets | nonce - supabase_vault | vault | secrets | secret - supabase_vault | vault | secrets | updated_at - wrappers | public | wrappers_fdw_stats | bytes_in - wrappers | public | wrappers_fdw_stats | bytes_out - wrappers | public | wrappers_fdw_stats | create_times - wrappers | public | wrappers_fdw_stats | created_at - wrappers | public | wrappers_fdw_stats | fdw_name - wrappers | public | wrappers_fdw_stats | metadata - wrappers | public | wrappers_fdw_stats | rows_in - wrappers | public | wrappers_fdw_stats | rows_out - wrappers | public | wrappers_fdw_stats | updated_at -(389 rows) - +ERROR: current transaction is aborted, commands ignored until end of transaction block +-- Rollback to clean up all extensions created in this test +ROLLBACK; diff --git a/nix/tests/expected/z_17_pg_stat_monitor.out b/nix/tests/expected/z_17_pg_stat_monitor.out index 8b90c12fc..b6c7f680f 100644 --- a/nix/tests/expected/z_17_pg_stat_monitor.out +++ b/nix/tests/expected/z_17_pg_stat_monitor.out @@ -1,10 +1,15 @@ +BEGIN; +set client_min_messages = warning; +create schema if not exists extensions; +create extension if not exists pg_stat_monitor with schema extensions; select * from - pg_stat_monitor + extensions.pg_stat_monitor where false; bucket | bucket_start_time | userid | username | dbid | datname | client_ip | pgsm_query_id | queryid | toplevel | top_queryid | query | comments | planid | query_plan | top_query | application_name | relations | cmd_type | cmd_type_text | elevel | sqlcode | message | calls | total_exec_time | min_exec_time | max_exec_time | mean_exec_time | stddev_exec_time | rows | shared_blks_hit | shared_blks_read | shared_blks_dirtied | shared_blks_written | local_blks_hit | local_blks_read | local_blks_dirtied | local_blks_written | temp_blks_read | temp_blks_written | shared_blk_read_time | shared_blk_write_time | local_blk_read_time | local_blk_write_time | temp_blk_read_time | temp_blk_write_time | resp_calls | cpu_user_time | cpu_sys_time | wal_records | wal_fpi | wal_bytes | bucket_done | plans | total_plan_time | min_plan_time | max_plan_time | mean_plan_time | stddev_plan_time | jit_functions | jit_generation_time | jit_inlining_count | jit_inlining_time | jit_optimization_count | jit_optimization_time | jit_emission_count | jit_emission_time | jit_deform_count | jit_deform_time | stats_since | minmax_stats_since --------+-------------------+--------+----------+------+---------+-----------+---------------+---------+----------+-------------+-------+----------+--------+------------+-----------+------------------+-----------+----------+---------------+--------+---------+---------+-------+-----------------+---------------+---------------+----------------+------------------+------+-----------------+------------------+---------------------+---------------------+----------------+-----------------+--------------------+--------------------+----------------+-------------------+----------------------+-----------------------+---------------------+----------------------+--------------------+---------------------+------------+---------------+--------------+-------------+---------+-----------+-------------+-------+-----------------+---------------+---------------+----------------+------------------+---------------+---------------------+--------------------+-------------------+------------------------+-----------------------+--------------------+-------------------+------------------+-----------------+-------------+-------------------- (0 rows) +ROLLBACK; diff --git a/nix/tests/expected/z_17_pgvector.out b/nix/tests/expected/z_17_pgvector.out index 2c1cb1007..fbae83063 100644 --- a/nix/tests/expected/z_17_pgvector.out +++ b/nix/tests/expected/z_17_pgvector.out @@ -1,6 +1,10 @@ /* This test excludes indexes shipped with pgvector because orioledb doesn't support them yet */ +BEGIN; +set client_min_messages = warning; +create schema if not exists extensions; +create extension if not exists vector with schema extensions; create schema v; create table v.items( id serial primary key, @@ -56,4 +60,4 @@ from -- Cleanup drop schema v cascade; -NOTICE: drop cascades to table v.items +ROLLBACK; diff --git a/nix/tests/expected/z_17_roles.out b/nix/tests/expected/z_17_roles.out index e70dc2ae2..1eecbd8ae 100644 --- a/nix/tests/expected/z_17_roles.out +++ b/nix/tests/expected/z_17_roles.out @@ -1,3 +1,10 @@ +-- Create pg_tle to ensure pgtle_admin role exists +-- This matches production where users can create pg_tle extension +BEGIN; +set client_min_messages = warning; +create schema if not exists extensions; +-- pg_tle is non-relocatable and automatically creates the pgtle schema +create extension if not exists pg_tle; -- version-specific roles and attributes select rolname, @@ -167,3 +174,5 @@ order by supabase_storage_admin | authenticator | f (22 rows) +-- Rollback to clean up pg_tle extension +ROLLBACK; diff --git a/nix/tests/expected/z_17_rum.out b/nix/tests/expected/z_17_rum.out index 1296befa7..05d4b5eca 100644 --- a/nix/tests/expected/z_17_rum.out +++ b/nix/tests/expected/z_17_rum.out @@ -1,6 +1,10 @@ /* This extension is excluded from oriole-17 because it uses an unsupported index type */ +BEGIN; +set client_min_messages = warning; +create schema if not exists extensions; +create extension if not exists rum with schema extensions; create schema v; create table v.test_rum( t text, @@ -38,4 +42,4 @@ order by (3 rows) drop schema v cascade; -NOTICE: drop cascades to table v.test_rum +ROLLBACK; diff --git a/nix/tests/expected/z_orioledb-17_ext_interface.out b/nix/tests/expected/z_orioledb-17_ext_interface.out index 6a7b4a16c..f361ce2ce 100644 --- a/nix/tests/expected/z_orioledb-17_ext_interface.out +++ b/nix/tests/expected/z_orioledb-17_ext_interface.out @@ -5,11 +5,93 @@ by Postgres extensions so we have to manually review/approve any difference that emerge as versions change. */ +-- Create all extensions within a transaction +-- This matches production behavior where users create extensions as needed +-- Supautils will automatically enforce schema rules and run after-create scripts +BEGIN; +-- disable notice messages because they differ between 15 and 17 +set client_min_messages = warning; +-- Create required schemas for relocatable extensions +-- Non-relocatable extensions (pg_tle, pgsodium, supabase_vault, pg_graphql) +-- automatically create their own schemas +create schema if not exists extensions; +create schema if not exists topology; +-- Privileged extensions -> extensions schema (enforced by supautils) +create extension if not exists address_standardizer with schema extensions; +create extension if not exists address_standardizer_data_us with schema extensions; +create extension if not exists autoinc with schema extensions; +create extension if not exists bloom with schema extensions; +create extension if not exists btree_gin with schema extensions; +create extension if not exists btree_gist with schema extensions; +create extension if not exists citext with schema extensions; +create extension if not exists cube with schema extensions; +create extension if not exists dblink with schema extensions; +create extension if not exists dict_int with schema extensions; +create extension if not exists dict_xsyn with schema extensions; +create extension if not exists earthdistance with schema extensions; +create extension if not exists fuzzystrmatch with schema extensions; +create extension if not exists http with schema extensions; +create extension if not exists hstore with schema extensions; +create extension if not exists hypopg with schema extensions; +create extension if not exists index_advisor with schema extensions; +create extension if not exists insert_username with schema extensions; +create extension if not exists intarray with schema extensions; +create extension if not exists isn with schema extensions; +create extension if not exists ltree with schema extensions; +create extension if not exists moddatetime with schema extensions; +create extension if not exists pg_buffercache with schema extensions; +create extension if not exists pg_net with schema extensions; +create extension if not exists pg_hashids with schema extensions; +create extension if not exists pg_prewarm with schema extensions; +create extension if not exists pg_jsonschema with schema extensions; +create extension if not exists pg_repack with schema extensions; +create extension if not exists pg_stat_monitor with schema extensions; +create extension if not exists pg_tle; +create extension if not exists pg_trgm with schema extensions; +create extension if not exists pg_walinspect with schema extensions; +create extension if not exists pgaudit with schema extensions; +create extension if not exists pgtap with schema extensions; +create extension if not exists pgroonga with schema extensions; +create extension if not exists pgroonga_database with schema extensions; +create extension if not exists pgsodium; +create extension if not exists pgrowlocks with schema extensions; +create extension if not exists pgstattuple with schema extensions; +create extension if not exists plpgsql_check with schema extensions; +create extension if not exists postgis with schema extensions; +create extension if not exists postgis_raster with schema extensions; +create extension if not exists postgis_sfcgal with schema extensions; +create extension if not exists postgis_topology with schema topology; +create extension if not exists pgrouting with schema extensions; +create extension if not exists postgres_fdw with schema extensions; +create extension if not exists rum with schema extensions; +create extension if not exists refint with schema extensions; +create extension if not exists seg with schema extensions; +create extension if not exists sslinfo with schema extensions; +create extension if not exists supabase_vault; +create extension if not exists tablefunc with schema extensions; +create extension if not exists tcn with schema extensions; +create extension if not exists tsm_system_rows with schema extensions; +create extension if not exists unaccent with schema extensions; +create extension if not exists vector with schema extensions; +create extension if not exists wrappers with schema extensions; +-- Non-privileged extensions (use their natural default schemas) +create extension if not exists amcheck; +create extension if not exists file_fdw; +create extension if not exists intagg; +create extension if not exists lo; +create extension if not exists pageinspect; +create extension if not exists pg_freespacemap; +create extension if not exists pgmq; +create extension if not exists pg_surgery with schema pg_catalog; -- non-relocatable +create extension if not exists pg_visibility; +ERROR: no schema has been selected to create in +create extension if not exists xml2; +ERROR: current transaction is aborted, commands ignored until end of transaction block /* List all extensions that are not enabled If a new entry shows up in this list, that means a new extension has been -added and you should `create extension ...` to enable it in ./nix/tests/prime +added and you should create extension above */ select @@ -20,14 +102,7 @@ where installed_version is null order by name asc; - name ------------------------- - pg_cron - pgjwt - postgis_tiger_geocoder - tsm_system_time -(4 rows) - +ERROR: current transaction is aborted, commands ignored until end of transaction block /* Monitor relocatability and config of each extension @@ -41,82 +116,7 @@ from pg_extension order by extname asc; - extension_name | is_relocatable -------------------------------+---------------- - address_standardizer | t - address_standardizer_data_us | t - amcheck | t - autoinc | t - bloom | t - btree_gin | t - btree_gist | t - citext | t - cube | t - dblink | t - dict_int | t - dict_xsyn | t - earthdistance | t - file_fdw | t - fuzzystrmatch | t - hstore | t - http | f - hypopg | t - index_advisor | t - insert_username | t - intagg | t - intarray | t - isn | t - lo | t - ltree | t - moddatetime | t - pageinspect | t - pg_buffercache | t - pg_freespacemap | t - pg_graphql | f - pg_hashids | t - pg_jsonschema | f - pg_net | f - pg_prewarm | t - pg_repack | f - pg_stat_monitor | t - pg_stat_statements | t - pg_surgery | t - pg_tle | f - pg_trgm | t - pg_visibility | t - pg_walinspect | t - pgaudit | t - pgcrypto | t - pgmq | f - pgroonga | f - pgroonga_database | f - pgrouting | t - pgrowlocks | t - pgsodium | f - pgstattuple | t - pgtap | t - plpgsql | f - plpgsql_check | f - postgis | f - postgis_raster | f - postgis_sfcgal | t - postgis_topology | f - postgres_fdw | t - refint | t - rum | t - seg | t - sslinfo | t - supabase_vault | f - tablefunc | t - tcn | t - tsm_system_rows | t - unaccent | t - uuid-ossp | t - vector | t - wrappers | t - xml2 | f -(72 rows) - +ERROR: current transaction is aborted, commands ignored until end of transaction block /* Monitor extension public function interface @@ -155,4738 +155,7 @@ order by n.nspname, p.proname, md5(pg_catalog.pg_get_function_identity_arguments(p.oid)); - extension_name | schema_name | function_name | argument_types | return_type -----------------------+----------------+--------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - address_standardizer | public | parse_address | text, OUT num text, OUT street text, OUT street2 text, OUT address1 text, OUT city text, OUT state text, OUT zip text, OUT zipplus text, OUT country text | record - address_standardizer | public | standardize_address | lextab text, gaztab text, rultab text, address text | stdaddr - address_standardizer | public | standardize_address | lextab text, gaztab text, rultab text, micro text, macro text | stdaddr - amcheck | public | bt_index_check | index regclass | void - amcheck | public | bt_index_check | index regclass, heapallindexed boolean, checkunique boolean | void - amcheck | public | bt_index_check | index regclass, heapallindexed boolean | void - amcheck | public | bt_index_parent_check | index regclass | void - amcheck | public | bt_index_parent_check | index regclass, heapallindexed boolean, rootdescend boolean, checkunique boolean | void - amcheck | public | bt_index_parent_check | index regclass, heapallindexed boolean | void - amcheck | public | bt_index_parent_check | index regclass, heapallindexed boolean, rootdescend boolean | void - amcheck | public | verify_heapam | relation regclass, on_error_stop boolean, check_toast boolean, skip text, startblock bigint, endblock bigint, OUT blkno bigint, OUT offnum integer, OUT attnum integer, OUT msg text | SETOF record - autoinc | public | autoinc | | trigger - bloom | public | blhandler | internal | index_am_handler - btree_gin | public | gin_btree_consistent | internal, smallint, anyelement, integer, internal, internal | boolean - btree_gin | public | gin_compare_prefix_anyenum | anyenum, anyenum, smallint, internal | integer - btree_gin | public | gin_compare_prefix_bit | bit, bit, smallint, internal | integer - btree_gin | public | gin_compare_prefix_bool | boolean, boolean, smallint, internal | integer - btree_gin | public | gin_compare_prefix_bpchar | character, character, smallint, internal | integer - btree_gin | public | gin_compare_prefix_bytea | bytea, bytea, smallint, internal | integer - btree_gin | public | gin_compare_prefix_char | "char", "char", smallint, internal | integer - btree_gin | public | gin_compare_prefix_cidr | cidr, cidr, smallint, internal | integer - btree_gin | public | gin_compare_prefix_date | date, date, smallint, internal | integer - btree_gin | public | gin_compare_prefix_float4 | real, real, smallint, internal | integer - btree_gin | public | gin_compare_prefix_float8 | double precision, double precision, smallint, internal | integer - btree_gin | public | gin_compare_prefix_inet | inet, inet, smallint, internal | integer - btree_gin | public | gin_compare_prefix_int2 | smallint, smallint, smallint, internal | integer - btree_gin | public | gin_compare_prefix_int4 | integer, integer, smallint, internal | integer - btree_gin | public | gin_compare_prefix_int8 | bigint, bigint, smallint, internal | integer - btree_gin | public | gin_compare_prefix_interval | interval, interval, smallint, internal | integer - btree_gin | public | gin_compare_prefix_macaddr | macaddr, macaddr, smallint, internal | integer - btree_gin | public | gin_compare_prefix_macaddr8 | macaddr8, macaddr8, smallint, internal | integer - btree_gin | public | gin_compare_prefix_money | money, money, smallint, internal | integer - btree_gin | public | gin_compare_prefix_name | name, name, smallint, internal | integer - btree_gin | public | gin_compare_prefix_numeric | numeric, numeric, smallint, internal | integer - btree_gin | public | gin_compare_prefix_oid | oid, oid, smallint, internal | integer - btree_gin | public | gin_compare_prefix_text | text, text, smallint, internal | integer - btree_gin | public | gin_compare_prefix_time | time without time zone, time without time zone, smallint, internal | integer - btree_gin | public | gin_compare_prefix_timestamp | timestamp without time zone, timestamp without time zone, smallint, internal | integer - btree_gin | public | gin_compare_prefix_timestamptz | timestamp with time zone, timestamp with time zone, smallint, internal | integer - btree_gin | public | gin_compare_prefix_timetz | time with time zone, time with time zone, smallint, internal | integer - btree_gin | public | gin_compare_prefix_uuid | uuid, uuid, smallint, internal | integer - btree_gin | public | gin_compare_prefix_varbit | bit varying, bit varying, smallint, internal | integer - btree_gin | public | gin_enum_cmp | anyenum, anyenum | integer - btree_gin | public | gin_extract_query_anyenum | anyenum, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_bit | bit, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_bool | boolean, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_bpchar | character, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_bytea | bytea, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_char | "char", internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_cidr | cidr, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_date | date, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_float4 | real, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_float8 | double precision, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_inet | inet, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_int2 | smallint, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_int4 | integer, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_int8 | bigint, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_interval | interval, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_macaddr | macaddr, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_macaddr8 | macaddr8, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_money | money, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_name | name, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_numeric | numeric, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_oid | oid, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_text | text, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_time | time without time zone, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_timestamp | timestamp without time zone, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_timestamptz | timestamp with time zone, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_timetz | time with time zone, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_uuid | uuid, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_query_varbit | bit varying, internal, smallint, internal, internal | internal - btree_gin | public | gin_extract_value_anyenum | anyenum, internal | internal - btree_gin | public | gin_extract_value_bit | bit, internal | internal - btree_gin | public | gin_extract_value_bool | boolean, internal | internal - btree_gin | public | gin_extract_value_bpchar | character, internal | internal - btree_gin | public | gin_extract_value_bytea | bytea, internal | internal - btree_gin | public | gin_extract_value_char | "char", internal | internal - btree_gin | public | gin_extract_value_cidr | cidr, internal | internal - btree_gin | public | gin_extract_value_date | date, internal | internal - btree_gin | public | gin_extract_value_float4 | real, internal | internal - btree_gin | public | gin_extract_value_float8 | double precision, internal | internal - btree_gin | public | gin_extract_value_inet | inet, internal | internal - btree_gin | public | gin_extract_value_int2 | smallint, internal | internal - btree_gin | public | gin_extract_value_int4 | integer, internal | internal - btree_gin | public | gin_extract_value_int8 | bigint, internal | internal - btree_gin | public | gin_extract_value_interval | interval, internal | internal - btree_gin | public | gin_extract_value_macaddr | macaddr, internal | internal - btree_gin | public | gin_extract_value_macaddr8 | macaddr8, internal | internal - btree_gin | public | gin_extract_value_money | money, internal | internal - btree_gin | public | gin_extract_value_name | name, internal | internal - btree_gin | public | gin_extract_value_numeric | numeric, internal | internal - btree_gin | public | gin_extract_value_oid | oid, internal | internal - btree_gin | public | gin_extract_value_text | text, internal | internal - btree_gin | public | gin_extract_value_time | time without time zone, internal | internal - btree_gin | public | gin_extract_value_timestamp | timestamp without time zone, internal | internal - btree_gin | public | gin_extract_value_timestamptz | timestamp with time zone, internal | internal - btree_gin | public | gin_extract_value_timetz | time with time zone, internal | internal - btree_gin | public | gin_extract_value_uuid | uuid, internal | internal - btree_gin | public | gin_extract_value_varbit | bit varying, internal | internal - btree_gin | public | gin_numeric_cmp | numeric, numeric | integer - btree_gist | public | cash_dist | money, money | money - btree_gist | public | date_dist | date, date | integer - btree_gist | public | float4_dist | real, real | real - btree_gist | public | float8_dist | double precision, double precision | double precision - btree_gist | public | gbt_bit_compress | internal | internal - btree_gist | public | gbt_bit_consistent | internal, bit, smallint, oid, internal | boolean - btree_gist | public | gbt_bit_penalty | internal, internal, internal | internal - btree_gist | public | gbt_bit_picksplit | internal, internal | internal - btree_gist | public | gbt_bit_same | gbtreekey_var, gbtreekey_var, internal | internal - btree_gist | public | gbt_bit_union | internal, internal | gbtreekey_var - btree_gist | public | gbt_bool_compress | internal | internal - btree_gist | public | gbt_bool_consistent | internal, boolean, smallint, oid, internal | boolean - btree_gist | public | gbt_bool_fetch | internal | internal - btree_gist | public | gbt_bool_penalty | internal, internal, internal | internal - btree_gist | public | gbt_bool_picksplit | internal, internal | internal - btree_gist | public | gbt_bool_same | gbtreekey2, gbtreekey2, internal | internal - btree_gist | public | gbt_bool_union | internal, internal | gbtreekey2 - btree_gist | public | gbt_bpchar_compress | internal | internal - btree_gist | public | gbt_bpchar_consistent | internal, character, smallint, oid, internal | boolean - btree_gist | public | gbt_bytea_compress | internal | internal - btree_gist | public | gbt_bytea_consistent | internal, bytea, smallint, oid, internal | boolean - btree_gist | public | gbt_bytea_penalty | internal, internal, internal | internal - btree_gist | public | gbt_bytea_picksplit | internal, internal | internal - btree_gist | public | gbt_bytea_same | gbtreekey_var, gbtreekey_var, internal | internal - btree_gist | public | gbt_bytea_union | internal, internal | gbtreekey_var - btree_gist | public | gbt_cash_compress | internal | internal - btree_gist | public | gbt_cash_consistent | internal, money, smallint, oid, internal | boolean - btree_gist | public | gbt_cash_distance | internal, money, smallint, oid, internal | double precision - btree_gist | public | gbt_cash_fetch | internal | internal - btree_gist | public | gbt_cash_penalty | internal, internal, internal | internal - btree_gist | public | gbt_cash_picksplit | internal, internal | internal - btree_gist | public | gbt_cash_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_cash_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_date_compress | internal | internal - btree_gist | public | gbt_date_consistent | internal, date, smallint, oid, internal | boolean - btree_gist | public | gbt_date_distance | internal, date, smallint, oid, internal | double precision - btree_gist | public | gbt_date_fetch | internal | internal - btree_gist | public | gbt_date_penalty | internal, internal, internal | internal - btree_gist | public | gbt_date_picksplit | internal, internal | internal - btree_gist | public | gbt_date_same | gbtreekey8, gbtreekey8, internal | internal - btree_gist | public | gbt_date_union | internal, internal | gbtreekey8 - btree_gist | public | gbt_decompress | internal | internal - btree_gist | public | gbt_enum_compress | internal | internal - btree_gist | public | gbt_enum_consistent | internal, anyenum, smallint, oid, internal | boolean - btree_gist | public | gbt_enum_fetch | internal | internal - btree_gist | public | gbt_enum_penalty | internal, internal, internal | internal - btree_gist | public | gbt_enum_picksplit | internal, internal | internal - btree_gist | public | gbt_enum_same | gbtreekey8, gbtreekey8, internal | internal - btree_gist | public | gbt_enum_union | internal, internal | gbtreekey8 - btree_gist | public | gbt_float4_compress | internal | internal - btree_gist | public | gbt_float4_consistent | internal, real, smallint, oid, internal | boolean - btree_gist | public | gbt_float4_distance | internal, real, smallint, oid, internal | double precision - btree_gist | public | gbt_float4_fetch | internal | internal - btree_gist | public | gbt_float4_penalty | internal, internal, internal | internal - btree_gist | public | gbt_float4_picksplit | internal, internal | internal - btree_gist | public | gbt_float4_same | gbtreekey8, gbtreekey8, internal | internal - btree_gist | public | gbt_float4_union | internal, internal | gbtreekey8 - btree_gist | public | gbt_float8_compress | internal | internal - btree_gist | public | gbt_float8_consistent | internal, double precision, smallint, oid, internal | boolean - btree_gist | public | gbt_float8_distance | internal, double precision, smallint, oid, internal | double precision - btree_gist | public | gbt_float8_fetch | internal | internal - btree_gist | public | gbt_float8_penalty | internal, internal, internal | internal - btree_gist | public | gbt_float8_picksplit | internal, internal | internal - btree_gist | public | gbt_float8_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_float8_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_inet_compress | internal | internal - btree_gist | public | gbt_inet_consistent | internal, inet, smallint, oid, internal | boolean - btree_gist | public | gbt_inet_penalty | internal, internal, internal | internal - btree_gist | public | gbt_inet_picksplit | internal, internal | internal - btree_gist | public | gbt_inet_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_inet_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_int2_compress | internal | internal - btree_gist | public | gbt_int2_consistent | internal, smallint, smallint, oid, internal | boolean - btree_gist | public | gbt_int2_distance | internal, smallint, smallint, oid, internal | double precision - btree_gist | public | gbt_int2_fetch | internal | internal - btree_gist | public | gbt_int2_penalty | internal, internal, internal | internal - btree_gist | public | gbt_int2_picksplit | internal, internal | internal - btree_gist | public | gbt_int2_same | gbtreekey4, gbtreekey4, internal | internal - btree_gist | public | gbt_int2_union | internal, internal | gbtreekey4 - btree_gist | public | gbt_int4_compress | internal | internal - btree_gist | public | gbt_int4_consistent | internal, integer, smallint, oid, internal | boolean - btree_gist | public | gbt_int4_distance | internal, integer, smallint, oid, internal | double precision - btree_gist | public | gbt_int4_fetch | internal | internal - btree_gist | public | gbt_int4_penalty | internal, internal, internal | internal - btree_gist | public | gbt_int4_picksplit | internal, internal | internal - btree_gist | public | gbt_int4_same | gbtreekey8, gbtreekey8, internal | internal - btree_gist | public | gbt_int4_union | internal, internal | gbtreekey8 - btree_gist | public | gbt_int8_compress | internal | internal - btree_gist | public | gbt_int8_consistent | internal, bigint, smallint, oid, internal | boolean - btree_gist | public | gbt_int8_distance | internal, bigint, smallint, oid, internal | double precision - btree_gist | public | gbt_int8_fetch | internal | internal - btree_gist | public | gbt_int8_penalty | internal, internal, internal | internal - btree_gist | public | gbt_int8_picksplit | internal, internal | internal - btree_gist | public | gbt_int8_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_int8_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_intv_compress | internal | internal - btree_gist | public | gbt_intv_consistent | internal, interval, smallint, oid, internal | boolean - btree_gist | public | gbt_intv_decompress | internal | internal - btree_gist | public | gbt_intv_distance | internal, interval, smallint, oid, internal | double precision - btree_gist | public | gbt_intv_fetch | internal | internal - btree_gist | public | gbt_intv_penalty | internal, internal, internal | internal - btree_gist | public | gbt_intv_picksplit | internal, internal | internal - btree_gist | public | gbt_intv_same | gbtreekey32, gbtreekey32, internal | internal - btree_gist | public | gbt_intv_union | internal, internal | gbtreekey32 - btree_gist | public | gbt_macad8_compress | internal | internal - btree_gist | public | gbt_macad8_consistent | internal, macaddr8, smallint, oid, internal | boolean - btree_gist | public | gbt_macad8_fetch | internal | internal - btree_gist | public | gbt_macad8_penalty | internal, internal, internal | internal - btree_gist | public | gbt_macad8_picksplit | internal, internal | internal - btree_gist | public | gbt_macad8_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_macad8_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_macad_compress | internal | internal - btree_gist | public | gbt_macad_consistent | internal, macaddr, smallint, oid, internal | boolean - btree_gist | public | gbt_macad_fetch | internal | internal - btree_gist | public | gbt_macad_penalty | internal, internal, internal | internal - btree_gist | public | gbt_macad_picksplit | internal, internal | internal - btree_gist | public | gbt_macad_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_macad_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_numeric_compress | internal | internal - btree_gist | public | gbt_numeric_consistent | internal, numeric, smallint, oid, internal | boolean - btree_gist | public | gbt_numeric_penalty | internal, internal, internal | internal - btree_gist | public | gbt_numeric_picksplit | internal, internal | internal - btree_gist | public | gbt_numeric_same | gbtreekey_var, gbtreekey_var, internal | internal - btree_gist | public | gbt_numeric_union | internal, internal | gbtreekey_var - btree_gist | public | gbt_oid_compress | internal | internal - btree_gist | public | gbt_oid_consistent | internal, oid, smallint, oid, internal | boolean - btree_gist | public | gbt_oid_distance | internal, oid, smallint, oid, internal | double precision - btree_gist | public | gbt_oid_fetch | internal | internal - btree_gist | public | gbt_oid_penalty | internal, internal, internal | internal - btree_gist | public | gbt_oid_picksplit | internal, internal | internal - btree_gist | public | gbt_oid_same | gbtreekey8, gbtreekey8, internal | internal - btree_gist | public | gbt_oid_union | internal, internal | gbtreekey8 - btree_gist | public | gbt_text_compress | internal | internal - btree_gist | public | gbt_text_consistent | internal, text, smallint, oid, internal | boolean - btree_gist | public | gbt_text_penalty | internal, internal, internal | internal - btree_gist | public | gbt_text_picksplit | internal, internal | internal - btree_gist | public | gbt_text_same | gbtreekey_var, gbtreekey_var, internal | internal - btree_gist | public | gbt_text_union | internal, internal | gbtreekey_var - btree_gist | public | gbt_time_compress | internal | internal - btree_gist | public | gbt_time_consistent | internal, time without time zone, smallint, oid, internal | boolean - btree_gist | public | gbt_time_distance | internal, time without time zone, smallint, oid, internal | double precision - btree_gist | public | gbt_time_fetch | internal | internal - btree_gist | public | gbt_time_penalty | internal, internal, internal | internal - btree_gist | public | gbt_time_picksplit | internal, internal | internal - btree_gist | public | gbt_time_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_time_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_timetz_compress | internal | internal - btree_gist | public | gbt_timetz_consistent | internal, time with time zone, smallint, oid, internal | boolean - btree_gist | public | gbt_ts_compress | internal | internal - btree_gist | public | gbt_ts_consistent | internal, timestamp without time zone, smallint, oid, internal | boolean - btree_gist | public | gbt_ts_distance | internal, timestamp without time zone, smallint, oid, internal | double precision - btree_gist | public | gbt_ts_fetch | internal | internal - btree_gist | public | gbt_ts_penalty | internal, internal, internal | internal - btree_gist | public | gbt_ts_picksplit | internal, internal | internal - btree_gist | public | gbt_ts_same | gbtreekey16, gbtreekey16, internal | internal - btree_gist | public | gbt_ts_union | internal, internal | gbtreekey16 - btree_gist | public | gbt_tstz_compress | internal | internal - btree_gist | public | gbt_tstz_consistent | internal, timestamp with time zone, smallint, oid, internal | boolean - btree_gist | public | gbt_tstz_distance | internal, timestamp with time zone, smallint, oid, internal | double precision - btree_gist | public | gbt_uuid_compress | internal | internal - btree_gist | public | gbt_uuid_consistent | internal, uuid, smallint, oid, internal | boolean - btree_gist | public | gbt_uuid_fetch | internal | internal - btree_gist | public | gbt_uuid_penalty | internal, internal, internal | internal - btree_gist | public | gbt_uuid_picksplit | internal, internal | internal - btree_gist | public | gbt_uuid_same | gbtreekey32, gbtreekey32, internal | internal - btree_gist | public | gbt_uuid_union | internal, internal | gbtreekey32 - btree_gist | public | gbt_var_decompress | internal | internal - btree_gist | public | gbt_var_fetch | internal | internal - btree_gist | public | gbtreekey16_in | cstring | gbtreekey16 - btree_gist | public | gbtreekey16_out | gbtreekey16 | cstring - btree_gist | public | gbtreekey2_in | cstring | gbtreekey2 - btree_gist | public | gbtreekey2_out | gbtreekey2 | cstring - btree_gist | public | gbtreekey32_in | cstring | gbtreekey32 - btree_gist | public | gbtreekey32_out | gbtreekey32 | cstring - btree_gist | public | gbtreekey4_in | cstring | gbtreekey4 - btree_gist | public | gbtreekey4_out | gbtreekey4 | cstring - btree_gist | public | gbtreekey8_in | cstring | gbtreekey8 - btree_gist | public | gbtreekey8_out | gbtreekey8 | cstring - btree_gist | public | gbtreekey_var_in | cstring | gbtreekey_var - btree_gist | public | gbtreekey_var_out | gbtreekey_var | cstring - btree_gist | public | int2_dist | smallint, smallint | smallint - btree_gist | public | int4_dist | integer, integer | integer - btree_gist | public | int8_dist | bigint, bigint | bigint - btree_gist | public | interval_dist | interval, interval | interval - btree_gist | public | oid_dist | oid, oid | oid - btree_gist | public | time_dist | time without time zone, time without time zone | interval - btree_gist | public | ts_dist | timestamp without time zone, timestamp without time zone | interval - btree_gist | public | tstz_dist | timestamp with time zone, timestamp with time zone | interval - citext | public | citext | boolean | citext - citext | public | citext | inet | citext - citext | public | citext | character | citext - citext | public | citext_cmp | citext, citext | integer - citext | public | citext_eq | citext, citext | boolean - citext | public | citext_ge | citext, citext | boolean - citext | public | citext_gt | citext, citext | boolean - citext | public | citext_hash | citext | integer - citext | public | citext_hash_extended | citext, bigint | bigint - citext | public | citext_larger | citext, citext | citext - citext | public | citext_le | citext, citext | boolean - citext | public | citext_lt | citext, citext | boolean - citext | public | citext_ne | citext, citext | boolean - citext | public | citext_pattern_cmp | citext, citext | integer - citext | public | citext_pattern_ge | citext, citext | boolean - citext | public | citext_pattern_gt | citext, citext | boolean - citext | public | citext_pattern_le | citext, citext | boolean - citext | public | citext_pattern_lt | citext, citext | boolean - citext | public | citext_smaller | citext, citext | citext - citext | public | citextin | cstring | citext - citext | public | citextout | citext | cstring - citext | public | citextrecv | internal | citext - citext | public | citextsend | citext | bytea - citext | public | max | citext | citext - citext | public | min | citext | citext - citext | public | regexp_match | citext, citext | text[] - citext | public | regexp_match | citext, citext, text | text[] - citext | public | regexp_matches | citext, citext | SETOF text[] - citext | public | regexp_matches | citext, citext, text | SETOF text[] - citext | public | regexp_replace | citext, citext, text, text | text - citext | public | regexp_replace | citext, citext, text | text - citext | public | regexp_split_to_array | citext, citext | text[] - citext | public | regexp_split_to_array | citext, citext, text | text[] - citext | public | regexp_split_to_table | citext, citext | SETOF text - citext | public | regexp_split_to_table | citext, citext, text | SETOF text - citext | public | replace | citext, citext, citext | text - citext | public | split_part | citext, citext, integer | text - citext | public | strpos | citext, citext | integer - citext | public | texticlike | citext, citext | boolean - citext | public | texticlike | citext, text | boolean - citext | public | texticnlike | citext, citext | boolean - citext | public | texticnlike | citext, text | boolean - citext | public | texticregexeq | citext, citext | boolean - citext | public | texticregexeq | citext, text | boolean - citext | public | texticregexne | citext, citext | boolean - citext | public | texticregexne | citext, text | boolean - citext | public | translate | citext, citext, text | text - cube | public | cube | cube, double precision, double precision | cube - cube | public | cube | double precision | cube - cube | public | cube | double precision[], double precision[] | cube - cube | public | cube | cube, double precision | cube - cube | public | cube | double precision, double precision | cube - cube | public | cube | double precision[] | cube - cube | public | cube_cmp | cube, cube | integer - cube | public | cube_contained | cube, cube | boolean - cube | public | cube_contains | cube, cube | boolean - cube | public | cube_coord | cube, integer | double precision - cube | public | cube_coord_llur | cube, integer | double precision - cube | public | cube_dim | cube | integer - cube | public | cube_distance | cube, cube | double precision - cube | public | cube_enlarge | cube, double precision, integer | cube - cube | public | cube_eq | cube, cube | boolean - cube | public | cube_ge | cube, cube | boolean - cube | public | cube_gt | cube, cube | boolean - cube | public | cube_in | cstring | cube - cube | public | cube_inter | cube, cube | cube - cube | public | cube_is_point | cube | boolean - cube | public | cube_le | cube, cube | boolean - cube | public | cube_ll_coord | cube, integer | double precision - cube | public | cube_lt | cube, cube | boolean - cube | public | cube_ne | cube, cube | boolean - cube | public | cube_out | cube | cstring - cube | public | cube_overlap | cube, cube | boolean - cube | public | cube_recv | internal | cube - cube | public | cube_send | cube | bytea - cube | public | cube_size | cube | double precision - cube | public | cube_subset | cube, integer[] | cube - cube | public | cube_union | cube, cube | cube - cube | public | cube_ur_coord | cube, integer | double precision - cube | public | distance_chebyshev | cube, cube | double precision - cube | public | distance_taxicab | cube, cube | double precision - cube | public | g_cube_consistent | internal, cube, smallint, oid, internal | boolean - cube | public | g_cube_distance | internal, cube, smallint, oid, internal | double precision - cube | public | g_cube_penalty | internal, internal, internal | internal - cube | public | g_cube_picksplit | internal, internal | internal - cube | public | g_cube_same | cube, cube, internal | internal - cube | public | g_cube_union | internal, internal | cube - dblink | public | dblink | text, boolean | SETOF record - dblink | public | dblink | text | SETOF record - dblink | public | dblink | text, text | SETOF record - dblink | public | dblink | text, text, boolean | SETOF record - dblink | public | dblink_build_sql_delete | text, int2vector, integer, text[] | text - dblink | public | dblink_build_sql_insert | text, int2vector, integer, text[], text[] | text - dblink | public | dblink_build_sql_update | text, int2vector, integer, text[], text[] | text - dblink | public | dblink_cancel_query | text | text - dblink | public | dblink_close | text, boolean | text - dblink | public | dblink_close | text | text - dblink | public | dblink_close | text, text | text - dblink | public | dblink_close | text, text, boolean | text - dblink | public | dblink_connect | text | text - dblink | public | dblink_connect | text, text | text - dblink | public | dblink_connect_u | text | text - dblink | public | dblink_connect_u | text, text | text - dblink | public | dblink_current_query | | text - dblink | public | dblink_disconnect | text | text - dblink | public | dblink_disconnect | | text - dblink | public | dblink_error_message | text | text - dblink | public | dblink_exec | text, boolean | text - dblink | public | dblink_exec | text | text - dblink | public | dblink_exec | text, text | text - dblink | public | dblink_exec | text, text, boolean | text - dblink | public | dblink_fdw_validator | options text[], catalog oid | void - dblink | public | dblink_fetch | text, text, integer, boolean | SETOF record - dblink | public | dblink_fetch | text, integer | SETOF record - dblink | public | dblink_fetch | text, text, integer | SETOF record - dblink | public | dblink_fetch | text, integer, boolean | SETOF record - dblink | public | dblink_get_connections | | text[] - dblink | public | dblink_get_notify | OUT notify_name text, OUT be_pid integer, OUT extra text | SETOF record - dblink | public | dblink_get_notify | conname text, OUT notify_name text, OUT be_pid integer, OUT extra text | SETOF record - dblink | public | dblink_get_pkey | text | SETOF dblink_pkey_results - dblink | public | dblink_get_result | text, boolean | SETOF record - dblink | public | dblink_get_result | text | SETOF record - dblink | public | dblink_is_busy | text | integer - dblink | public | dblink_open | text, text, text, boolean | text - dblink | public | dblink_open | text, text | text - dblink | public | dblink_open | text, text, boolean | text - dblink | public | dblink_open | text, text, text | text - dblink | public | dblink_send_query | text, text | integer - dict_int | public | dintdict_init | internal | internal - dict_int | public | dintdict_lexize | internal, internal, internal, internal | internal - dict_xsyn | public | dxsyn_init | internal | internal - dict_xsyn | public | dxsyn_lexize | internal, internal, internal, internal | internal - earthdistance | public | earth | | double precision - earthdistance | public | earth_box | earth, double precision | cube - earthdistance | public | earth_distance | earth, earth | double precision - earthdistance | public | gc_to_sec | double precision | double precision - earthdistance | public | geo_distance | point, point | double precision - earthdistance | public | latitude | earth | double precision - earthdistance | public | ll_to_earth | double precision, double precision | earth - earthdistance | public | longitude | earth | double precision - earthdistance | public | sec_to_gc | double precision | double precision - file_fdw | public | file_fdw_handler | | fdw_handler - file_fdw | public | file_fdw_validator | text[], oid | void - fuzzystrmatch | public | difference | text, text | integer - fuzzystrmatch | public | dmetaphone | text | text - fuzzystrmatch | public | dmetaphone_alt | text | text - fuzzystrmatch | public | levenshtein | text, text | integer - fuzzystrmatch | public | levenshtein | text, text, integer, integer, integer | integer - fuzzystrmatch | public | levenshtein_less_equal | text, text, integer, integer, integer, integer | integer - fuzzystrmatch | public | levenshtein_less_equal | text, text, integer | integer - fuzzystrmatch | public | metaphone | text, integer | text - fuzzystrmatch | public | soundex | text | text - fuzzystrmatch | public | text_soundex | text | text - hstore | public | akeys | hstore | text[] - hstore | public | avals | hstore | text[] - hstore | public | defined | hstore, text | boolean - hstore | public | delete | hstore, text | hstore - hstore | public | delete | hstore, text[] | hstore - hstore | public | delete | hstore, hstore | hstore - hstore | public | each | hs hstore, OUT key text, OUT value text | SETOF record - hstore | public | exist | hstore, text | boolean - hstore | public | exists_all | hstore, text[] | boolean - hstore | public | exists_any | hstore, text[] | boolean - hstore | public | fetchval | hstore, text | text - hstore | public | ghstore_compress | internal | internal - hstore | public | ghstore_consistent | internal, hstore, smallint, oid, internal | boolean - hstore | public | ghstore_decompress | internal | internal - hstore | public | ghstore_in | cstring | ghstore - hstore | public | ghstore_options | internal | void - hstore | public | ghstore_out | ghstore | cstring - hstore | public | ghstore_penalty | internal, internal, internal | internal - hstore | public | ghstore_picksplit | internal, internal | internal - hstore | public | ghstore_same | ghstore, ghstore, internal | internal - hstore | public | ghstore_union | internal, internal | ghstore - hstore | public | gin_consistent_hstore | internal, smallint, hstore, integer, internal, internal | boolean - hstore | public | gin_extract_hstore | hstore, internal | internal - hstore | public | gin_extract_hstore_query | hstore, internal, smallint, internal, internal | internal - hstore | public | hs_concat | hstore, hstore | hstore - hstore | public | hs_contained | hstore, hstore | boolean - hstore | public | hs_contains | hstore, hstore | boolean - hstore | public | hstore | text[], text[] | hstore - hstore | public | hstore | text, text | hstore - hstore | public | hstore | text[] | hstore - hstore | public | hstore | record | hstore - hstore | public | hstore_cmp | hstore, hstore | integer - hstore | public | hstore_eq | hstore, hstore | boolean - hstore | public | hstore_ge | hstore, hstore | boolean - hstore | public | hstore_gt | hstore, hstore | boolean - hstore | public | hstore_hash | hstore | integer - hstore | public | hstore_hash_extended | hstore, bigint | bigint - hstore | public | hstore_in | cstring | hstore - hstore | public | hstore_le | hstore, hstore | boolean - hstore | public | hstore_lt | hstore, hstore | boolean - hstore | public | hstore_ne | hstore, hstore | boolean - hstore | public | hstore_out | hstore | cstring - hstore | public | hstore_recv | internal | hstore - hstore | public | hstore_send | hstore | bytea - hstore | public | hstore_subscript_handler | internal | internal - hstore | public | hstore_to_array | hstore | text[] - hstore | public | hstore_to_json | hstore | json - hstore | public | hstore_to_json_loose | hstore | json - hstore | public | hstore_to_jsonb | hstore | jsonb - hstore | public | hstore_to_jsonb_loose | hstore | jsonb - hstore | public | hstore_to_matrix | hstore | text[] - hstore | public | hstore_version_diag | hstore | integer - hstore | public | isdefined | hstore, text | boolean - hstore | public | isexists | hstore, text | boolean - hstore | public | populate_record | anyelement, hstore | anyelement - hstore | public | skeys | hstore | SETOF text - hstore | public | slice | hstore, text[] | hstore - hstore | public | slice_array | hstore, text[] | text[] - hstore | public | svals | hstore | SETOF text - hstore | public | tconvert | text, text | hstore - http | public | bytea_to_text | data bytea | text - http | public | http | request http_request | http_response - http | public | http_delete | uri character varying, content character varying, content_type character varying | http_response - http | public | http_delete | uri character varying | http_response - http | public | http_get | uri character varying, data jsonb | http_response - http | public | http_get | uri character varying | http_response - http | public | http_head | uri character varying | http_response - http | public | http_header | field character varying, value character varying | http_header - http | public | http_list_curlopt | | TABLE(curlopt text, value text) - http | public | http_patch | uri character varying, content character varying, content_type character varying | http_response - http | public | http_post | uri character varying, data jsonb | http_response - http | public | http_post | uri character varying, content character varying, content_type character varying | http_response - http | public | http_put | uri character varying, content character varying, content_type character varying | http_response - http | public | http_reset_curlopt | | boolean - http | public | http_set_curlopt | curlopt character varying, value character varying | boolean - http | public | text_to_bytea | data text | bytea - http | public | urlencode | data jsonb | text - http | public | urlencode | string character varying | text - http | public | urlencode | string bytea | text - hypopg | public | hypopg | OUT indexname text, OUT indexrelid oid, OUT indrelid oid, OUT innatts integer, OUT indisunique boolean, OUT indkey int2vector, OUT indcollation oidvector, OUT indclass oidvector, OUT indoption oidvector, OUT indexprs pg_node_tree, OUT indpred pg_node_tree, OUT amid oid | SETOF record - hypopg | public | hypopg_create_index | sql_order text, OUT indexrelid oid, OUT indexname text | SETOF record - hypopg | public | hypopg_drop_index | indexid oid | boolean - hypopg | public | hypopg_get_indexdef | indexid oid | text - hypopg | public | hypopg_hidden_indexes | | TABLE(indexid oid) - hypopg | public | hypopg_hide_index | indexid oid | boolean - hypopg | public | hypopg_relation_size | indexid oid | bigint - hypopg | public | hypopg_reset | | void - hypopg | public | hypopg_reset_index | | void - hypopg | public | hypopg_unhide_all_indexes | | void - hypopg | public | hypopg_unhide_index | indexid oid | boolean - index_advisor | public | index_advisor | query text | TABLE(startup_cost_before jsonb, startup_cost_after jsonb, total_cost_before jsonb, total_cost_after jsonb, index_statements text[], errors text[]) - insert_username | public | insert_username | | trigger - intagg | public | int_agg_final_array | internal | integer[] - intagg | public | int_agg_state | internal, integer | internal - intagg | public | int_array_aggregate | integer | integer[] - intagg | public | int_array_enum | integer[] | SETOF integer - intarray | public | _int_contained | integer[], integer[] | boolean - intarray | public | _int_contained_joinsel | internal, oid, internal, smallint, internal | double precision - intarray | public | _int_contained_sel | internal, oid, internal, integer | double precision - intarray | public | _int_contains | integer[], integer[] | boolean - intarray | public | _int_contains_joinsel | internal, oid, internal, smallint, internal | double precision - intarray | public | _int_contains_sel | internal, oid, internal, integer | double precision - intarray | public | _int_different | integer[], integer[] | boolean - intarray | public | _int_inter | integer[], integer[] | integer[] - intarray | public | _int_matchsel | internal, oid, internal, integer | double precision - intarray | public | _int_overlap | integer[], integer[] | boolean - intarray | public | _int_overlap_joinsel | internal, oid, internal, smallint, internal | double precision - intarray | public | _int_overlap_sel | internal, oid, internal, integer | double precision - intarray | public | _int_same | integer[], integer[] | boolean - intarray | public | _int_union | integer[], integer[] | integer[] - intarray | public | _intbig_in | cstring | intbig_gkey - intarray | public | _intbig_out | intbig_gkey | cstring - intarray | public | boolop | integer[], query_int | boolean - intarray | public | bqarr_in | cstring | query_int - intarray | public | bqarr_out | query_int | cstring - intarray | public | g_int_compress | internal | internal - intarray | public | g_int_consistent | internal, integer[], smallint, oid, internal | boolean - intarray | public | g_int_decompress | internal | internal - intarray | public | g_int_options | internal | void - intarray | public | g_int_penalty | internal, internal, internal | internal - intarray | public | g_int_picksplit | internal, internal | internal - intarray | public | g_int_same | integer[], integer[], internal | internal - intarray | public | g_int_union | internal, internal | integer[] - intarray | public | g_intbig_compress | internal | internal - intarray | public | g_intbig_consistent | internal, integer[], smallint, oid, internal | boolean - intarray | public | g_intbig_decompress | internal | internal - intarray | public | g_intbig_options | internal | void - intarray | public | g_intbig_penalty | internal, internal, internal | internal - intarray | public | g_intbig_picksplit | internal, internal | internal - intarray | public | g_intbig_same | intbig_gkey, intbig_gkey, internal | internal - intarray | public | g_intbig_union | internal, internal | intbig_gkey - intarray | public | ginint4_consistent | internal, smallint, integer[], integer, internal, internal, internal, internal | boolean - intarray | public | ginint4_queryextract | integer[], internal, smallint, internal, internal, internal, internal | internal - intarray | public | icount | integer[] | integer - intarray | public | idx | integer[], integer | integer - intarray | public | intarray_del_elem | integer[], integer | integer[] - intarray | public | intarray_push_array | integer[], integer[] | integer[] - intarray | public | intarray_push_elem | integer[], integer | integer[] - intarray | public | intset | integer | integer[] - intarray | public | intset_subtract | integer[], integer[] | integer[] - intarray | public | intset_union_elem | integer[], integer | integer[] - intarray | public | querytree | query_int | text - intarray | public | rboolop | query_int, integer[] | boolean - intarray | public | sort | integer[] | integer[] - intarray | public | sort | integer[], text | integer[] - intarray | public | sort_asc | integer[] | integer[] - intarray | public | sort_desc | integer[] | integer[] - intarray | public | subarray | integer[], integer | integer[] - intarray | public | subarray | integer[], integer, integer | integer[] - intarray | public | uniq | integer[] | integer[] - isn | public | btean13cmp | ean13, ean13 | integer - isn | public | btean13cmp | ean13, issn | integer - isn | public | btean13cmp | ean13, upc | integer - isn | public | btean13cmp | ean13, issn13 | integer - isn | public | btean13cmp | ean13, ismn | integer - isn | public | btean13cmp | ean13, ismn13 | integer - isn | public | btean13cmp | ean13, isbn13 | integer - isn | public | btean13cmp | ean13, isbn | integer - isn | public | btisbn13cmp | isbn13, isbn13 | integer - isn | public | btisbn13cmp | isbn13, ean13 | integer - isn | public | btisbn13cmp | isbn13, isbn | integer - isn | public | btisbncmp | isbn, ean13 | integer - isn | public | btisbncmp | isbn, isbn | integer - isn | public | btisbncmp | isbn, isbn13 | integer - isn | public | btismn13cmp | ismn13, ismn13 | integer - isn | public | btismn13cmp | ismn13, ean13 | integer - isn | public | btismn13cmp | ismn13, ismn | integer - isn | public | btismncmp | ismn, ismn | integer - isn | public | btismncmp | ismn, ean13 | integer - isn | public | btismncmp | ismn, ismn13 | integer - isn | public | btissn13cmp | issn13, issn13 | integer - isn | public | btissn13cmp | issn13, ean13 | integer - isn | public | btissn13cmp | issn13, issn | integer - isn | public | btissncmp | issn, ean13 | integer - isn | public | btissncmp | issn, issn13 | integer - isn | public | btissncmp | issn, issn | integer - isn | public | btupccmp | upc, upc | integer - isn | public | btupccmp | upc, ean13 | integer - isn | public | ean13_in | cstring | ean13 - isn | public | ean13_out | isbn13 | cstring - isn | public | ean13_out | ismn13 | cstring - isn | public | ean13_out | ean13 | cstring - isn | public | ean13_out | issn13 | cstring - isn | public | hashean13 | ean13 | integer - isn | public | hashisbn | isbn | integer - isn | public | hashisbn13 | isbn13 | integer - isn | public | hashismn | ismn | integer - isn | public | hashismn13 | ismn13 | integer - isn | public | hashissn | issn | integer - isn | public | hashissn13 | issn13 | integer - isn | public | hashupc | upc | integer - isn | public | is_valid | isbn13 | boolean - isn | public | is_valid | upc | boolean - isn | public | is_valid | ismn | boolean - isn | public | is_valid | issn | boolean - isn | public | is_valid | isbn | boolean - isn | public | is_valid | ismn13 | boolean - isn | public | is_valid | ean13 | boolean - isn | public | is_valid | issn13 | boolean - isn | public | isbn | ean13 | isbn - isn | public | isbn13 | ean13 | isbn13 - isn | public | isbn13_in | cstring | isbn13 - isn | public | isbn_in | cstring | isbn - isn | public | ismn | ean13 | ismn - isn | public | ismn13 | ean13 | ismn13 - isn | public | ismn13_in | cstring | ismn13 - isn | public | ismn_in | cstring | ismn - isn | public | isn_out | upc | cstring - isn | public | isn_out | ismn | cstring - isn | public | isn_out | issn | cstring - isn | public | isn_out | isbn | cstring - isn | public | isn_weak | boolean | boolean - isn | public | isn_weak | | boolean - isn | public | isneq | ismn, ismn | boolean - isn | public | isneq | ean13, ean13 | boolean - isn | public | isneq | isbn, ean13 | boolean - isn | public | isneq | issn, ean13 | boolean - isn | public | isneq | isbn13, isbn13 | boolean - isn | public | isneq | ean13, issn | boolean - isn | public | isneq | isbn, isbn | boolean - isn | public | isneq | ean13, upc | boolean - isn | public | isneq | ean13, issn13 | boolean - isn | public | isneq | ean13, ismn | boolean - isn | public | isneq | upc, upc | boolean - isn | public | isneq | issn13, issn13 | boolean - isn | public | isneq | upc, ean13 | boolean - isn | public | isneq | ismn13, ismn13 | boolean - isn | public | isneq | issn13, ean13 | boolean - isn | public | isneq | ean13, ismn13 | boolean - isn | public | isneq | ismn13, ean13 | boolean - isn | public | isneq | issn13, issn | boolean - isn | public | isneq | ismn, ean13 | boolean - isn | public | isneq | ismn13, ismn | boolean - isn | public | isneq | ean13, isbn13 | boolean - isn | public | isneq | isbn13, ean13 | boolean - isn | public | isneq | isbn13, isbn | boolean - isn | public | isneq | isbn, isbn13 | boolean - isn | public | isneq | ismn, ismn13 | boolean - isn | public | isneq | ean13, isbn | boolean - isn | public | isneq | issn, issn13 | boolean - isn | public | isneq | issn, issn | boolean - isn | public | isnge | ismn, ismn | boolean - isn | public | isnge | ean13, ean13 | boolean - isn | public | isnge | isbn, ean13 | boolean - isn | public | isnge | issn, ean13 | boolean - isn | public | isnge | isbn13, isbn13 | boolean - isn | public | isnge | ean13, issn | boolean - isn | public | isnge | isbn, isbn | boolean - isn | public | isnge | ean13, upc | boolean - isn | public | isnge | ean13, issn13 | boolean - isn | public | isnge | ean13, ismn | boolean - isn | public | isnge | upc, upc | boolean - isn | public | isnge | issn13, issn13 | boolean - isn | public | isnge | upc, ean13 | boolean - isn | public | isnge | ismn13, ismn13 | boolean - isn | public | isnge | issn13, ean13 | boolean - isn | public | isnge | ean13, ismn13 | boolean - isn | public | isnge | ismn13, ean13 | boolean - isn | public | isnge | issn13, issn | boolean - isn | public | isnge | ismn, ean13 | boolean - isn | public | isnge | ismn13, ismn | boolean - isn | public | isnge | ean13, isbn13 | boolean - isn | public | isnge | isbn13, ean13 | boolean - isn | public | isnge | isbn13, isbn | boolean - isn | public | isnge | isbn, isbn13 | boolean - isn | public | isnge | ismn, ismn13 | boolean - isn | public | isnge | ean13, isbn | boolean - isn | public | isnge | issn, issn13 | boolean - isn | public | isnge | issn, issn | boolean - isn | public | isngt | ismn, ismn | boolean - isn | public | isngt | ean13, ean13 | boolean - isn | public | isngt | isbn, ean13 | boolean - isn | public | isngt | issn, ean13 | boolean - isn | public | isngt | isbn13, isbn13 | boolean - isn | public | isngt | ean13, issn | boolean - isn | public | isngt | isbn, isbn | boolean - isn | public | isngt | ean13, upc | boolean - isn | public | isngt | ean13, issn13 | boolean - isn | public | isngt | ean13, ismn | boolean - isn | public | isngt | upc, upc | boolean - isn | public | isngt | issn13, issn13 | boolean - isn | public | isngt | upc, ean13 | boolean - isn | public | isngt | ismn13, ismn13 | boolean - isn | public | isngt | issn13, ean13 | boolean - isn | public | isngt | ean13, ismn13 | boolean - isn | public | isngt | ismn13, ean13 | boolean - isn | public | isngt | issn13, issn | boolean - isn | public | isngt | ismn, ean13 | boolean - isn | public | isngt | ismn13, ismn | boolean - isn | public | isngt | ean13, isbn13 | boolean - isn | public | isngt | isbn13, ean13 | boolean - isn | public | isngt | isbn13, isbn | boolean - isn | public | isngt | isbn, isbn13 | boolean - isn | public | isngt | ismn, ismn13 | boolean - isn | public | isngt | ean13, isbn | boolean - isn | public | isngt | issn, issn13 | boolean - isn | public | isngt | issn, issn | boolean - isn | public | isnle | ismn, ismn | boolean - isn | public | isnle | ean13, ean13 | boolean - isn | public | isnle | isbn, ean13 | boolean - isn | public | isnle | issn, ean13 | boolean - isn | public | isnle | isbn13, isbn13 | boolean - isn | public | isnle | ean13, issn | boolean - isn | public | isnle | isbn, isbn | boolean - isn | public | isnle | ean13, upc | boolean - isn | public | isnle | ean13, issn13 | boolean - isn | public | isnle | ean13, ismn | boolean - isn | public | isnle | upc, upc | boolean - isn | public | isnle | issn13, issn13 | boolean - isn | public | isnle | upc, ean13 | boolean - isn | public | isnle | ismn13, ismn13 | boolean - isn | public | isnle | issn13, ean13 | boolean - isn | public | isnle | ean13, ismn13 | boolean - isn | public | isnle | ismn13, ean13 | boolean - isn | public | isnle | issn13, issn | boolean - isn | public | isnle | ismn, ean13 | boolean - isn | public | isnle | ismn13, ismn | boolean - isn | public | isnle | ean13, isbn13 | boolean - isn | public | isnle | isbn13, ean13 | boolean - isn | public | isnle | isbn13, isbn | boolean - isn | public | isnle | isbn, isbn13 | boolean - isn | public | isnle | ismn, ismn13 | boolean - isn | public | isnle | ean13, isbn | boolean - isn | public | isnle | issn, issn13 | boolean - isn | public | isnle | issn, issn | boolean - isn | public | isnlt | ismn, ismn | boolean - isn | public | isnlt | ean13, ean13 | boolean - isn | public | isnlt | isbn, ean13 | boolean - isn | public | isnlt | issn, ean13 | boolean - isn | public | isnlt | isbn13, isbn13 | boolean - isn | public | isnlt | ean13, issn | boolean - isn | public | isnlt | isbn, isbn | boolean - isn | public | isnlt | ean13, upc | boolean - isn | public | isnlt | ean13, issn13 | boolean - isn | public | isnlt | ean13, ismn | boolean - isn | public | isnlt | upc, upc | boolean - isn | public | isnlt | issn13, issn13 | boolean - isn | public | isnlt | upc, ean13 | boolean - isn | public | isnlt | ismn13, ismn13 | boolean - isn | public | isnlt | issn13, ean13 | boolean - isn | public | isnlt | ean13, ismn13 | boolean - isn | public | isnlt | ismn13, ean13 | boolean - isn | public | isnlt | issn13, issn | boolean - isn | public | isnlt | ismn, ean13 | boolean - isn | public | isnlt | ismn13, ismn | boolean - isn | public | isnlt | ean13, isbn13 | boolean - isn | public | isnlt | isbn13, ean13 | boolean - isn | public | isnlt | isbn13, isbn | boolean - isn | public | isnlt | isbn, isbn13 | boolean - isn | public | isnlt | ismn, ismn13 | boolean - isn | public | isnlt | ean13, isbn | boolean - isn | public | isnlt | issn, issn13 | boolean - isn | public | isnlt | issn, issn | boolean - isn | public | isnne | ismn, ismn | boolean - isn | public | isnne | ean13, ean13 | boolean - isn | public | isnne | isbn, ean13 | boolean - isn | public | isnne | issn, ean13 | boolean - isn | public | isnne | isbn13, isbn13 | boolean - isn | public | isnne | ean13, issn | boolean - isn | public | isnne | isbn, isbn | boolean - isn | public | isnne | ean13, upc | boolean - isn | public | isnne | ean13, issn13 | boolean - isn | public | isnne | ean13, ismn | boolean - isn | public | isnne | upc, upc | boolean - isn | public | isnne | issn13, issn13 | boolean - isn | public | isnne | upc, ean13 | boolean - isn | public | isnne | ismn13, ismn13 | boolean - isn | public | isnne | issn13, ean13 | boolean - isn | public | isnne | ean13, ismn13 | boolean - isn | public | isnne | ismn13, ean13 | boolean - isn | public | isnne | issn13, issn | boolean - isn | public | isnne | ismn, ean13 | boolean - isn | public | isnne | ismn13, ismn | boolean - isn | public | isnne | ean13, isbn13 | boolean - isn | public | isnne | isbn13, ean13 | boolean - isn | public | isnne | isbn13, isbn | boolean - isn | public | isnne | isbn, isbn13 | boolean - isn | public | isnne | ismn, ismn13 | boolean - isn | public | isnne | ean13, isbn | boolean - isn | public | isnne | issn, issn13 | boolean - isn | public | isnne | issn, issn | boolean - isn | public | issn | ean13 | issn - isn | public | issn13 | ean13 | issn13 - isn | public | issn13_in | cstring | issn13 - isn | public | issn_in | cstring | issn - isn | public | make_valid | isbn13 | isbn13 - isn | public | make_valid | upc | upc - isn | public | make_valid | ismn | ismn - isn | public | make_valid | issn | issn - isn | public | make_valid | isbn | isbn - isn | public | make_valid | ismn13 | ismn13 - isn | public | make_valid | ean13 | ean13 - isn | public | make_valid | issn13 | issn13 - isn | public | upc | ean13 | upc - isn | public | upc_in | cstring | upc - lo | public | lo_manage | | trigger - lo | public | lo_oid | lo | oid - ltree | public | _lt_q_regex | ltree[], lquery[] | boolean - ltree | public | _lt_q_rregex | lquery[], ltree[] | boolean - ltree | public | _ltq_extract_regex | ltree[], lquery | ltree - ltree | public | _ltq_regex | ltree[], lquery | boolean - ltree | public | _ltq_rregex | lquery, ltree[] | boolean - ltree | public | _ltree_compress | internal | internal - ltree | public | _ltree_consistent | internal, ltree[], smallint, oid, internal | boolean - ltree | public | _ltree_extract_isparent | ltree[], ltree | ltree - ltree | public | _ltree_extract_risparent | ltree[], ltree | ltree - ltree | public | _ltree_gist_options | internal | void - ltree | public | _ltree_isparent | ltree[], ltree | boolean - ltree | public | _ltree_penalty | internal, internal, internal | internal - ltree | public | _ltree_picksplit | internal, internal | internal - ltree | public | _ltree_r_isparent | ltree, ltree[] | boolean - ltree | public | _ltree_r_risparent | ltree, ltree[] | boolean - ltree | public | _ltree_risparent | ltree[], ltree | boolean - ltree | public | _ltree_same | ltree_gist, ltree_gist, internal | internal - ltree | public | _ltree_union | internal, internal | ltree_gist - ltree | public | _ltxtq_exec | ltree[], ltxtquery | boolean - ltree | public | _ltxtq_extract_exec | ltree[], ltxtquery | ltree - ltree | public | _ltxtq_rexec | ltxtquery, ltree[] | boolean - ltree | public | hash_ltree | ltree | integer - ltree | public | hash_ltree_extended | ltree, bigint | bigint - ltree | public | index | ltree, ltree | integer - ltree | public | index | ltree, ltree, integer | integer - ltree | public | lca | ltree, ltree, ltree, ltree, ltree, ltree | ltree - ltree | public | lca | ltree, ltree | ltree - ltree | public | lca | ltree, ltree, ltree | ltree - ltree | public | lca | ltree, ltree, ltree, ltree, ltree, ltree, ltree, ltree | ltree - ltree | public | lca | ltree, ltree, ltree, ltree, ltree | ltree - ltree | public | lca | ltree[] | ltree - ltree | public | lca | ltree, ltree, ltree, ltree, ltree, ltree, ltree | ltree - ltree | public | lca | ltree, ltree, ltree, ltree | ltree - ltree | public | lquery_in | cstring | lquery - ltree | public | lquery_out | lquery | cstring - ltree | public | lquery_recv | internal | lquery - ltree | public | lquery_send | lquery | bytea - ltree | public | lt_q_regex | ltree, lquery[] | boolean - ltree | public | lt_q_rregex | lquery[], ltree | boolean - ltree | public | ltq_regex | ltree, lquery | boolean - ltree | public | ltq_rregex | lquery, ltree | boolean - ltree | public | ltree2text | ltree | text - ltree | public | ltree_addltree | ltree, ltree | ltree - ltree | public | ltree_addtext | ltree, text | ltree - ltree | public | ltree_cmp | ltree, ltree | integer - ltree | public | ltree_compress | internal | internal - ltree | public | ltree_consistent | internal, ltree, smallint, oid, internal | boolean - ltree | public | ltree_decompress | internal | internal - ltree | public | ltree_eq | ltree, ltree | boolean - ltree | public | ltree_ge | ltree, ltree | boolean - ltree | public | ltree_gist_in | cstring | ltree_gist - ltree | public | ltree_gist_options | internal | void - ltree | public | ltree_gist_out | ltree_gist | cstring - ltree | public | ltree_gt | ltree, ltree | boolean - ltree | public | ltree_in | cstring | ltree - ltree | public | ltree_isparent | ltree, ltree | boolean - ltree | public | ltree_le | ltree, ltree | boolean - ltree | public | ltree_lt | ltree, ltree | boolean - ltree | public | ltree_ne | ltree, ltree | boolean - ltree | public | ltree_out | ltree | cstring - ltree | public | ltree_penalty | internal, internal, internal | internal - ltree | public | ltree_picksplit | internal, internal | internal - ltree | public | ltree_recv | internal | ltree - ltree | public | ltree_risparent | ltree, ltree | boolean - ltree | public | ltree_same | ltree_gist, ltree_gist, internal | internal - ltree | public | ltree_send | ltree | bytea - ltree | public | ltree_textadd | text, ltree | ltree - ltree | public | ltree_union | internal, internal | ltree_gist - ltree | public | ltreeparentsel | internal, oid, internal, integer | double precision - ltree | public | ltxtq_exec | ltree, ltxtquery | boolean - ltree | public | ltxtq_in | cstring | ltxtquery - ltree | public | ltxtq_out | ltxtquery | cstring - ltree | public | ltxtq_recv | internal | ltxtquery - ltree | public | ltxtq_rexec | ltxtquery, ltree | boolean - ltree | public | ltxtq_send | ltxtquery | bytea - ltree | public | nlevel | ltree | integer - ltree | public | subltree | ltree, integer, integer | ltree - ltree | public | subpath | ltree, integer | ltree - ltree | public | subpath | ltree, integer, integer | ltree - ltree | public | text2ltree | text | ltree - moddatetime | public | moddatetime | | trigger - pageinspect | public | brin_metapage_info | page bytea, OUT magic text, OUT version integer, OUT pagesperrange integer, OUT lastrevmappage bigint | record - pageinspect | public | brin_page_type | page bytea | text - pageinspect | public | brin_revmap_data | page bytea, OUT pages tid | SETOF tid - pageinspect | public | bt_metap | relname text, OUT magic integer, OUT version integer, OUT root bigint, OUT level bigint, OUT fastroot bigint, OUT fastlevel bigint, OUT last_cleanup_num_delpages bigint, OUT last_cleanup_num_tuples double precision, OUT allequalimage boolean | record - pageinspect | public | bt_page_items | page bytea, OUT itemoffset smallint, OUT ctid tid, OUT itemlen smallint, OUT nulls boolean, OUT vars boolean, OUT data text, OUT dead boolean, OUT htid tid, OUT tids tid[] | SETOF record - pageinspect | public | bt_page_items | relname text, blkno bigint, OUT itemoffset smallint, OUT ctid tid, OUT itemlen smallint, OUT nulls boolean, OUT vars boolean, OUT data text, OUT dead boolean, OUT htid tid, OUT tids tid[] | SETOF record - pageinspect | public | bt_page_stats | relname text, blkno bigint, OUT blkno bigint, OUT type "char", OUT live_items integer, OUT dead_items integer, OUT avg_item_size integer, OUT page_size integer, OUT free_size integer, OUT btpo_prev bigint, OUT btpo_next bigint, OUT btpo_level bigint, OUT btpo_flags integer | record - pageinspect | public | fsm_page_contents | page bytea | text - pageinspect | public | get_raw_page | text, bigint | bytea - pageinspect | public | get_raw_page | text, text, bigint | bytea - pageinspect | public | gin_leafpage_items | page bytea, OUT first_tid tid, OUT nbytes smallint, OUT tids tid[] | SETOF record - pageinspect | public | gin_metapage_info | page bytea, OUT pending_head bigint, OUT pending_tail bigint, OUT tail_free_size integer, OUT n_pending_pages bigint, OUT n_pending_tuples bigint, OUT n_total_pages bigint, OUT n_entry_pages bigint, OUT n_data_pages bigint, OUT n_entries bigint, OUT version integer | record - pageinspect | public | gin_page_opaque_info | page bytea, OUT rightlink bigint, OUT maxoff integer, OUT flags text[] | record - pageinspect | public | gist_page_items | page bytea, index_oid regclass, OUT itemoffset smallint, OUT ctid tid, OUT itemlen smallint, OUT dead boolean, OUT keys text | SETOF record - pageinspect | public | gist_page_items_bytea | page bytea, OUT itemoffset smallint, OUT ctid tid, OUT itemlen smallint, OUT dead boolean, OUT key_data bytea | SETOF record - pageinspect | public | gist_page_opaque_info | page bytea, OUT lsn pg_lsn, OUT nsn pg_lsn, OUT rightlink bigint, OUT flags text[] | record - pageinspect | public | hash_bitmap_info | index_oid regclass, blkno bigint, OUT bitmapblkno bigint, OUT bitmapbit integer, OUT bitstatus boolean | SETOF record - pageinspect | public | hash_metapage_info | page bytea, OUT magic bigint, OUT version bigint, OUT ntuples double precision, OUT ffactor integer, OUT bsize integer, OUT bmsize integer, OUT bmshift integer, OUT maxbucket bigint, OUT highmask bigint, OUT lowmask bigint, OUT ovflpoint bigint, OUT firstfree bigint, OUT nmaps bigint, OUT procid oid, OUT spares bigint[], OUT mapp bigint[] | record - pageinspect | public | hash_page_items | page bytea, OUT itemoffset integer, OUT ctid tid, OUT data bigint | SETOF record - pageinspect | public | hash_page_stats | page bytea, OUT live_items integer, OUT dead_items integer, OUT page_size integer, OUT free_size integer, OUT hasho_prevblkno bigint, OUT hasho_nextblkno bigint, OUT hasho_bucket bigint, OUT hasho_flag integer, OUT hasho_page_id integer | record - pageinspect | public | hash_page_type | page bytea | text - pageinspect | public | heap_page_item_attrs | page bytea, rel_oid regclass, OUT lp smallint, OUT lp_off smallint, OUT lp_flags smallint, OUT lp_len smallint, OUT t_xmin xid, OUT t_xmax xid, OUT t_field3 integer, OUT t_ctid tid, OUT t_infomask2 integer, OUT t_infomask integer, OUT t_hoff smallint, OUT t_bits text, OUT t_oid oid, OUT t_attrs bytea[] | SETOF record - pageinspect | public | heap_page_item_attrs | page bytea, rel_oid regclass, do_detoast boolean, OUT lp smallint, OUT lp_off smallint, OUT lp_flags smallint, OUT lp_len smallint, OUT t_xmin xid, OUT t_xmax xid, OUT t_field3 integer, OUT t_ctid tid, OUT t_infomask2 integer, OUT t_infomask integer, OUT t_hoff smallint, OUT t_bits text, OUT t_oid oid, OUT t_attrs bytea[] | SETOF record - pageinspect | public | heap_page_items | page bytea, OUT lp smallint, OUT lp_off smallint, OUT lp_flags smallint, OUT lp_len smallint, OUT t_xmin xid, OUT t_xmax xid, OUT t_field3 integer, OUT t_ctid tid, OUT t_infomask2 integer, OUT t_infomask integer, OUT t_hoff smallint, OUT t_bits text, OUT t_oid oid, OUT t_data bytea | SETOF record - pageinspect | public | heap_tuple_infomask_flags | t_infomask integer, t_infomask2 integer, OUT raw_flags text[], OUT combined_flags text[] | record - pageinspect | public | page_checksum | page bytea, blkno bigint | smallint - pageinspect | public | page_header | page bytea, OUT lsn pg_lsn, OUT checksum smallint, OUT flags smallint, OUT lower integer, OUT upper integer, OUT special integer, OUT pagesize integer, OUT version smallint, OUT prune_xid xid | record - pageinspect | public | tuple_data_split | rel_oid oid, t_data bytea, t_infomask integer, t_infomask2 integer, t_bits text | bytea[] - pageinspect | public | tuple_data_split | rel_oid oid, t_data bytea, t_infomask integer, t_infomask2 integer, t_bits text, do_detoast boolean | bytea[] - pg_buffercache | public | pg_buffercache_evict | integer | boolean - pg_buffercache | public | pg_buffercache_pages | | SETOF record - pg_freespacemap | public | pg_freespace | rel regclass, OUT blkno bigint, OUT avail smallint | SETOF record - pg_freespacemap | public | pg_freespace | regclass, bigint | smallint - pg_graphql | graphql | _internal_resolve | query text, variables jsonb, "operationName" text, extensions jsonb | jsonb - pg_graphql | graphql | comment_directive | comment_ text | jsonb - pg_graphql | graphql | exception | message text | text - pg_graphql | graphql | get_schema_version | | integer - pg_graphql | graphql | increment_schema_version | | event_trigger - pg_graphql | graphql | resolve | query text, variables jsonb, "operationName" text, extensions jsonb | jsonb - pg_graphql | graphql_public | graphql | "operationName" text, query text, variables jsonb, extensions jsonb | jsonb - pg_hashids | public | hash_decode | text, text, integer | integer - pg_hashids | public | hash_encode | bigint | text - pg_hashids | public | hash_encode | bigint, text | text - pg_hashids | public | hash_encode | bigint, text, integer | text - pg_hashids | public | id_decode | text | bigint[] - pg_hashids | public | id_decode | text, text | bigint[] - pg_hashids | public | id_decode | text, text, integer, text | bigint[] - pg_hashids | public | id_decode | text, text, integer | bigint[] - pg_hashids | public | id_decode_once | text | bigint - pg_hashids | public | id_decode_once | text, text | bigint - pg_hashids | public | id_decode_once | text, text, integer, text | bigint - pg_hashids | public | id_decode_once | text, text, integer | bigint - pg_hashids | public | id_encode | bigint | text - pg_hashids | public | id_encode | bigint[] | text - pg_hashids | public | id_encode | bigint[], text | text - pg_hashids | public | id_encode | bigint[], text, integer | text - pg_hashids | public | id_encode | bigint, text | text - pg_hashids | public | id_encode | bigint, text, integer | text - pg_hashids | public | id_encode | bigint, text, integer, text | text - pg_hashids | public | id_encode | bigint[], text, integer, text | text - pg_jsonschema | public | json_matches_schema | schema json, instance json | boolean - pg_jsonschema | public | jsonb_matches_schema | schema json, instance jsonb | boolean - pg_jsonschema | public | jsonschema_is_valid | schema json | boolean - pg_jsonschema | public | jsonschema_validation_errors | schema json, instance json | text[] - pg_net | net | _await_response | request_id bigint | boolean - pg_net | net | _encode_url_with_params_array | url text, params_array text[] | text - pg_net | net | _http_collect_response | request_id bigint, async boolean | net.http_response_result - pg_net | net | _urlencode_string | string character varying | text - pg_net | net | check_worker_is_up | | void - pg_net | net | http_collect_response | request_id bigint, async boolean | net.http_response_result - pg_net | net | http_delete | url text, params jsonb, headers jsonb, timeout_milliseconds integer, body jsonb | bigint - pg_net | net | http_get | url text, params jsonb, headers jsonb, timeout_milliseconds integer | bigint - pg_net | net | http_post | url text, body jsonb, params jsonb, headers jsonb, timeout_milliseconds integer | bigint - pg_net | net | wait_until_running | | void - pg_net | net | wake | | void - pg_net | net | worker_restart | | boolean - pg_prewarm | public | autoprewarm_dump_now | | bigint - pg_prewarm | public | autoprewarm_start_worker | | void - pg_prewarm | public | pg_prewarm | regclass, mode text, fork text, first_block bigint, last_block bigint | bigint - pg_repack | repack | conflicted_triggers | oid | SETOF name - pg_repack | repack | create_index_type | oid, oid | void - pg_repack | repack | create_log_table | oid | void - pg_repack | repack | create_table | oid, name | void - pg_repack | repack | disable_autovacuum | regclass | void - pg_repack | repack | get_alter_col_storage | oid | text - pg_repack | repack | get_assign | oid, text | text - pg_repack | repack | get_columns_for_create_as | oid | text - pg_repack | repack | get_compare_pkey | oid, text | text - pg_repack | repack | get_create_index_type | oid, name | text - pg_repack | repack | get_create_trigger | relid oid, pkid oid | text - pg_repack | repack | get_drop_columns | oid, text | text - pg_repack | repack | get_enable_trigger | relid oid | text - pg_repack | repack | get_index_columns | oid | text - pg_repack | repack | get_order_by | oid, oid | text - pg_repack | repack | get_storage_param | oid | text - pg_repack | repack | get_table_and_inheritors | regclass | regclass[] - pg_repack | repack | oid2text | oid | text - pg_repack | repack | repack_apply | sql_peek cstring, sql_insert cstring, sql_delete cstring, sql_update cstring, sql_pop cstring, count integer | integer - pg_repack | repack | repack_drop | oid, integer | void - pg_repack | repack | repack_index_swap | oid | void - pg_repack | repack | repack_indexdef | oid, oid, name, boolean | text - pg_repack | repack | repack_swap | oid | void - pg_repack | repack | repack_trigger | | trigger - pg_repack | repack | version | | text - pg_repack | repack | version_sql | | text - pg_stat_monitor | public | decode_error_level | elevel integer | text - pg_stat_monitor | public | get_cmd_type | cmd_type integer | text - pg_stat_monitor | public | get_histogram_timings | | text - pg_stat_monitor | public | histogram | _bucket integer, _quryid bigint | SETOF record - pg_stat_monitor | public | pg_stat_monitor_internal | showtext boolean, OUT bucket bigint, OUT userid oid, OUT username text, OUT dbid oid, OUT datname text, OUT client_ip bigint, OUT queryid bigint, OUT planid bigint, OUT query text, OUT query_plan text, OUT pgsm_query_id bigint, OUT top_queryid bigint, OUT top_query text, OUT application_name text, OUT relations text, OUT cmd_type integer, OUT elevel integer, OUT sqlcode text, OUT message text, OUT bucket_start_time timestamp with time zone, OUT calls bigint, OUT total_exec_time double precision, OUT min_exec_time double precision, OUT max_exec_time double precision, OUT mean_exec_time double precision, OUT stddev_exec_time double precision, OUT rows bigint, OUT plans bigint, OUT total_plan_time double precision, OUT min_plan_time double precision, OUT max_plan_time double precision, OUT mean_plan_time double precision, OUT stddev_plan_time double precision, OUT shared_blks_hit bigint, OUT shared_blks_read bigint, OUT shared_blks_dirtied bigint, OUT shared_blks_written bigint, OUT local_blks_hit bigint, OUT local_blks_read bigint, OUT local_blks_dirtied bigint, OUT local_blks_written bigint, OUT temp_blks_read bigint, OUT temp_blks_written bigint, OUT shared_blk_read_time double precision, OUT shared_blk_write_time double precision, OUT local_blk_read_time double precision, OUT local_blk_write_time double precision, OUT temp_blk_read_time double precision, OUT temp_blk_write_time double precision, OUT resp_calls text, OUT cpu_user_time double precision, OUT cpu_sys_time double precision, OUT wal_records bigint, OUT wal_fpi bigint, OUT wal_bytes numeric, OUT comments text, OUT jit_functions bigint, OUT jit_generation_time double precision, OUT jit_inlining_count bigint, OUT jit_inlining_time double precision, OUT jit_optimization_count bigint, OUT jit_optimization_time double precision, OUT jit_emission_count bigint, OUT jit_emission_time double precision, OUT jit_deform_count bigint, OUT jit_deform_time double precision, OUT stats_since timestamp with time zone, OUT minmax_stats_since timestamp with time zone, OUT toplevel boolean, OUT bucket_done boolean | SETOF record - pg_stat_monitor | public | pg_stat_monitor_reset | | void - pg_stat_monitor | public | pg_stat_monitor_version | | text - pg_stat_monitor | public | pgsm_create_11_view | | integer - pg_stat_monitor | public | pgsm_create_13_view | | integer - pg_stat_monitor | public | pgsm_create_14_view | | integer - pg_stat_monitor | public | pgsm_create_15_view | | integer - pg_stat_monitor | public | pgsm_create_17_view | | integer - pg_stat_monitor | public | pgsm_create_view | | integer - pg_stat_monitor | public | range | | text[] - pg_stat_statements | extensions | pg_stat_statements | showtext boolean, OUT userid oid, OUT dbid oid, OUT toplevel boolean, OUT queryid bigint, OUT query text, OUT plans bigint, OUT total_plan_time double precision, OUT min_plan_time double precision, OUT max_plan_time double precision, OUT mean_plan_time double precision, OUT stddev_plan_time double precision, OUT calls bigint, OUT total_exec_time double precision, OUT min_exec_time double precision, OUT max_exec_time double precision, OUT mean_exec_time double precision, OUT stddev_exec_time double precision, OUT rows bigint, OUT shared_blks_hit bigint, OUT shared_blks_read bigint, OUT shared_blks_dirtied bigint, OUT shared_blks_written bigint, OUT local_blks_hit bigint, OUT local_blks_read bigint, OUT local_blks_dirtied bigint, OUT local_blks_written bigint, OUT temp_blks_read bigint, OUT temp_blks_written bigint, OUT shared_blk_read_time double precision, OUT shared_blk_write_time double precision, OUT local_blk_read_time double precision, OUT local_blk_write_time double precision, OUT temp_blk_read_time double precision, OUT temp_blk_write_time double precision, OUT wal_records bigint, OUT wal_fpi bigint, OUT wal_bytes numeric, OUT jit_functions bigint, OUT jit_generation_time double precision, OUT jit_inlining_count bigint, OUT jit_inlining_time double precision, OUT jit_optimization_count bigint, OUT jit_optimization_time double precision, OUT jit_emission_count bigint, OUT jit_emission_time double precision, OUT jit_deform_count bigint, OUT jit_deform_time double precision, OUT stats_since timestamp with time zone, OUT minmax_stats_since timestamp with time zone | SETOF record - pg_stat_statements | extensions | pg_stat_statements_info | OUT dealloc bigint, OUT stats_reset timestamp with time zone | record - pg_stat_statements | extensions | pg_stat_statements_reset | userid oid, dbid oid, queryid bigint, minmax_only boolean | timestamp with time zone - pg_surgery | public | heap_force_freeze | reloid regclass, tids tid[] | void - pg_surgery | public | heap_force_kill | reloid regclass, tids tid[] | void - pg_tle | pgtle | available_extension_versions | OUT name name, OUT version text, OUT superuser boolean, OUT trusted boolean, OUT relocatable boolean, OUT schema name, OUT requires name[], OUT comment text | SETOF record - pg_tle | pgtle | available_extensions | OUT name name, OUT default_version text, OUT comment text | SETOF record - pg_tle | pgtle | create_base_type | typenamespace regnamespace, typename name, infunc regprocedure, outfunc regprocedure, internallength integer, alignment text, storage text | void - pg_tle | pgtle | create_base_type_if_not_exists | typenamespace regnamespace, typename name, infunc regprocedure, outfunc regprocedure, internallength integer, alignment text, storage text | boolean - pg_tle | pgtle | create_operator_func | typenamespace regnamespace, typename name, opfunc regprocedure | void - pg_tle | pgtle | create_operator_func_if_not_exists | typenamespace regnamespace, typename name, opfunc regprocedure | boolean - pg_tle | pgtle | create_shell_type | typenamespace regnamespace, typename name | void - pg_tle | pgtle | create_shell_type_if_not_exists | typenamespace regnamespace, typename name | boolean - pg_tle | pgtle | extension_update_paths | name name, OUT source text, OUT target text, OUT path text | SETOF record - pg_tle | pgtle | install_extension | name text, version text, description text, ext text, requires text[] | boolean - pg_tle | pgtle | install_extension_version_sql | name text, version text, ext text | boolean - pg_tle | pgtle | install_update_path | name text, fromvers text, tovers text, ext text | boolean - pg_tle | pgtle | pg_tle_feature_info_sql_drop | | event_trigger - pg_tle | pgtle | register_feature | proc regproc, feature pgtle.pg_tle_features | void - pg_tle | pgtle | register_feature_if_not_exists | proc regproc, feature pgtle.pg_tle_features | boolean - pg_tle | pgtle | set_default_version | name text, version text | boolean - pg_tle | pgtle | uninstall_extension | extname text | boolean - pg_tle | pgtle | uninstall_extension | extname text, version text | boolean - pg_tle | pgtle | uninstall_extension_if_exists | extname text | boolean - pg_tle | pgtle | uninstall_update_path | extname text, fromvers text, tovers text | boolean - pg_tle | pgtle | uninstall_update_path_if_exists | extname text, fromvers text, tovers text | boolean - pg_tle | pgtle | unregister_feature | proc regproc, feature pgtle.pg_tle_features | void - pg_tle | pgtle | unregister_feature_if_exists | proc regproc, feature pgtle.pg_tle_features | boolean - pg_trgm | public | gin_extract_query_trgm | text, internal, smallint, internal, internal, internal, internal | internal - pg_trgm | public | gin_extract_value_trgm | text, internal | internal - pg_trgm | public | gin_trgm_consistent | internal, smallint, text, integer, internal, internal, internal, internal | boolean - pg_trgm | public | gin_trgm_triconsistent | internal, smallint, text, integer, internal, internal, internal | "char" - pg_trgm | public | gtrgm_compress | internal | internal - pg_trgm | public | gtrgm_consistent | internal, text, smallint, oid, internal | boolean - pg_trgm | public | gtrgm_decompress | internal | internal - pg_trgm | public | gtrgm_distance | internal, text, smallint, oid, internal | double precision - pg_trgm | public | gtrgm_in | cstring | gtrgm - pg_trgm | public | gtrgm_options | internal | void - pg_trgm | public | gtrgm_out | gtrgm | cstring - pg_trgm | public | gtrgm_penalty | internal, internal, internal | internal - pg_trgm | public | gtrgm_picksplit | internal, internal | internal - pg_trgm | public | gtrgm_same | gtrgm, gtrgm, internal | internal - pg_trgm | public | gtrgm_union | internal, internal | gtrgm - pg_trgm | public | set_limit | real | real - pg_trgm | public | show_limit | | real - pg_trgm | public | show_trgm | text | text[] - pg_trgm | public | similarity | text, text | real - pg_trgm | public | similarity_dist | text, text | real - pg_trgm | public | similarity_op | text, text | boolean - pg_trgm | public | strict_word_similarity | text, text | real - pg_trgm | public | strict_word_similarity_commutator_op | text, text | boolean - pg_trgm | public | strict_word_similarity_dist_commutator_op | text, text | real - pg_trgm | public | strict_word_similarity_dist_op | text, text | real - pg_trgm | public | strict_word_similarity_op | text, text | boolean - pg_trgm | public | word_similarity | text, text | real - pg_trgm | public | word_similarity_commutator_op | text, text | boolean - pg_trgm | public | word_similarity_dist_commutator_op | text, text | real - pg_trgm | public | word_similarity_dist_op | text, text | real - pg_trgm | public | word_similarity_op | text, text | boolean - pg_visibility | public | pg_check_frozen | regclass, OUT t_ctid tid | SETOF tid - pg_visibility | public | pg_check_visible | regclass, OUT t_ctid tid | SETOF tid - pg_visibility | public | pg_truncate_visibility_map | regclass | void - pg_visibility | public | pg_visibility | regclass, OUT blkno bigint, OUT all_visible boolean, OUT all_frozen boolean, OUT pd_all_visible boolean | SETOF record - pg_visibility | public | pg_visibility | regclass, blkno bigint, OUT all_visible boolean, OUT all_frozen boolean, OUT pd_all_visible boolean | record - pg_visibility | public | pg_visibility_map | regclass, blkno bigint, OUT all_visible boolean, OUT all_frozen boolean | record - pg_visibility | public | pg_visibility_map | regclass, OUT blkno bigint, OUT all_visible boolean, OUT all_frozen boolean | SETOF record - pg_visibility | public | pg_visibility_map_summary | regclass, OUT all_visible bigint, OUT all_frozen bigint | record - pg_walinspect | public | pg_get_wal_record_info | in_lsn pg_lsn, OUT start_lsn pg_lsn, OUT end_lsn pg_lsn, OUT prev_lsn pg_lsn, OUT xid xid, OUT resource_manager text, OUT record_type text, OUT record_length integer, OUT main_data_length integer, OUT fpi_length integer, OUT description text, OUT block_ref text | record - pg_walinspect | public | pg_get_wal_records_info | start_lsn pg_lsn, end_lsn pg_lsn, OUT start_lsn pg_lsn, OUT end_lsn pg_lsn, OUT prev_lsn pg_lsn, OUT xid xid, OUT resource_manager text, OUT record_type text, OUT record_length integer, OUT main_data_length integer, OUT fpi_length integer, OUT description text, OUT block_ref text | SETOF record - pg_walinspect | public | pg_get_wal_stats | start_lsn pg_lsn, end_lsn pg_lsn, per_record boolean, OUT "resource_manager/record_type" text, OUT count bigint, OUT count_percentage double precision, OUT record_size bigint, OUT record_size_percentage double precision, OUT fpi_size bigint, OUT fpi_size_percentage double precision, OUT combined_size bigint, OUT combined_size_percentage double precision | SETOF record - pgaudit | public | pgaudit_ddl_command_end | | event_trigger - pgaudit | public | pgaudit_sql_drop | | event_trigger - pgcrypto | extensions | armor | bytea, text[], text[] | text - pgcrypto | extensions | armor | bytea | text - pgcrypto | extensions | crypt | text, text | text - pgcrypto | extensions | dearmor | text | bytea - pgcrypto | extensions | decrypt | bytea, bytea, text | bytea - pgcrypto | extensions | decrypt_iv | bytea, bytea, bytea, text | bytea - pgcrypto | extensions | digest | text, text | bytea - pgcrypto | extensions | digest | bytea, text | bytea - pgcrypto | extensions | encrypt | bytea, bytea, text | bytea - pgcrypto | extensions | encrypt_iv | bytea, bytea, bytea, text | bytea - pgcrypto | extensions | gen_random_bytes | integer | bytea - pgcrypto | extensions | gen_random_uuid | | uuid - pgcrypto | extensions | gen_salt | text | text - pgcrypto | extensions | gen_salt | text, integer | text - pgcrypto | extensions | hmac | text, text, text | bytea - pgcrypto | extensions | hmac | bytea, bytea, text | bytea - pgcrypto | extensions | pgp_armor_headers | text, OUT key text, OUT value text | SETOF record - pgcrypto | extensions | pgp_key_id | bytea | text - pgcrypto | extensions | pgp_pub_decrypt | bytea, bytea | text - pgcrypto | extensions | pgp_pub_decrypt | bytea, bytea, text, text | text - pgcrypto | extensions | pgp_pub_decrypt | bytea, bytea, text | text - pgcrypto | extensions | pgp_pub_decrypt_bytea | bytea, bytea | bytea - pgcrypto | extensions | pgp_pub_decrypt_bytea | bytea, bytea, text, text | bytea - pgcrypto | extensions | pgp_pub_decrypt_bytea | bytea, bytea, text | bytea - pgcrypto | extensions | pgp_pub_encrypt | text, bytea, text | bytea - pgcrypto | extensions | pgp_pub_encrypt | text, bytea | bytea - pgcrypto | extensions | pgp_pub_encrypt_bytea | bytea, bytea | bytea - pgcrypto | extensions | pgp_pub_encrypt_bytea | bytea, bytea, text | bytea - pgcrypto | extensions | pgp_sym_decrypt | bytea, text | text - pgcrypto | extensions | pgp_sym_decrypt | bytea, text, text | text - pgcrypto | extensions | pgp_sym_decrypt_bytea | bytea, text | bytea - pgcrypto | extensions | pgp_sym_decrypt_bytea | bytea, text, text | bytea - pgcrypto | extensions | pgp_sym_encrypt | text, text | bytea - pgcrypto | extensions | pgp_sym_encrypt | text, text, text | bytea - pgcrypto | extensions | pgp_sym_encrypt_bytea | bytea, text | bytea - pgcrypto | extensions | pgp_sym_encrypt_bytea | bytea, text, text | bytea - pgmq | pgmq | _belongs_to_pgmq | table_name text | boolean - pgmq | pgmq | _ensure_pg_partman_installed | | void - pgmq | pgmq | _extension_exists | extension_name text | boolean - pgmq | pgmq | _get_partition_col | partition_interval text | text - pgmq | pgmq | _get_pg_partman_major_version | | integer - pgmq | pgmq | _get_pg_partman_schema | | text - pgmq | pgmq | archive | queue_name text, msg_id bigint | boolean - pgmq | pgmq | archive | queue_name text, msg_ids bigint[] | SETOF bigint - pgmq | pgmq | convert_archive_partitioned | table_name text, partition_interval text, retention_interval text, leading_partition integer | void - pgmq | pgmq | create | queue_name text | void - pgmq | pgmq | create_non_partitioned | queue_name text | void - pgmq | pgmq | create_partitioned | queue_name text, partition_interval text, retention_interval text | void - pgmq | pgmq | create_unlogged | queue_name text | void - pgmq | pgmq | delete | queue_name text, msg_id bigint | boolean - pgmq | pgmq | delete | queue_name text, msg_ids bigint[] | SETOF bigint - pgmq | pgmq | detach_archive | queue_name text | void - pgmq | pgmq | drop_queue | queue_name text, partitioned boolean | boolean - pgmq | pgmq | drop_queue | queue_name text | boolean - pgmq | pgmq | format_table_name | queue_name text, prefix text | text - pgmq | pgmq | list_queues | | SETOF pgmq.queue_record - pgmq | pgmq | metrics | queue_name text | pgmq.metrics_result - pgmq | pgmq | metrics_all | | SETOF pgmq.metrics_result - pgmq | pgmq | pop | queue_name text | SETOF pgmq.message_record - pgmq | pgmq | purge_queue | queue_name text | bigint - pgmq | pgmq | read | queue_name text, vt integer, qty integer, conditional jsonb | SETOF pgmq.message_record - pgmq | pgmq | read_with_poll | queue_name text, vt integer, qty integer, max_poll_seconds integer, poll_interval_ms integer, conditional jsonb | SETOF pgmq.message_record - pgmq | pgmq | send | queue_name text, msg jsonb, headers jsonb | SETOF bigint - pgmq | pgmq | send | queue_name text, msg jsonb, delay integer | SETOF bigint - pgmq | pgmq | send | queue_name text, msg jsonb, headers jsonb, delay timestamp with time zone | SETOF bigint - pgmq | pgmq | send | queue_name text, msg jsonb, headers jsonb, delay integer | SETOF bigint - pgmq | pgmq | send | queue_name text, msg jsonb | SETOF bigint - pgmq | pgmq | send | queue_name text, msg jsonb, delay timestamp with time zone | SETOF bigint - pgmq | pgmq | send_batch | queue_name text, msgs jsonb[], headers jsonb[] | SETOF bigint - pgmq | pgmq | send_batch | queue_name text, msgs jsonb[], headers jsonb[], delay timestamp with time zone | SETOF bigint - pgmq | pgmq | send_batch | queue_name text, msgs jsonb[], headers jsonb[], delay integer | SETOF bigint - pgmq | pgmq | send_batch | queue_name text, msgs jsonb[] | SETOF bigint - pgmq | pgmq | send_batch | queue_name text, msgs jsonb[], delay timestamp with time zone | SETOF bigint - pgmq | pgmq | send_batch | queue_name text, msgs jsonb[], delay integer | SETOF bigint - pgmq | pgmq | set_vt | queue_name text, msg_id bigint, vt integer | SETOF pgmq.message_record - pgmq | pgmq | validate_queue_name | queue_name text | void - pgroonga | pgroonga | command | groongacommand text | text - pgroonga | pgroonga | command | groongacommand text, arguments text[] | text - pgroonga | pgroonga | command_escape_value | value text | text - pgroonga | pgroonga | contain_varchar_array | character varying[], character varying | boolean - pgroonga | pgroonga | escape | value bigint | text - pgroonga | pgroonga | escape | value double precision | text - pgroonga | pgroonga | escape | value text, special_characters text | text - pgroonga | pgroonga | escape | value timestamp without time zone | text - pgroonga | pgroonga | escape | value smallint | text - pgroonga | pgroonga | escape | value text | text - pgroonga | pgroonga | escape | value timestamp with time zone | text - pgroonga | pgroonga | escape | value real | text - pgroonga | pgroonga | escape | value boolean | text - pgroonga | pgroonga | escape | value integer | text - pgroonga | pgroonga | flush | indexname cstring | boolean - pgroonga | pgroonga | highlight_html | target text, keywords text[] | text - pgroonga | pgroonga | match_in_text | text, text[] | boolean - pgroonga | pgroonga | match_in_text_array | text[], text[] | boolean - pgroonga | pgroonga | match_in_varchar | character varying, character varying[] | boolean - pgroonga | pgroonga | match_jsonb | jsonb, text | boolean - pgroonga | pgroonga | match_positions_byte | target text, keywords text[] | integer[] - pgroonga | pgroonga | match_positions_character | target text, keywords text[] | integer[] - pgroonga | pgroonga | match_query | text, text | boolean - pgroonga | pgroonga | match_query | character varying, character varying | boolean - pgroonga | pgroonga | match_query | text[], text | boolean - pgroonga | pgroonga | match_regexp | text, text | boolean - pgroonga | pgroonga | match_regexp | character varying, character varying | boolean - pgroonga | pgroonga | match_script_jsonb | jsonb, text | boolean - pgroonga | pgroonga | match_term | target text, term text | boolean - pgroonga | pgroonga | match_term | target text[], term text | boolean - pgroonga | pgroonga | match_term | target character varying[], term character varying | boolean - pgroonga | pgroonga | match_term | target character varying, term character varying | boolean - pgroonga | pgroonga | match_text | text, text | boolean - pgroonga | pgroonga | match_text_array | text[], text | boolean - pgroonga | pgroonga | match_varchar | character varying, character varying | boolean - pgroonga | pgroonga | prefix_in_text | text, text[] | boolean - pgroonga | pgroonga | prefix_in_text_array | text[], text[] | boolean - pgroonga | pgroonga | prefix_rk_in_text | text, text[] | boolean - pgroonga | pgroonga | prefix_rk_in_text_array | text[], text[] | boolean - pgroonga | pgroonga | prefix_rk_text | text, text | boolean - pgroonga | pgroonga | prefix_rk_text_array | text[], text | boolean - pgroonga | pgroonga | prefix_text | text, text | boolean - pgroonga | pgroonga | prefix_text_array | text[], text | boolean - pgroonga | pgroonga | query_escape | query text | text - pgroonga | pgroonga | query_expand | tablename cstring, termcolumnname text, synonymscolumnname text, query text | text - pgroonga | pgroonga | query_extract_keywords | query text | text[] - pgroonga | pgroonga | query_in_text | text, text[] | boolean - pgroonga | pgroonga | query_in_text_array | text[], text[] | boolean - pgroonga | pgroonga | query_in_varchar | character varying, character varying[] | boolean - pgroonga | pgroonga | query_jsonb | jsonb, text | boolean - pgroonga | pgroonga | query_text | text, text | boolean - pgroonga | pgroonga | query_text_array | text[], text | boolean - pgroonga | pgroonga | query_varchar | character varying, character varying | boolean - pgroonga | pgroonga | regexp_text | text, text | boolean - pgroonga | pgroonga | regexp_varchar | character varying, character varying | boolean - pgroonga | pgroonga | score | "row" record | double precision - pgroonga | pgroonga | script_jsonb | jsonb, text | boolean - pgroonga | pgroonga | script_text | text, text | boolean - pgroonga | pgroonga | script_text_array | text[], text | boolean - pgroonga | pgroonga | script_varchar | character varying, character varying | boolean - pgroonga | pgroonga | similar_text | text, text | boolean - pgroonga | pgroonga | similar_text_array | text[], text | boolean - pgroonga | pgroonga | similar_varchar | character varying, character varying | boolean - pgroonga | pgroonga | snippet_html | target text, keywords text[], width integer | text[] - pgroonga | pgroonga | table_name | indexname cstring | text - pgroonga | public | pgroonga_command | groongacommand text | text - pgroonga | public | pgroonga_command | groongacommand text, arguments text[] | text - pgroonga | public | pgroonga_command_escape_value | value text | text - pgroonga | public | pgroonga_condition | query text, weights integer[], scorers text[], schema_name text, index_name text, column_name text, fuzzy_max_distance_ratio real | pgroonga_condition - pgroonga | public | pgroonga_contain_varchar_array | character varying[], character varying | boolean - pgroonga | public | pgroonga_equal_query_text_array | targets text[], query text | boolean - pgroonga | public | pgroonga_equal_query_text_array_condition | targets text[], condition pgroonga_condition | boolean - pgroonga | public | pgroonga_equal_query_text_array_condition | targets text[], condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_equal_query_varchar_array | targets character varying[], query text | boolean - pgroonga | public | pgroonga_equal_query_varchar_array_condition | targets character varying[], condition pgroonga_condition | boolean - pgroonga | public | pgroonga_equal_query_varchar_array_condition | targets character varying[], condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_equal_text | target text, other text | boolean - pgroonga | public | pgroonga_equal_text_condition | target text, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_equal_text_condition | target text, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_equal_varchar | target character varying, other character varying | boolean - pgroonga | public | pgroonga_equal_varchar_condition | target character varying, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_equal_varchar_condition | target character varying, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_escape | value bigint | text - pgroonga | public | pgroonga_escape | value double precision | text - pgroonga | public | pgroonga_escape | value text, special_characters text | text - pgroonga | public | pgroonga_escape | value timestamp without time zone | text - pgroonga | public | pgroonga_escape | value smallint | text - pgroonga | public | pgroonga_escape | value text | text - pgroonga | public | pgroonga_escape | value timestamp with time zone | text - pgroonga | public | pgroonga_escape | value real | text - pgroonga | public | pgroonga_escape | value boolean | text - pgroonga | public | pgroonga_escape | value integer | text - pgroonga | public | pgroonga_flush | indexname cstring | boolean - pgroonga | public | pgroonga_handler | internal | index_am_handler - pgroonga | public | pgroonga_highlight_html | target text, keywords text[], indexname cstring | text - pgroonga | public | pgroonga_highlight_html | targets text[], keywords text[], indexname cstring | text[] - pgroonga | public | pgroonga_highlight_html | target text, keywords text[] | text - pgroonga | public | pgroonga_highlight_html | targets text[], keywords text[] | text[] - pgroonga | public | pgroonga_index_column_name | indexname cstring, columnindex integer | text - pgroonga | public | pgroonga_index_column_name | indexname cstring, columnname text | text - pgroonga | public | pgroonga_is_writable | | boolean - pgroonga | public | pgroonga_list_broken_indexes | | SETOF text - pgroonga | public | pgroonga_list_lagged_indexes | | SETOF text - pgroonga | public | pgroonga_match_in_text | text, text[] | boolean - pgroonga | public | pgroonga_match_in_text_array | text[], text[] | boolean - pgroonga | public | pgroonga_match_in_varchar | character varying, character varying[] | boolean - pgroonga | public | pgroonga_match_jsonb | jsonb, text | boolean - pgroonga | public | pgroonga_match_positions_byte | target text, keywords text[], indexname cstring | integer[] - pgroonga | public | pgroonga_match_positions_byte | target text, keywords text[] | integer[] - pgroonga | public | pgroonga_match_positions_character | target text, keywords text[], indexname cstring | integer[] - pgroonga | public | pgroonga_match_positions_character | target text, keywords text[] | integer[] - pgroonga | public | pgroonga_match_query | text, text | boolean - pgroonga | public | pgroonga_match_query | character varying, character varying | boolean - pgroonga | public | pgroonga_match_query | text[], text | boolean - pgroonga | public | pgroonga_match_regexp | text, text | boolean - pgroonga | public | pgroonga_match_regexp | character varying, character varying | boolean - pgroonga | public | pgroonga_match_script_jsonb | jsonb, text | boolean - pgroonga | public | pgroonga_match_term | target text, term text | boolean - pgroonga | public | pgroonga_match_term | target text[], term text | boolean - pgroonga | public | pgroonga_match_term | target character varying[], term character varying | boolean - pgroonga | public | pgroonga_match_term | target character varying, term character varying | boolean - pgroonga | public | pgroonga_match_text | text, text | boolean - pgroonga | public | pgroonga_match_text_array | text[], text | boolean - pgroonga | public | pgroonga_match_text_array_condition | target text[], condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_match_text_array_condition | target text[], condition pgroonga_condition | boolean - pgroonga | public | pgroonga_match_text_array_condition_with_scorers | target text[], condition pgroonga_full_text_search_condition_with_scorers | boolean - pgroonga | public | pgroonga_match_text_condition | target text, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_match_text_condition | target text, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_match_text_condition_with_scorers | target text, condition pgroonga_full_text_search_condition_with_scorers | boolean - pgroonga | public | pgroonga_match_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_match_varchar_condition | target character varying, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_match_varchar_condition | target character varying, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_match_varchar_condition_with_scorers | target character varying, condition pgroonga_full_text_search_condition_with_scorers | boolean - pgroonga | public | pgroonga_normalize | target text | text - pgroonga | public | pgroonga_normalize | target text, normalizername text | text - pgroonga | public | pgroonga_not_prefix_in_text | text, text[] | boolean - pgroonga | public | pgroonga_prefix_in_text | text, text[] | boolean - pgroonga | public | pgroonga_prefix_in_text_array | text[], text[] | boolean - pgroonga | public | pgroonga_prefix_in_varchar | character varying, character varying[] | boolean - pgroonga | public | pgroonga_prefix_in_varchar_array | character varying[], character varying[] | boolean - pgroonga | public | pgroonga_prefix_rk_in_text | text, text[] | boolean - pgroonga | public | pgroonga_prefix_rk_in_text_array | text[], text[] | boolean - pgroonga | public | pgroonga_prefix_rk_in_varchar | character varying, character varying[] | boolean - pgroonga | public | pgroonga_prefix_rk_in_varchar_array | character varying[], character varying[] | boolean - pgroonga | public | pgroonga_prefix_rk_text | text, text | boolean - pgroonga | public | pgroonga_prefix_rk_text_array | text[], text | boolean - pgroonga | public | pgroonga_prefix_rk_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_prefix_rk_varchar_array | character varying[], character varying | boolean - pgroonga | public | pgroonga_prefix_text | text, text | boolean - pgroonga | public | pgroonga_prefix_text_array | text[], text | boolean - pgroonga | public | pgroonga_prefix_text_array_condition | text[], pgroonga_condition | boolean - pgroonga | public | pgroonga_prefix_text_condition | text, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_prefix_text_condition | text, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_prefix_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_prefix_varchar_array | character varying[], character varying | boolean - pgroonga | public | pgroonga_prefix_varchar_array_condition | character varying[], pgroonga_condition | boolean - pgroonga | public | pgroonga_prefix_varchar_condition | target character varying, conditoin pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_prefix_varchar_condition | target character varying, conditoin pgroonga_condition | boolean - pgroonga | public | pgroonga_query_escape | query text | text - pgroonga | public | pgroonga_query_expand | tablename cstring, termcolumnname text, synonymscolumnname text, query text | text - pgroonga | public | pgroonga_query_extract_keywords | query text, index_name text | text[] - pgroonga | public | pgroonga_query_in_text | text, text[] | boolean - pgroonga | public | pgroonga_query_in_text_array | text[], text[] | boolean - pgroonga | public | pgroonga_query_in_varchar | character varying, character varying[] | boolean - pgroonga | public | pgroonga_query_jsonb | jsonb, text | boolean - pgroonga | public | pgroonga_query_text | text, text | boolean - pgroonga | public | pgroonga_query_text_array | text[], text | boolean - pgroonga | public | pgroonga_query_text_array_condition | targets text[], condition pgroonga_condition | boolean - pgroonga | public | pgroonga_query_text_array_condition | targets text[], condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_query_text_array_condition_with_scorers | targets text[], condition pgroonga_full_text_search_condition_with_scorers | boolean - pgroonga | public | pgroonga_query_text_condition | target text, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_query_text_condition | target text, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_query_text_condition_with_scorers | target text, condition pgroonga_full_text_search_condition_with_scorers | boolean - pgroonga | public | pgroonga_query_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_query_varchar_condition | target character varying, condition pgroonga_full_text_search_condition | boolean - pgroonga | public | pgroonga_query_varchar_condition | target character varying, condition pgroonga_condition | boolean - pgroonga | public | pgroonga_query_varchar_condition_with_scorers | target character varying, condition pgroonga_full_text_search_condition_with_scorers | boolean - pgroonga | public | pgroonga_regexp_in_text | text, text[] | boolean - pgroonga | public | pgroonga_regexp_in_varchar | character varying, character varying[] | boolean - pgroonga | public | pgroonga_regexp_text | text, text | boolean - pgroonga | public | pgroonga_regexp_text_array | targets text[], pattern text | boolean - pgroonga | public | pgroonga_regexp_text_array_condition | targets text[], pattern pgroonga_condition | boolean - pgroonga | public | pgroonga_regexp_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_result_to_jsonb_objects | result jsonb | jsonb - pgroonga | public | pgroonga_result_to_recordset | result jsonb | SETOF record - pgroonga | public | pgroonga_score | "row" record | double precision - pgroonga | public | pgroonga_score | tableoid oid, ctid tid | double precision - pgroonga | public | pgroonga_script_jsonb | jsonb, text | boolean - pgroonga | public | pgroonga_script_text | text, text | boolean - pgroonga | public | pgroonga_script_text_array | text[], text | boolean - pgroonga | public | pgroonga_script_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_set_writable | newwritable boolean | boolean - pgroonga | public | pgroonga_similar_text | text, text | boolean - pgroonga | public | pgroonga_similar_text_array | text[], text | boolean - pgroonga | public | pgroonga_similar_varchar | character varying, character varying | boolean - pgroonga | public | pgroonga_snippet_html | target text, keywords text[], width integer | text[] - pgroonga | public | pgroonga_table_name | indexname cstring | text - pgroonga | public | pgroonga_tokenize | target text, VARIADIC options text[] | json[] - pgroonga | public | pgroonga_vacuum | | boolean - pgroonga | public | pgroonga_wal_apply | indexname cstring | bigint - pgroonga | public | pgroonga_wal_apply | | bigint - pgroonga | public | pgroonga_wal_set_applied_position | block bigint, "offset" bigint | boolean - pgroonga | public | pgroonga_wal_set_applied_position | indexname cstring, block bigint, "offset" bigint | boolean - pgroonga | public | pgroonga_wal_set_applied_position | indexname cstring | boolean - pgroonga | public | pgroonga_wal_set_applied_position | | boolean - pgroonga | public | pgroonga_wal_status | | TABLE(name text, oid oid, current_block bigint, current_offset bigint, current_size bigint, last_block bigint, last_offset bigint, last_size bigint) - pgroonga | public | pgroonga_wal_truncate | indexname cstring | bigint - pgroonga | public | pgroonga_wal_truncate | | bigint - pgroonga_database | public | pgroonga_database_remove | | boolean - pgrouting | public | _pgr_alphashape | text, alpha double precision, OUT seq1 bigint, OUT textgeom text | SETOF record - pgrouting | public | _pgr_array_reverse | anyarray | anyarray - pgrouting | public | _pgr_articulationpoints | edges_sql text, OUT seq integer, OUT node bigint | SETOF record - pgrouting | public | _pgr_astar | edges_sql text, start_vids anyarray, end_vids anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, only_cost boolean, normal boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_astar | edges_sql text, combinations_sql text, directed boolean, heuristic integer, factor double precision, epsilon double precision, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bdastar | text, text, directed boolean, heuristic integer, factor double precision, epsilon double precision, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bdastar | text, anyarray, anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bddijkstra | text, anyarray, anyarray, directed boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bddijkstra | text, text, directed boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bellmanford | edges_sql text, from_vids anyarray, to_vids anyarray, directed boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bellmanford | edges_sql text, combinations_sql text, directed boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_biconnectedcomponents | edges_sql text, OUT seq bigint, OUT component bigint, OUT edge bigint | SETOF record - pgrouting | public | _pgr_binarybreadthfirstsearch | edges_sql text, combinations_sql text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_binarybreadthfirstsearch | edges_sql text, from_vids anyarray, to_vids anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bipartite | edges_sql text, OUT node bigint, OUT color bigint | SETOF record - pgrouting | public | _pgr_boost_version | | text - pgrouting | public | _pgr_breadthfirstsearch | edges_sql text, from_vids anyarray, max_depth bigint, directed boolean, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_bridges | edges_sql text, OUT seq integer, OUT edge bigint | SETOF record - pgrouting | public | _pgr_build_type | | text - pgrouting | public | _pgr_checkcolumn | text, text, text, is_optional boolean, dryrun boolean | boolean - pgrouting | public | _pgr_checkquery | text | text - pgrouting | public | _pgr_checkverttab | vertname text, columnsarr text[], reporterrs integer, fnname text, OUT sname text, OUT vname text | record - pgrouting | public | _pgr_chinesepostman | edges_sql text, only_cost boolean, OUT seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_compilation_date | | text - pgrouting | public | _pgr_compiler_version | | text - pgrouting | public | _pgr_connectedcomponents | edges_sql text, OUT seq bigint, OUT component bigint, OUT node bigint | SETOF record - pgrouting | public | _pgr_contraction | edges_sql text, contraction_order bigint[], max_cycles integer, forbidden_vertices bigint[], directed boolean, OUT type text, OUT id bigint, OUT contracted_vertices bigint[], OUT source bigint, OUT target bigint, OUT cost double precision | SETOF record - pgrouting | public | _pgr_createindex | tabname text, colname text, indext text, reporterrs integer, fnname text | void - pgrouting | public | _pgr_createindex | sname text, tname text, colname text, indext text, reporterrs integer, fnname text | void - pgrouting | public | _pgr_cuthillmckeeordering | text, OUT seq bigint, OUT node bigint | SETOF record - pgrouting | public | _pgr_dagshortestpath | text, anyarray, anyarray, directed boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dagshortestpath | text, text, directed boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_depthfirstsearch | edges_sql text, root_vids anyarray, directed boolean, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstra | edges_sql text, combinations_sql text, directed boolean, only_cost boolean, normal boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstra | edges_sql text, start_vids anyarray, end_vids anyarray, directed boolean, only_cost boolean, normal boolean, n_goals bigint, global boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstra | edges_sql text, combinations_sql text, directed boolean, only_cost boolean, n_goals bigint, global boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstra | edges_sql text, start_vids anyarray, end_vids anyarray, directed boolean, only_cost boolean, normal boolean, n_goals bigint, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstranear | text, anyarray, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstranear | text, anyarray, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstranear | text, bigint, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_dijkstravia | edges_sql text, via_vids anyarray, directed boolean, strict boolean, u_turn_on_edge boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | _pgr_drivingdistance | edges_sql text, start_vids anyarray, distance double precision, directed boolean, equicost boolean, OUT seq integer, OUT from_v bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_edgecoloring | edges_sql text, OUT edge_id bigint, OUT color_id bigint | SETOF record - pgrouting | public | _pgr_edgedisjointpaths | text, text, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_edgedisjointpaths | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_edwardmoore | edges_sql text, combinations_sql text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_edwardmoore | edges_sql text, from_vids anyarray, to_vids anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_endpoint | g geometry | geometry - pgrouting | public | _pgr_floydwarshall | edges_sql text, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_get_statement | o_sql text | text - pgrouting | public | _pgr_getcolumnname | tab text, col text, reporterrs integer, fnname text | text - pgrouting | public | _pgr_getcolumnname | sname text, tname text, col text, reporterrs integer, fnname text | text - pgrouting | public | _pgr_getcolumntype | tab text, col text, reporterrs integer, fnname text | text - pgrouting | public | _pgr_getcolumntype | sname text, tname text, cname text, reporterrs integer, fnname text | text - pgrouting | public | _pgr_gettablename | tab text, reporterrs integer, fnname text, OUT sname text, OUT tname text | record - pgrouting | public | _pgr_git_hash | | text - pgrouting | public | _pgr_hawickcircuits | text, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_iscolumnindexed | tab text, col text, reporterrs integer, fnname text | boolean - pgrouting | public | _pgr_iscolumnindexed | sname text, tname text, cname text, reporterrs integer, fnname text | boolean - pgrouting | public | _pgr_iscolumnintable | tab text, col text | boolean - pgrouting | public | _pgr_isplanar | text | boolean - pgrouting | public | _pgr_johnson | edges_sql text, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_kruskal | text, anyarray, fn_suffix text, max_depth bigint, distance double precision, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_ksp | edges_sql text, start_vid bigint, end_vid bigint, k integer, directed boolean, heap_paths boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_lengauertarjandominatortree | edges_sql text, root_vid bigint, OUT seq integer, OUT vid bigint, OUT idom bigint | SETOF record - pgrouting | public | _pgr_lib_version | | text - pgrouting | public | _pgr_linegraph | text, directed boolean, OUT seq integer, OUT source bigint, OUT target bigint, OUT cost double precision, OUT reverse_cost double precision | SETOF record - pgrouting | public | _pgr_linegraphfull | text, OUT seq integer, OUT source bigint, OUT target bigint, OUT cost double precision, OUT edge bigint | SETOF record - pgrouting | public | _pgr_makeconnected | text, OUT seq bigint, OUT start_vid bigint, OUT end_vid bigint | SETOF record - pgrouting | public | _pgr_maxcardinalitymatch | edges_sql text, directed boolean, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint | SETOF record - pgrouting | public | _pgr_maxflow | edges_sql text, combinations_sql text, algorithm integer, only_flow boolean, OUT seq integer, OUT edge_id bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | _pgr_maxflow | edges_sql text, sources anyarray, targets anyarray, algorithm integer, only_flow boolean, OUT seq integer, OUT edge_id bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | _pgr_maxflowmincost | edges_sql text, sources anyarray, targets anyarray, only_cost boolean, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_maxflowmincost | edges_sql text, combinations_sql text, only_cost boolean, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_msg | msgkind integer, fnname text, msg text | void - pgrouting | public | _pgr_onerror | errcond boolean, reporterrs integer, fnname text, msgerr text, hinto text, msgok text | void - pgrouting | public | _pgr_operating_system | | text - pgrouting | public | _pgr_parameter_check | fn text, sql text, big boolean | boolean - pgrouting | public | _pgr_pgsql_version | | text - pgrouting | public | _pgr_pickdeliver | text, text, text, factor double precision, max_cycles integer, initial_sol integer, OUT seq integer, OUT vehicle_seq integer, OUT vehicle_id bigint, OUT stop_seq integer, OUT stop_type integer, OUT stop_id bigint, OUT order_id bigint, OUT cargo double precision, OUT travel_time double precision, OUT arrival_time double precision, OUT wait_time double precision, OUT service_time double precision, OUT departure_time double precision | SETOF record - pgrouting | public | _pgr_pickdelivereuclidean | text, text, factor double precision, max_cycles integer, initial_sol integer, OUT seq integer, OUT vehicle_seq integer, OUT vehicle_id bigint, OUT stop_seq integer, OUT stop_type integer, OUT order_id bigint, OUT cargo double precision, OUT travel_time double precision, OUT arrival_time double precision, OUT wait_time double precision, OUT service_time double precision, OUT departure_time double precision | SETOF record - pgrouting | public | _pgr_pointtoid | point geometry, tolerance double precision, vertname text, srid integer | bigint - pgrouting | public | _pgr_prim | text, anyarray, order_by text, max_depth bigint, distance double precision, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_quote_ident | idname text | text - pgrouting | public | _pgr_sequentialvertexcoloring | edges_sql text, OUT vertex_id bigint, OUT color_id bigint | SETOF record - pgrouting | public | _pgr_startpoint | g geometry | geometry - pgrouting | public | _pgr_stoerwagner | edges_sql text, OUT seq integer, OUT edge bigint, OUT cost double precision, OUT mincut double precision | SETOF record - pgrouting | public | _pgr_strongcomponents | edges_sql text, OUT seq bigint, OUT component bigint, OUT node bigint | SETOF record - pgrouting | public | _pgr_topologicalsort | edges_sql text, OUT seq integer, OUT sorted_v bigint | SETOF record - pgrouting | public | _pgr_transitiveclosure | edges_sql text, OUT seq integer, OUT vid bigint, OUT target_array bigint[] | SETOF record - pgrouting | public | _pgr_trsp | sql text, source_eid integer, source_pos double precision, target_eid integer, target_pos double precision, directed boolean, has_reverse_cost boolean, turn_restrict_sql text, OUT seq integer, OUT id1 integer, OUT id2 integer, OUT cost double precision | SETOF record - pgrouting | public | _pgr_trsp | text, text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_trsp | text, text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_trsp | text, text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_trsp | text, text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_trsp_withpoints | text, text, text, text, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT departure bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_trsp_withpoints | text, text, text, anyarray, anyarray, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT departure bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_trspvia | text, text, anyarray, boolean, boolean, boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | _pgr_trspvia_withpoints | text, text, text, anyarray, boolean, boolean, boolean, character, boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | _pgr_trspviavertices | sql text, vids integer[], directed boolean, has_rcost boolean, turn_restrict_sql text, OUT seq integer, OUT id1 integer, OUT id2 integer, OUT id3 integer, OUT cost double precision | SETOF record - pgrouting | public | _pgr_tsp | matrix_row_sql text, start_id bigint, end_id bigint, max_processing_time double precision, tries_per_temperature integer, max_changes_per_temperature integer, max_consecutive_non_changes integer, initial_temperature double precision, final_temperature double precision, cooling_factor double precision, randomize boolean, OUT seq integer, OUT node bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_tspeuclidean | coordinates_sql text, start_id bigint, end_id bigint, max_processing_time double precision, tries_per_temperature integer, max_changes_per_temperature integer, max_consecutive_non_changes integer, initial_temperature double precision, final_temperature double precision, cooling_factor double precision, randomize boolean, OUT seq integer, OUT node bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_turnrestrictedpath | text, text, bigint, bigint, integer, directed boolean, heap_paths boolean, stop_on_first boolean, strict boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_versionless | v1 text, v2 text | boolean - pgrouting | public | _pgr_vrponedepot | text, text, text, integer, OUT seq integer, OUT vehicle_seq integer, OUT vehicle_id bigint, OUT stop_seq integer, OUT stop_type integer, OUT stop_id bigint, OUT order_id bigint, OUT cargo double precision, OUT travel_time double precision, OUT arrival_time double precision, OUT wait_time double precision, OUT service_time double precision, OUT departure_time double precision | SETOF record - pgrouting | public | _pgr_withpoints | edges_sql text, points_sql text, combinations_sql text, directed boolean, driving_side character, details boolean, only_cost boolean, OUT seq integer, OUT path_seq integer, OUT start_pid bigint, OUT end_pid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_withpoints | edges_sql text, points_sql text, start_pids anyarray, end_pids anyarray, directed boolean, driving_side character, details boolean, only_cost boolean, normal boolean, OUT seq integer, OUT path_seq integer, OUT start_pid bigint, OUT end_pid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_withpointsdd | edges_sql text, points_sql text, start_pid anyarray, distance double precision, directed boolean, driving_side character, details boolean, equicost boolean, OUT seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_withpointsksp | edges_sql text, points_sql text, start_pid bigint, end_pid bigint, k integer, directed boolean, heap_paths boolean, driving_side character, details boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _pgr_withpointsvia | sql text, via_edges bigint[], fraction double precision[], directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | _pgr_withpointsvia | text, text, anyarray, boolean, boolean, boolean, character, boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | _trsp | text, text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _v4trsp | text, text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | _v4trsp | text, text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_alphashape | geometry, alpha double precision | geometry - pgrouting | public | pgr_analyzegraph | text, double precision, the_geom text, id text, source text, target text, rows_where text | character varying - pgrouting | public | pgr_analyzeoneway | text, text[], text[], text[], text[], two_way_if_null boolean, oneway text, source text, target text | text - pgrouting | public | pgr_articulationpoints | text, OUT node bigint | SETOF bigint - pgrouting | public | pgr_astar | text, anyarray, bigint, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astar | text, bigint, bigint, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astar | text, bigint, anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astar | text, anyarray, anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astar | text, text, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astarcost | text, anyarray, anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astarcost | text, bigint, anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astarcost | text, text, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astarcost | text, anyarray, bigint, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astarcost | text, bigint, bigint, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_astarcostmatrix | text, anyarray, directed boolean, heuristic integer, factor double precision, epsilon double precision, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastar | text, bigint, anyarray, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastar | text, anyarray, bigint, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastar | text, anyarray, anyarray, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastar | text, bigint, bigint, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastar | text, text, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastarcost | text, anyarray, anyarray, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastarcost | text, bigint, bigint, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastarcost | text, anyarray, bigint, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastarcost | text, bigint, anyarray, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastarcost | text, text, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bdastarcostmatrix | text, anyarray, directed boolean, heuristic integer, factor numeric, epsilon numeric, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstra | text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstra | text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstra | text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstra | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstra | text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstracost | text, text, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstracost | text, bigint, bigint, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstracost | text, anyarray, bigint, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstracost | text, anyarray, anyarray, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstracost | text, bigint, anyarray, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bddijkstracostmatrix | text, anyarray, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bellmanford | text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bellmanford | text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bellmanford | text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bellmanford | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bellmanford | text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_biconnectedcomponents | text, OUT seq bigint, OUT component bigint, OUT edge bigint | SETOF record - pgrouting | public | pgr_binarybreadthfirstsearch | text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_binarybreadthfirstsearch | text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_binarybreadthfirstsearch | text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_binarybreadthfirstsearch | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_binarybreadthfirstsearch | text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bipartite | text, OUT vertex_id bigint, OUT color_id bigint | SETOF record - pgrouting | public | pgr_boykovkolmogorov | text, anyarray, anyarray, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_boykovkolmogorov | text, text, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_boykovkolmogorov | text, bigint, anyarray, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_boykovkolmogorov | text, bigint, bigint, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_boykovkolmogorov | text, anyarray, bigint, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_breadthfirstsearch | text, anyarray, max_depth bigint, directed boolean, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_breadthfirstsearch | text, bigint, max_depth bigint, directed boolean, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_bridges | text, OUT edge bigint | SETOF bigint - pgrouting | public | pgr_chinesepostman | text, OUT seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_chinesepostmancost | text | double precision - pgrouting | public | pgr_connectedcomponents | text, OUT seq bigint, OUT component bigint, OUT node bigint | SETOF record - pgrouting | public | pgr_contraction | text, bigint[], max_cycles integer, forbidden_vertices bigint[], directed boolean, OUT type text, OUT id bigint, OUT contracted_vertices bigint[], OUT source bigint, OUT target bigint, OUT cost double precision | SETOF record - pgrouting | public | pgr_createtopology | text, double precision, the_geom text, id text, source text, target text, rows_where text, clean boolean | character varying - pgrouting | public | pgr_createverticestable | text, the_geom text, source text, target text, rows_where text | text - pgrouting | public | pgr_cuthillmckeeordering | text, OUT seq bigint, OUT node bigint | SETOF record - pgrouting | public | pgr_dagshortestpath | text, anyarray, anyarray, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dagshortestpath | text, bigint, bigint, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dagshortestpath | text, anyarray, bigint, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dagshortestpath | text, text, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dagshortestpath | text, bigint, anyarray, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_degree | text, text, dryrun boolean, OUT node bigint, OUT degree bigint | SETOF record - pgrouting | public | pgr_depthfirstsearch | text, bigint, directed boolean, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_depthfirstsearch | text, anyarray, directed boolean, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstra | text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstra | text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstra | text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstra | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstra | text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstracost | text, text, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstracost | text, bigint, bigint, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstracost | text, anyarray, bigint, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstracost | text, anyarray, anyarray, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstracost | text, bigint, anyarray, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstracostmatrix | text, anyarray, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranear | text, bigint, anyarray, directed boolean, cap bigint, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranear | text, anyarray, bigint, directed boolean, cap bigint, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranear | text, anyarray, anyarray, directed boolean, cap bigint, global boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranear | text, text, directed boolean, cap bigint, global boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranearcost | text, text, directed boolean, cap bigint, global boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranearcost | text, anyarray, anyarray, directed boolean, cap bigint, global boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranearcost | text, bigint, anyarray, directed boolean, cap bigint, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstranearcost | text, anyarray, bigint, directed boolean, cap bigint, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_dijkstravia | text, anyarray, directed boolean, strict boolean, u_turn_on_edge boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | pgr_drivingdistance | text, bigint, double precision, directed boolean, OUT seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_drivingdistance | text, anyarray, double precision, directed boolean, equicost boolean, OUT seq integer, OUT from_v bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edgecoloring | text, OUT edge_id bigint, OUT color_id bigint | SETOF record - pgrouting | public | pgr_edgedisjointpaths | text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edgedisjointpaths | text, text, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edgedisjointpaths | text, bigint, bigint, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edgedisjointpaths | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edgedisjointpaths | text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edmondskarp | text, anyarray, anyarray, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_edmondskarp | text, text, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_edmondskarp | text, bigint, anyarray, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_edmondskarp | text, bigint, bigint, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_edmondskarp | text, anyarray, bigint, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_edwardmoore | text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edwardmoore | text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edwardmoore | text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edwardmoore | text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_edwardmoore | text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_extractvertices | text, dryrun boolean, OUT id bigint, OUT in_edges bigint[], OUT out_edges bigint[], OUT x double precision, OUT y double precision, OUT geom geometry | SETOF record - pgrouting | public | pgr_findcloseedges | text, geometry[], double precision, cap integer, partial boolean, dryrun boolean, OUT edge_id bigint, OUT fraction double precision, OUT side character, OUT distance double precision, OUT geom geometry, OUT edge geometry | SETOF record - pgrouting | public | pgr_findcloseedges | text, geometry, double precision, cap integer, partial boolean, dryrun boolean, OUT edge_id bigint, OUT fraction double precision, OUT side character, OUT distance double precision, OUT geom geometry, OUT edge geometry | SETOF record - pgrouting | public | pgr_floydwarshall | text, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_full_version | OUT version text, OUT build_type text, OUT compile_date text, OUT library text, OUT system text, OUT postgresql text, OUT compiler text, OUT boost text, OUT hash text | record - pgrouting | public | pgr_hawickcircuits | text, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_isplanar | text | boolean - pgrouting | public | pgr_johnson | text, directed boolean, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskal | text, OUT edge bigint, OUT cost double precision | SETOF record - pgrouting | public | pgr_kruskalbfs | text, anyarray, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskalbfs | text, bigint, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskaldd | text, bigint, double precision, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskaldd | text, bigint, numeric, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskaldd | text, anyarray, double precision, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskaldd | text, anyarray, numeric, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskaldfs | text, anyarray, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_kruskaldfs | text, bigint, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_ksp | text, bigint, bigint, integer, directed boolean, heap_paths boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_lengauertarjandominatortree | text, bigint, OUT seq integer, OUT vertex_id bigint, OUT idom bigint | SETOF record - pgrouting | public | pgr_linegraph | text, directed boolean, OUT seq integer, OUT source bigint, OUT target bigint, OUT cost double precision, OUT reverse_cost double precision | SETOF record - pgrouting | public | pgr_linegraphfull | text, OUT seq integer, OUT source bigint, OUT target bigint, OUT cost double precision, OUT edge bigint | SETOF record - pgrouting | public | pgr_makeconnected | text, OUT seq bigint, OUT start_vid bigint, OUT end_vid bigint | SETOF record - pgrouting | public | pgr_maxcardinalitymatch | text, directed boolean, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint | SETOF record - pgrouting | public | pgr_maxcardinalitymatch | text, OUT edge bigint | SETOF bigint - pgrouting | public | pgr_maxflow | text, anyarray, anyarray | bigint - pgrouting | public | pgr_maxflow | text, text | bigint - pgrouting | public | pgr_maxflow | text, bigint, anyarray | bigint - pgrouting | public | pgr_maxflow | text, anyarray, bigint | bigint - pgrouting | public | pgr_maxflow | text, bigint, bigint | bigint - pgrouting | public | pgr_maxflowmincost | text, text, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_maxflowmincost | text, bigint, anyarray, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_maxflowmincost | text, anyarray, bigint, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_maxflowmincost | text, anyarray, anyarray, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_maxflowmincost | text, bigint, bigint, OUT seq integer, OUT edge bigint, OUT source bigint, OUT target bigint, OUT flow bigint, OUT residual_capacity bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_maxflowmincost_cost | text, anyarray, anyarray | double precision - pgrouting | public | pgr_maxflowmincost_cost | text, text | double precision - pgrouting | public | pgr_maxflowmincost_cost | text, bigint, anyarray | double precision - pgrouting | public | pgr_maxflowmincost_cost | text, anyarray, bigint | double precision - pgrouting | public | pgr_maxflowmincost_cost | text, bigint, bigint | double precision - pgrouting | public | pgr_nodenetwork | text, double precision, id text, the_geom text, table_ending text, rows_where text, outall boolean | text - pgrouting | public | pgr_pickdeliver | text, text, text, factor double precision, max_cycles integer, initial_sol integer, OUT seq integer, OUT vehicle_seq integer, OUT vehicle_id bigint, OUT stop_seq integer, OUT stop_type integer, OUT stop_id bigint, OUT order_id bigint, OUT cargo double precision, OUT travel_time double precision, OUT arrival_time double precision, OUT wait_time double precision, OUT service_time double precision, OUT departure_time double precision | SETOF record - pgrouting | public | pgr_pickdelivereuclidean | text, text, factor double precision, max_cycles integer, initial_sol integer, OUT seq integer, OUT vehicle_seq integer, OUT vehicle_id bigint, OUT stop_seq integer, OUT stop_type integer, OUT order_id bigint, OUT cargo double precision, OUT travel_time double precision, OUT arrival_time double precision, OUT wait_time double precision, OUT service_time double precision, OUT departure_time double precision | SETOF record - pgrouting | public | pgr_prim | text, OUT edge bigint, OUT cost double precision | SETOF record - pgrouting | public | pgr_primbfs | text, anyarray, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primbfs | text, bigint, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primdd | text, bigint, double precision, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primdd | text, bigint, numeric, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primdd | text, anyarray, double precision, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primdd | text, anyarray, numeric, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primdfs | text, anyarray, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_primdfs | text, bigint, max_depth bigint, OUT seq bigint, OUT depth bigint, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_pushrelabel | text, anyarray, anyarray, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_pushrelabel | text, text, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_pushrelabel | text, bigint, anyarray, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_pushrelabel | text, bigint, bigint, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_pushrelabel | text, anyarray, bigint, OUT seq integer, OUT edge bigint, OUT start_vid bigint, OUT end_vid bigint, OUT flow bigint, OUT residual_capacity bigint | SETOF record - pgrouting | public | pgr_sequentialvertexcoloring | text, OUT vertex_id bigint, OUT color_id bigint | SETOF record - pgrouting | public | pgr_stoerwagner | text, OUT seq integer, OUT edge bigint, OUT cost double precision, OUT mincut double precision | SETOF record - pgrouting | public | pgr_strongcomponents | text, OUT seq bigint, OUT component bigint, OUT node bigint | SETOF record - pgrouting | public | pgr_topologicalsort | text, OUT seq integer, OUT sorted_v bigint | SETOF record - pgrouting | public | pgr_transitiveclosure | text, OUT seq integer, OUT vid bigint, OUT target_array bigint[] | SETOF record - pgrouting | public | pgr_trsp | text, text, text, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp | text, text, bigint, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp | text, text, anyarray, anyarray, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp | text, text, bigint, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp | text, integer, double precision, integer, double precision, boolean, boolean, turn_restrict_sql text, OUT seq integer, OUT id1 integer, OUT id2 integer, OUT cost double precision | SETOF record - pgrouting | public | pgr_trsp | text, integer, integer, boolean, boolean, restrictions_sql text, OUT seq integer, OUT id1 integer, OUT id2 integer, OUT cost double precision | SETOF record - pgrouting | public | pgr_trsp | text, text, anyarray, bigint, directed boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp_withpoints | text, text, text, anyarray, bigint, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp_withpoints | text, text, text, bigint, anyarray, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp_withpoints | text, text, text, anyarray, anyarray, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp_withpoints | text, text, text, bigint, bigint, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trsp_withpoints | text, text, text, text, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_trspvia | text, text, anyarray, directed boolean, strict boolean, u_turn_on_edge boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | pgr_trspvia_withpoints | text, text, text, anyarray, directed boolean, strict boolean, u_turn_on_edge boolean, driving_side character, details boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrouting | public | pgr_trspviaedges | text, integer[], double precision[], boolean, boolean, turn_restrict_sql text, OUT seq integer, OUT id1 integer, OUT id2 integer, OUT id3 integer, OUT cost double precision | SETOF record - pgrouting | public | pgr_trspviavertices | text, anyarray, boolean, boolean, restrictions_sql text, OUT seq integer, OUT id1 integer, OUT id2 integer, OUT id3 integer, OUT cost double precision | SETOF record - pgrouting | public | pgr_tsp | text, start_id bigint, end_id bigint, max_processing_time double precision, tries_per_temperature integer, max_changes_per_temperature integer, max_consecutive_non_changes integer, initial_temperature double precision, final_temperature double precision, cooling_factor double precision, randomize boolean, OUT seq integer, OUT node bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_tspeuclidean | text, start_id bigint, end_id bigint, max_processing_time double precision, tries_per_temperature integer, max_changes_per_temperature integer, max_consecutive_non_changes integer, initial_temperature double precision, final_temperature double precision, cooling_factor double precision, randomize boolean, OUT seq integer, OUT node bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_turnrestrictedpath | text, text, bigint, bigint, integer, directed boolean, heap_paths boolean, stop_on_first boolean, strict boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_version | | text - pgrouting | public | pgr_vrponedepot | text, text, text, integer, OUT oid integer, OUT opos integer, OUT vid integer, OUT tarrival integer, OUT tdepart integer | SETOF record - pgrouting | public | pgr_withpoints | text, text, anyarray, bigint, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_pid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpoints | text, text, bigint, anyarray, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT end_pid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpoints | text, text, text, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_pid bigint, OUT end_pid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpoints | text, text, bigint, bigint, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpoints | text, text, anyarray, anyarray, directed boolean, driving_side character, details boolean, OUT seq integer, OUT path_seq integer, OUT start_pid bigint, OUT end_pid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointscost | text, text, text, directed boolean, driving_side character, OUT start_pid bigint, OUT end_pid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointscost | text, text, bigint, bigint, directed boolean, driving_side character, OUT start_pid bigint, OUT end_pid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointscost | text, text, anyarray, anyarray, directed boolean, driving_side character, OUT start_pid bigint, OUT end_pid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointscost | text, text, anyarray, bigint, directed boolean, driving_side character, OUT start_pid bigint, OUT end_pid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointscost | text, text, bigint, anyarray, directed boolean, driving_side character, OUT start_pid bigint, OUT end_pid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointscostmatrix | text, text, anyarray, directed boolean, driving_side character, OUT start_vid bigint, OUT end_vid bigint, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointsdd | text, text, bigint, double precision, directed boolean, driving_side character, details boolean, OUT seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointsdd | text, text, anyarray, double precision, directed boolean, driving_side character, details boolean, equicost boolean, OUT seq integer, OUT start_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointsksp | text, text, bigint, bigint, integer, directed boolean, heap_paths boolean, driving_side character, details boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision | SETOF record - pgrouting | public | pgr_withpointsvia | text, text, anyarray, directed boolean, strict boolean, u_turn_on_edge boolean, driving_side character, details boolean, OUT seq integer, OUT path_id integer, OUT path_seq integer, OUT start_vid bigint, OUT end_vid bigint, OUT node bigint, OUT edge bigint, OUT cost double precision, OUT agg_cost double precision, OUT route_agg_cost double precision | SETOF record - pgrowlocks | public | pgrowlocks | relname text, OUT locked_row tid, OUT locker xid, OUT multi boolean, OUT xids xid[], OUT modes text[], OUT pids integer[] | SETOF record - pgsodium | pgsodium | create_key | key_type pgsodium.key_type, name text, raw_key bytea, raw_key_nonce bytea, parent_key uuid, key_context bytea, expires timestamp with time zone, associated_data text | pgsodium.valid_key - pgsodium | pgsodium | create_mask_view | relid oid, debug boolean | void - pgsodium | pgsodium | create_mask_view | relid oid, subid integer, debug boolean | void - pgsodium | pgsodium | crypto_aead_det_decrypt | message bytea, additional bytea, key_uuid uuid, nonce bytea | bytea - pgsodium | pgsodium | crypto_aead_det_decrypt | message bytea, additional bytea, key_id bigint, context bytea, nonce bytea | bytea - pgsodium | pgsodium | crypto_aead_det_decrypt | message bytea, additional bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_aead_det_decrypt | ciphertext bytea, additional bytea, key bytea, nonce bytea | bytea - pgsodium | pgsodium | crypto_aead_det_encrypt | message bytea, additional bytea, key_uuid uuid, nonce bytea | bytea - pgsodium | pgsodium | crypto_aead_det_encrypt | message bytea, additional bytea, key_id bigint, context bytea, nonce bytea | bytea - pgsodium | pgsodium | crypto_aead_det_encrypt | message bytea, additional bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_aead_det_encrypt | message bytea, additional bytea, key bytea, nonce bytea | bytea - pgsodium | pgsodium | crypto_aead_det_keygen | | bytea - pgsodium | pgsodium | crypto_aead_det_noncegen | | bytea - pgsodium | pgsodium | crypto_aead_ietf_decrypt | message bytea, additional bytea, nonce bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_aead_ietf_decrypt | message bytea, additional bytea, nonce bytea, key bytea | bytea - pgsodium | pgsodium | crypto_aead_ietf_decrypt | message bytea, additional bytea, nonce bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_aead_ietf_encrypt | message bytea, additional bytea, nonce bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_aead_ietf_encrypt | message bytea, additional bytea, nonce bytea, key bytea | bytea - pgsodium | pgsodium | crypto_aead_ietf_encrypt | message bytea, additional bytea, nonce bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_aead_ietf_keygen | | bytea - pgsodium | pgsodium | crypto_aead_ietf_noncegen | | bytea - pgsodium | pgsodium | crypto_auth | message bytea, key bytea | bytea - pgsodium | pgsodium | crypto_auth | message bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_auth | message bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_auth_hmacsha256 | message bytea, secret bytea | bytea - pgsodium | pgsodium | crypto_auth_hmacsha256 | message bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_auth_hmacsha256 | message bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_auth_hmacsha256_keygen | | bytea - pgsodium | pgsodium | crypto_auth_hmacsha256_verify | hash bytea, message bytea, key_id bigint, context bytea | boolean - pgsodium | pgsodium | crypto_auth_hmacsha256_verify | signature bytea, message bytea, key_uuid uuid | boolean - pgsodium | pgsodium | crypto_auth_hmacsha256_verify | hash bytea, message bytea, secret bytea | boolean - pgsodium | pgsodium | crypto_auth_hmacsha512 | message bytea, secret bytea | bytea - pgsodium | pgsodium | crypto_auth_hmacsha512 | message bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_auth_hmacsha512 | message bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_auth_hmacsha512_keygen | | bytea - pgsodium | pgsodium | crypto_auth_hmacsha512_verify | hash bytea, message bytea, key_id bigint, context bytea | boolean - pgsodium | pgsodium | crypto_auth_hmacsha512_verify | signature bytea, message bytea, key_uuid uuid | boolean - pgsodium | pgsodium | crypto_auth_hmacsha512_verify | hash bytea, message bytea, secret bytea | boolean - pgsodium | pgsodium | crypto_auth_keygen | | bytea - pgsodium | pgsodium | crypto_auth_verify | mac bytea, message bytea, key_uuid uuid | boolean - pgsodium | pgsodium | crypto_auth_verify | mac bytea, message bytea, key bytea | boolean - pgsodium | pgsodium | crypto_auth_verify | mac bytea, message bytea, key_id bigint, context bytea | boolean - pgsodium | pgsodium | crypto_box | message bytea, nonce bytea, public bytea, secret bytea | bytea - pgsodium | pgsodium | crypto_box_new_keypair | | pgsodium.crypto_box_keypair - pgsodium | pgsodium | crypto_box_new_seed | | bytea - pgsodium | pgsodium | crypto_box_noncegen | | bytea - pgsodium | pgsodium | crypto_box_open | ciphertext bytea, nonce bytea, public bytea, secret bytea | bytea - pgsodium | pgsodium | crypto_box_seal | message bytea, public_key bytea | bytea - pgsodium | pgsodium | crypto_box_seal_open | ciphertext bytea, public_key bytea, secret_key bytea | bytea - pgsodium | pgsodium | crypto_box_seed_new_keypair | seed bytea | pgsodium.crypto_box_keypair - pgsodium | pgsodium | crypto_cmp | text, text | boolean - pgsodium | pgsodium | crypto_generichash | message bytea, key bigint, context bytea | bytea - pgsodium | pgsodium | crypto_generichash | message bytea, key bytea | bytea - pgsodium | pgsodium | crypto_generichash | message bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_generichash_keygen | | bytea - pgsodium | pgsodium | crypto_hash_sha256 | message bytea | bytea - pgsodium | pgsodium | crypto_hash_sha512 | message bytea | bytea - pgsodium | pgsodium | crypto_kdf_derive_from_key | subkey_size integer, subkey_id bigint, context bytea, primary_key uuid | bytea - pgsodium | pgsodium | crypto_kdf_derive_from_key | subkey_size bigint, subkey_id bigint, context bytea, primary_key bytea | bytea - pgsodium | pgsodium | crypto_kdf_keygen | | bytea - pgsodium | pgsodium | crypto_kx_client_session_keys | client_pk bytea, client_sk bytea, server_pk bytea | pgsodium.crypto_kx_session - pgsodium | pgsodium | crypto_kx_new_keypair | | pgsodium.crypto_kx_keypair - pgsodium | pgsodium | crypto_kx_new_seed | | bytea - pgsodium | pgsodium | crypto_kx_seed_new_keypair | seed bytea | pgsodium.crypto_kx_keypair - pgsodium | pgsodium | crypto_kx_server_session_keys | server_pk bytea, server_sk bytea, client_pk bytea | pgsodium.crypto_kx_session - pgsodium | pgsodium | crypto_pwhash | password bytea, salt bytea | bytea - pgsodium | pgsodium | crypto_pwhash_saltgen | | bytea - pgsodium | pgsodium | crypto_pwhash_str | password bytea | bytea - pgsodium | pgsodium | crypto_pwhash_str_verify | hashed_password bytea, password bytea | boolean - pgsodium | pgsodium | crypto_secretbox | message bytea, nonce bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_secretbox | message bytea, nonce bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_secretbox | message bytea, nonce bytea, key bytea | bytea - pgsodium | pgsodium | crypto_secretbox_keygen | | bytea - pgsodium | pgsodium | crypto_secretbox_noncegen | | bytea - pgsodium | pgsodium | crypto_secretbox_open | ciphertext bytea, nonce bytea, key bytea | bytea - pgsodium | pgsodium | crypto_secretbox_open | message bytea, nonce bytea, key_id bigint, context bytea | bytea - pgsodium | pgsodium | crypto_secretbox_open | message bytea, nonce bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_secretstream_keygen | | bytea - pgsodium | pgsodium | crypto_shorthash | message bytea, key bigint, context bytea | bytea - pgsodium | pgsodium | crypto_shorthash | message bytea, key bytea | bytea - pgsodium | pgsodium | crypto_shorthash | message bytea, key_uuid uuid | bytea - pgsodium | pgsodium | crypto_shorthash_keygen | | bytea - pgsodium | pgsodium | crypto_sign | message bytea, key bytea | bytea - pgsodium | pgsodium | crypto_sign_detached | message bytea, key bytea | bytea - pgsodium | pgsodium | crypto_sign_final_create | state bytea, key bytea | bytea - pgsodium | pgsodium | crypto_sign_final_verify | state bytea, signature bytea, key bytea | boolean - pgsodium | pgsodium | crypto_sign_init | | bytea - pgsodium | pgsodium | crypto_sign_new_keypair | | pgsodium.crypto_sign_keypair - pgsodium | pgsodium | crypto_sign_new_seed | | bytea - pgsodium | pgsodium | crypto_sign_open | signed_message bytea, key bytea | bytea - pgsodium | pgsodium | crypto_sign_seed_new_keypair | seed bytea | pgsodium.crypto_sign_keypair - pgsodium | pgsodium | crypto_sign_update | state bytea, message bytea | bytea - pgsodium | pgsodium | crypto_sign_update_agg | message bytea | bytea - pgsodium | pgsodium | crypto_sign_update_agg | state bytea, message bytea | bytea - pgsodium | pgsodium | crypto_sign_update_agg1 | state bytea, message bytea | bytea - pgsodium | pgsodium | crypto_sign_update_agg2 | cur_state bytea, initial_state bytea, message bytea | bytea - pgsodium | pgsodium | crypto_sign_verify_detached | sig bytea, message bytea, key bytea | boolean - pgsodium | pgsodium | crypto_signcrypt_new_keypair | | pgsodium.crypto_signcrypt_keypair - pgsodium | pgsodium | crypto_signcrypt_sign_after | state bytea, sender_sk bytea, ciphertext bytea | bytea - pgsodium | pgsodium | crypto_signcrypt_sign_before | sender bytea, recipient bytea, sender_sk bytea, recipient_pk bytea, additional bytea | pgsodium.crypto_signcrypt_state_key - pgsodium | pgsodium | crypto_signcrypt_verify_after | state bytea, signature bytea, sender_pk bytea, ciphertext bytea | boolean - pgsodium | pgsodium | crypto_signcrypt_verify_before | signature bytea, sender bytea, recipient bytea, additional bytea, sender_pk bytea, recipient_sk bytea | pgsodium.crypto_signcrypt_state_key - pgsodium | pgsodium | crypto_signcrypt_verify_public | signature bytea, sender bytea, recipient bytea, additional bytea, sender_pk bytea, ciphertext bytea | boolean - pgsodium | pgsodium | crypto_stream_xchacha20 | bigint, bytea, bytea | bytea - pgsodium | pgsodium | crypto_stream_xchacha20 | bigint, bytea, bigint, context bytea | bytea - pgsodium | pgsodium | crypto_stream_xchacha20_keygen | | bytea - pgsodium | pgsodium | crypto_stream_xchacha20_noncegen | | bytea - pgsodium | pgsodium | crypto_stream_xchacha20_xor | bytea, bytea, bigint, context bytea | bytea - pgsodium | pgsodium | crypto_stream_xchacha20_xor | bytea, bytea, bytea | bytea - pgsodium | pgsodium | crypto_stream_xchacha20_xor_ic | bytea, bytea, bigint, bigint, context bytea | bytea - pgsodium | pgsodium | crypto_stream_xchacha20_xor_ic | bytea, bytea, bigint, bytea | bytea - pgsodium | pgsodium | decrypted_columns | relid oid | text - pgsodium | pgsodium | derive_key | key_id bigint, key_len integer, context bytea | bytea - pgsodium | pgsodium | disable_security_label_trigger | | void - pgsodium | pgsodium | enable_security_label_trigger | | void - pgsodium | pgsodium | encrypted_column | relid oid, m record | text - pgsodium | pgsodium | encrypted_columns | relid oid | text - pgsodium | pgsodium | get_key_by_id | uuid | pgsodium.valid_key - pgsodium | pgsodium | get_key_by_name | text | pgsodium.valid_key - pgsodium | pgsodium | get_named_keys | filter text | SETOF pgsodium.valid_key - pgsodium | pgsodium | has_mask | role regrole, source_name text | boolean - pgsodium | pgsodium | key_encrypt_secret_raw_key | | trigger - pgsodium | pgsodium | mask_columns | source_relid oid | TABLE(attname name, key_id text, key_id_column text, associated_column text, nonce_column text, format_type text) - pgsodium | pgsodium | mask_role | masked_role regrole, source_name text, view_name text | void - pgsodium | pgsodium | pgsodium_derive | key_id bigint, key_len integer, context bytea | bytea - pgsodium | pgsodium | quote_assoc | text, boolean | text - pgsodium | pgsodium | randombytes_buf | size integer | bytea - pgsodium | pgsodium | randombytes_buf_deterministic | size integer, seed bytea | bytea - pgsodium | pgsodium | randombytes_new_seed | | bytea - pgsodium | pgsodium | randombytes_random | | integer - pgsodium | pgsodium | randombytes_uniform | upper_bound integer | integer - pgsodium | pgsodium | sodium_base642bin | base64 text | bytea - pgsodium | pgsodium | sodium_bin2base64 | bin bytea | text - pgsodium | pgsodium | trg_mask_update | | event_trigger - pgsodium | pgsodium | update_mask | target oid, debug boolean | void - pgsodium | pgsodium | update_masks | debug boolean | void - pgsodium | pgsodium | version | | text - pgstattuple | public | pg_relpages | relname text | bigint - pgstattuple | public | pg_relpages | relname regclass | bigint - pgstattuple | public | pgstatginindex | relname regclass, OUT version integer, OUT pending_pages integer, OUT pending_tuples bigint | record - pgstattuple | public | pgstathashindex | relname regclass, OUT version integer, OUT bucket_pages bigint, OUT overflow_pages bigint, OUT bitmap_pages bigint, OUT unused_pages bigint, OUT live_items bigint, OUT dead_items bigint, OUT free_percent double precision | record - pgstattuple | public | pgstatindex | relname regclass, OUT version integer, OUT tree_level integer, OUT index_size bigint, OUT root_block_no bigint, OUT internal_pages bigint, OUT leaf_pages bigint, OUT empty_pages bigint, OUT deleted_pages bigint, OUT avg_leaf_density double precision, OUT leaf_fragmentation double precision | record - pgstattuple | public | pgstatindex | relname text, OUT version integer, OUT tree_level integer, OUT index_size bigint, OUT root_block_no bigint, OUT internal_pages bigint, OUT leaf_pages bigint, OUT empty_pages bigint, OUT deleted_pages bigint, OUT avg_leaf_density double precision, OUT leaf_fragmentation double precision | record - pgstattuple | public | pgstattuple | reloid regclass, OUT table_len bigint, OUT tuple_count bigint, OUT tuple_len bigint, OUT tuple_percent double precision, OUT dead_tuple_count bigint, OUT dead_tuple_len bigint, OUT dead_tuple_percent double precision, OUT free_space bigint, OUT free_percent double precision | record - pgstattuple | public | pgstattuple | relname text, OUT table_len bigint, OUT tuple_count bigint, OUT tuple_len bigint, OUT tuple_percent double precision, OUT dead_tuple_count bigint, OUT dead_tuple_len bigint, OUT dead_tuple_percent double precision, OUT free_space bigint, OUT free_percent double precision | record - pgstattuple | public | pgstattuple_approx | reloid regclass, OUT table_len bigint, OUT scanned_percent double precision, OUT approx_tuple_count bigint, OUT approx_tuple_len bigint, OUT approx_tuple_percent double precision, OUT dead_tuple_count bigint, OUT dead_tuple_len bigint, OUT dead_tuple_percent double precision, OUT approx_free_space bigint, OUT approx_free_percent double precision | record - pgtap | public | _add | text, integer | integer - pgtap | public | _add | text, integer, text | integer - pgtap | public | _alike | boolean, anyelement, text, text | text - pgtap | public | _ancestor_of | name, name, integer | boolean - pgtap | public | _ancestor_of | name, name, name, name, integer | boolean - pgtap | public | _are | text, name[], name[], text | text - pgtap | public | _areni | text, text[], text[], text | text - pgtap | public | _array_to_sorted_string | name[], text | text - pgtap | public | _assets_are | text, text[], text[], text | text - pgtap | public | _cast_exists | name, name, name, name | boolean - pgtap | public | _cast_exists | name, name | boolean - pgtap | public | _cast_exists | name, name, name | boolean - pgtap | public | _cdi | name, name, anyelement | text - pgtap | public | _cdi | name, name, anyelement, text | text - pgtap | public | _cdi | name, name, name, anyelement, text | text - pgtap | public | _cexists | name, name | boolean - pgtap | public | _cexists | name, name, name | boolean - pgtap | public | _ckeys | name, character | name[] - pgtap | public | _ckeys | name, name, character | name[] - pgtap | public | _cleanup | | boolean - pgtap | public | _cmp_types | oid, name | boolean - pgtap | public | _col_is_null | name, name, name, text, boolean | text - pgtap | public | _col_is_null | name, name, text, boolean | text - pgtap | public | _constraint | name, character, name[], text, text | text - pgtap | public | _constraint | name, name, character, name[], text, text | text - pgtap | public | _contract_on | text | "char" - pgtap | public | _currtest | | integer - pgtap | public | _db_privs | | name[] - pgtap | public | _def_is | text, text, anyelement, text | text - pgtap | public | _definer | name, name, name[] | boolean - pgtap | public | _definer | name, name[] | boolean - pgtap | public | _definer | name | boolean - pgtap | public | _definer | name, name | boolean - pgtap | public | _dexists | name | boolean - pgtap | public | _dexists | name, name | boolean - pgtap | public | _do_ne | text, text, text, text | text - pgtap | public | _docomp | text, text, text, text | text - pgtap | public | _error_diag | text, text, text, text, text, text, text, text, text, text | text - pgtap | public | _expand_context | character | text - pgtap | public | _expand_on | character | text - pgtap | public | _expand_vol | character | text - pgtap | public | _ext_exists | name | boolean - pgtap | public | _ext_exists | name, name | boolean - pgtap | public | _extensions | name | SETOF name - pgtap | public | _extensions | | SETOF name - pgtap | public | _extras | character, name, name[] | name[] - pgtap | public | _extras | character[], name[] | name[] - pgtap | public | _extras | character, name[] | name[] - pgtap | public | _extras | character[], name, name[] | name[] - pgtap | public | _finish | integer, integer, integer, boolean | SETOF text - pgtap | public | _fkexists | name, name, name[] | boolean - pgtap | public | _fkexists | name, name[] | boolean - pgtap | public | _fprivs_are | text, name, name[], text | text - pgtap | public | _func_compare | name, name, boolean, text | text - pgtap | public | _func_compare | name, name, name[], anyelement, anyelement, text | text - pgtap | public | _func_compare | name, name, name[], boolean, text | text - pgtap | public | _func_compare | name, name, anyelement, anyelement, text | text - pgtap | public | _funkargs | name[] | text - pgtap | public | _get | text | integer - pgtap | public | _get_ac_privs | name, text | text[] - pgtap | public | _get_col_ns_type | name, name, name | text - pgtap | public | _get_col_privs | name, text, name | text[] - pgtap | public | _get_col_type | name, name | text - pgtap | public | _get_col_type | name, name, name | text - pgtap | public | _get_context | name, name | "char" - pgtap | public | _get_db_owner | name | name - pgtap | public | _get_db_privs | name, text | text[] - pgtap | public | _get_dtype | name, text, boolean | text - pgtap | public | _get_dtype | name | text - pgtap | public | _get_fdw_privs | name, text | text[] - pgtap | public | _get_func_owner | name, name, name[] | name - pgtap | public | _get_func_owner | name, name[] | name - pgtap | public | _get_func_privs | text, text | text[] - pgtap | public | _get_index_owner | name, name | name - pgtap | public | _get_index_owner | name, name, name | name - pgtap | public | _get_lang_privs | name, text | text[] - pgtap | public | _get_language_owner | name | name - pgtap | public | _get_latest | text | integer[] - pgtap | public | _get_latest | text, integer | integer - pgtap | public | _get_note | integer | text - pgtap | public | _get_note | text | text - pgtap | public | _get_opclass_owner | name | name - pgtap | public | _get_opclass_owner | name, name | name - pgtap | public | _get_rel_owner | character[], name, name | name - pgtap | public | _get_rel_owner | character, name | name - pgtap | public | _get_rel_owner | name | name - pgtap | public | _get_rel_owner | name, name | name - pgtap | public | _get_rel_owner | character[], name | name - pgtap | public | _get_rel_owner | character, name, name | name - pgtap | public | _get_schema_owner | name | name - pgtap | public | _get_schema_privs | name, text | text[] - pgtap | public | _get_sequence_privs | name, text | text[] - pgtap | public | _get_server_privs | name, text | text[] - pgtap | public | _get_table_privs | name, text | text[] - pgtap | public | _get_tablespace_owner | name | name - pgtap | public | _get_tablespaceprivs | name, text | text[] - pgtap | public | _get_type_owner | name | name - pgtap | public | _get_type_owner | name, name | name - pgtap | public | _got_func | name, name, name[] | boolean - pgtap | public | _got_func | name, name[] | boolean - pgtap | public | _got_func | name | boolean - pgtap | public | _got_func | name, name | boolean - pgtap | public | _grolist | name | oid[] - pgtap | public | _has_def | name, name | boolean - pgtap | public | _has_def | name, name, name | boolean - pgtap | public | _has_group | name | boolean - pgtap | public | _has_role | name | boolean - pgtap | public | _has_type | name, name, character[] | boolean - pgtap | public | _has_type | name, character[] | boolean - pgtap | public | _has_user | name | boolean - pgtap | public | _hasc | name, character | boolean - pgtap | public | _hasc | name, name, character | boolean - pgtap | public | _have_index | name, name | boolean - pgtap | public | _have_index | name, name, name | boolean - pgtap | public | _ident_array_to_sorted_string | name[], text | text - pgtap | public | _ident_array_to_string | name[], text | text - pgtap | public | _ikeys | name, name | text[] - pgtap | public | _ikeys | name, name, name | text[] - pgtap | public | _inherited | name | boolean - pgtap | public | _inherited | name, name | boolean - pgtap | public | _is_indexed | name, name, text[] | boolean - pgtap | public | _is_instead | name, name | boolean - pgtap | public | _is_instead | name, name, name | boolean - pgtap | public | _is_schema | name | boolean - pgtap | public | _is_super | name | boolean - pgtap | public | _is_trusted | name | boolean - pgtap | public | _is_verbose | | boolean - pgtap | public | _keys | name, character | SETOF name[] - pgtap | public | _keys | name, name, character | SETOF name[] - pgtap | public | _lang | name, name, name[] | name - pgtap | public | _lang | name, name[] | name - pgtap | public | _lang | name | name - pgtap | public | _lang | name, name | name - pgtap | public | _missing | character, name, name[] | name[] - pgtap | public | _missing | character[], name[] | name[] - pgtap | public | _missing | character, name[] | name[] - pgtap | public | _missing | character[], name, name[] | name[] - pgtap | public | _nosuch | name, name, name[] | text - pgtap | public | _op_exists | name, name, name, name | boolean - pgtap | public | _op_exists | name, name, name, name, name | boolean - pgtap | public | _op_exists | name, name, name | boolean - pgtap | public | _opc_exists | name | boolean - pgtap | public | _opc_exists | name, name | boolean - pgtap | public | _partof | name, name, name, name | boolean - pgtap | public | _partof | name, name | boolean - pgtap | public | _parts | name | SETOF name - pgtap | public | _parts | name, name | SETOF name - pgtap | public | _pg_sv_column_array | oid, smallint[] | name[] - pgtap | public | _pg_sv_table_accessible | oid, oid | boolean - pgtap | public | _pg_sv_type_array | oid[] | name[] - pgtap | public | _prokind | p_oid oid | "char" - pgtap | public | _query | text | text - pgtap | public | _quote_ident_like | text, text | text - pgtap | public | _refine_vol | text | text - pgtap | public | _relcomp | text, text, text, text, text | text - pgtap | public | _relcomp | text, text, text, text | text - pgtap | public | _relcomp | text, anyarray, text, text | text - pgtap | public | _relexists | name | boolean - pgtap | public | _relexists | name, name | boolean - pgtap | public | _relne | text, text, text, text | text - pgtap | public | _relne | text, anyarray, text, text | text - pgtap | public | _returns | name, name, name[] | text - pgtap | public | _returns | name, name[] | text - pgtap | public | _returns | name | text - pgtap | public | _returns | name, name | text - pgtap | public | _rexists | character[], name, name | boolean - pgtap | public | _rexists | character, name | boolean - pgtap | public | _rexists | character[], name | boolean - pgtap | public | _rexists | character, name, name | boolean - pgtap | public | _rule_on | name, name | "char" - pgtap | public | _rule_on | name, name, name | "char" - pgtap | public | _runem | text[], boolean | SETOF text - pgtap | public | _runner | text[], text[], text[], text[], text[] | SETOF text - pgtap | public | _set | text, integer | integer - pgtap | public | _set | integer, integer | integer - pgtap | public | _set | text, integer, text | integer - pgtap | public | _strict | name, name, name[] | boolean - pgtap | public | _strict | name, name[] | boolean - pgtap | public | _strict | name | boolean - pgtap | public | _strict | name, name | boolean - pgtap | public | _table_privs | | name[] - pgtap | public | _temptable | text, text | text - pgtap | public | _temptable | anyarray, text | text - pgtap | public | _temptypes | text | text - pgtap | public | _time_trials | text, integer, numeric | SETOF _time_trial_type - pgtap | public | _tlike | boolean, text, text, text | text - pgtap | public | _todo | | text - pgtap | public | _trig | name, name | boolean - pgtap | public | _trig | name, name, name | boolean - pgtap | public | _type_func | "char", name | boolean - pgtap | public | _type_func | "char", name, name, name[] | boolean - pgtap | public | _type_func | "char", name, name[] | boolean - pgtap | public | _type_func | "char", name, name | boolean - pgtap | public | _types_are | name, name[], text, character[] | text - pgtap | public | _types_are | name[], text, character[] | text - pgtap | public | _unalike | boolean, anyelement, text, text | text - pgtap | public | _vol | name, name, name[] | text - pgtap | public | _vol | name, name[] | text - pgtap | public | _vol | name | text - pgtap | public | _vol | name, name | text - pgtap | public | add_result | boolean, boolean, text, text, text | integer - pgtap | public | alike | anyelement, text | text - pgtap | public | alike | anyelement, text, text | text - pgtap | public | any_column_privs_are | name, name, name, name[], text | text - pgtap | public | any_column_privs_are | name, name, name[] | text - pgtap | public | any_column_privs_are | name, name, name, name[] | text - pgtap | public | any_column_privs_are | name, name, name[], text | text - pgtap | public | bag_eq | text, anyarray, text | text - pgtap | public | bag_eq | text, text | text - pgtap | public | bag_eq | text, text, text | text - pgtap | public | bag_eq | text, anyarray | text - pgtap | public | bag_has | text, text | text - pgtap | public | bag_has | text, text, text | text - pgtap | public | bag_hasnt | text, text | text - pgtap | public | bag_hasnt | text, text, text | text - pgtap | public | bag_ne | text, anyarray, text | text - pgtap | public | bag_ne | text, text | text - pgtap | public | bag_ne | text, text, text | text - pgtap | public | bag_ne | text, anyarray | text - pgtap | public | can | name[] | text - pgtap | public | can | name[], text | text - pgtap | public | can | name, name[], text | text - pgtap | public | can | name, name[] | text - pgtap | public | cast_context_is | name, name, text, text | text - pgtap | public | cast_context_is | name, name, text | text - pgtap | public | casts_are | text[] | text - pgtap | public | casts_are | text[], text | text - pgtap | public | check_test | text, boolean | SETOF text - pgtap | public | check_test | text, boolean, text, text, text, boolean | SETOF text - pgtap | public | check_test | text, boolean, text, text | SETOF text - pgtap | public | check_test | text, boolean, text | SETOF text - pgtap | public | check_test | text, boolean, text, text, text | SETOF text - pgtap | public | cmp_ok | anyelement, text, anyelement | text - pgtap | public | cmp_ok | anyelement, text, anyelement, text | text - pgtap | public | col_default_is | name, name, anyelement | text - pgtap | public | col_default_is | name, name, text, text | text - pgtap | public | col_default_is | name, name, name, text, text | text - pgtap | public | col_default_is | name, name, text | text - pgtap | public | col_default_is | name, name, anyelement, text | text - pgtap | public | col_default_is | name, name, name, anyelement, text | text - pgtap | public | col_has_check | name, name, name, text | text - pgtap | public | col_has_check | name, name[], text | text - pgtap | public | col_has_check | name, name[] | text - pgtap | public | col_has_check | name, name, text | text - pgtap | public | col_has_check | name, name, name[], text | text - pgtap | public | col_has_check | name, name | text - pgtap | public | col_has_default | name, name, name, text | text - pgtap | public | col_has_default | name, name, text | text - pgtap | public | col_has_default | name, name | text - pgtap | public | col_hasnt_default | name, name, name, text | text - pgtap | public | col_hasnt_default | name, name, text | text - pgtap | public | col_hasnt_default | name, name | text - pgtap | public | col_is_fk | name, name, name, text | text - pgtap | public | col_is_fk | name, name[], text | text - pgtap | public | col_is_fk | name, name[] | text - pgtap | public | col_is_fk | name, name, text | text - pgtap | public | col_is_fk | name, name, name[], text | text - pgtap | public | col_is_fk | name, name | text - pgtap | public | col_is_null | table_name name, column_name name, description text | text - pgtap | public | col_is_null | schema_name name, table_name name, column_name name, description text | text - pgtap | public | col_is_pk | name, name, name, text | text - pgtap | public | col_is_pk | name, name[], text | text - pgtap | public | col_is_pk | name, name[] | text - pgtap | public | col_is_pk | name, name, text | text - pgtap | public | col_is_pk | name, name, name[], text | text - pgtap | public | col_is_pk | name, name | text - pgtap | public | col_is_unique | name, name, name, text | text - pgtap | public | col_is_unique | name, name[], text | text - pgtap | public | col_is_unique | name, name, name[] | text - pgtap | public | col_is_unique | name, name[] | text - pgtap | public | col_is_unique | name, name, text | text - pgtap | public | col_is_unique | name, name, name[], text | text - pgtap | public | col_is_unique | name, name | text - pgtap | public | col_is_unique | name, name, name | text - pgtap | public | col_isnt_fk | name, name, name, text | text - pgtap | public | col_isnt_fk | name, name[], text | text - pgtap | public | col_isnt_fk | name, name[] | text - pgtap | public | col_isnt_fk | name, name, text | text - pgtap | public | col_isnt_fk | name, name, name[], text | text - pgtap | public | col_isnt_fk | name, name | text - pgtap | public | col_isnt_pk | name, name, name, text | text - pgtap | public | col_isnt_pk | name, name[], text | text - pgtap | public | col_isnt_pk | name, name[] | text - pgtap | public | col_isnt_pk | name, name, text | text - pgtap | public | col_isnt_pk | name, name, name[], text | text - pgtap | public | col_isnt_pk | name, name | text - pgtap | public | col_not_null | table_name name, column_name name, description text | text - pgtap | public | col_not_null | schema_name name, table_name name, column_name name, description text | text - pgtap | public | col_type_is | name, name, name, text | text - pgtap | public | col_type_is | name, name, text, text | text - pgtap | public | col_type_is | name, name, name, text, text | text - pgtap | public | col_type_is | name, name, name, name, text, text | text - pgtap | public | col_type_is | name, name, text | text - pgtap | public | col_type_is | name, name, name, name, text | text - pgtap | public | collect_tap | VARIADIC text[] | text - pgtap | public | collect_tap | character varying[] | text - pgtap | public | column_privs_are | name, name, name, name[], text | text - pgtap | public | column_privs_are | name, name, name, name, name[] | text - pgtap | public | column_privs_are | name, name, name, name[] | text - pgtap | public | column_privs_are | name, name, name, name, name[], text | text - pgtap | public | columns_are | name, name[], text | text - pgtap | public | columns_are | name, name, name[] | text - pgtap | public | columns_are | name, name[] | text - pgtap | public | columns_are | name, name, name[], text | text - pgtap | public | composite_owner_is | name, name, name, text | text - pgtap | public | composite_owner_is | name, name, text | text - pgtap | public | composite_owner_is | name, name | text - pgtap | public | composite_owner_is | name, name, name | text - pgtap | public | database_privs_are | name, name, name[] | text - pgtap | public | database_privs_are | name, name, name[], text | text - pgtap | public | db_owner_is | name, name, text | text - pgtap | public | db_owner_is | name, name | text - pgtap | public | diag | msg text | text - pgtap | public | diag | VARIADIC text[] | text - pgtap | public | diag | VARIADIC anyarray | text - pgtap | public | diag | msg anyelement | text - pgtap | public | diag_test_name | text | text - pgtap | public | display_oper | name, oid | text - pgtap | public | do_tap | text | SETOF text - pgtap | public | do_tap | name, text | SETOF text - pgtap | public | do_tap | name | SETOF text - pgtap | public | do_tap | | SETOF text - pgtap | public | doesnt_imatch | anyelement, text | text - pgtap | public | doesnt_imatch | anyelement, text, text | text - pgtap | public | doesnt_match | anyelement, text | text - pgtap | public | doesnt_match | anyelement, text, text | text - pgtap | public | domain_type_is | name, text, name, text, text | text - pgtap | public | domain_type_is | text, text | text - pgtap | public | domain_type_is | name, text, text, text | text - pgtap | public | domain_type_is | name, text, text | text - pgtap | public | domain_type_is | text, text, text | text - pgtap | public | domain_type_is | name, text, name, text | text - pgtap | public | domain_type_isnt | name, text, name, text, text | text - pgtap | public | domain_type_isnt | text, text | text - pgtap | public | domain_type_isnt | name, text, text, text | text - pgtap | public | domain_type_isnt | name, text, text | text - pgtap | public | domain_type_isnt | text, text, text | text - pgtap | public | domain_type_isnt | name, text, name, text | text - pgtap | public | domains_are | name[] | text - pgtap | public | domains_are | name[], text | text - pgtap | public | domains_are | name, name[], text | text - pgtap | public | domains_are | name, name[] | text - pgtap | public | enum_has_labels | name, name[], text | text - pgtap | public | enum_has_labels | name, name, name[] | text - pgtap | public | enum_has_labels | name, name[] | text - pgtap | public | enum_has_labels | name, name, name[], text | text - pgtap | public | enums_are | name[] | text - pgtap | public | enums_are | name[], text | text - pgtap | public | enums_are | name, name[], text | text - pgtap | public | enums_are | name, name[] | text - pgtap | public | extensions_are | name[] | text - pgtap | public | extensions_are | name[], text | text - pgtap | public | extensions_are | name, name[], text | text - pgtap | public | extensions_are | name, name[] | text - pgtap | public | fail | text | text - pgtap | public | fail | | text - pgtap | public | fdw_privs_are | name, name, name[] | text - pgtap | public | fdw_privs_are | name, name, name[], text | text - pgtap | public | findfuncs | text | text[] - pgtap | public | findfuncs | text, text | text[] - pgtap | public | findfuncs | name, text, text | text[] - pgtap | public | findfuncs | name, text | text[] - pgtap | public | finish | exception_on_failure boolean | SETOF text - pgtap | public | fk_ok | name, name, name, name, name, text | text - pgtap | public | fk_ok | name, name, name, name, name, name, text | text - pgtap | public | fk_ok | name, name, name, name | text - pgtap | public | fk_ok | name, name, name, name, text | text - pgtap | public | fk_ok | name, name, name[], name, name, name[], text | text - pgtap | public | fk_ok | name, name, name[], name, name, name[] | text - pgtap | public | fk_ok | name, name[], name, name[] | text - pgtap | public | fk_ok | name, name[], name, name[], text | text - pgtap | public | foreign_table_owner_is | name, name, name, text | text - pgtap | public | foreign_table_owner_is | name, name, text | text - pgtap | public | foreign_table_owner_is | name, name | text - pgtap | public | foreign_table_owner_is | name, name, name | text - pgtap | public | foreign_tables_are | name[] | text - pgtap | public | foreign_tables_are | name[], text | text - pgtap | public | foreign_tables_are | name, name[], text | text - pgtap | public | foreign_tables_are | name, name[] | text - pgtap | public | function_lang_is | name, name, name, text | text - pgtap | public | function_lang_is | name, name, text | text - pgtap | public | function_lang_is | name, name[], name, text | text - pgtap | public | function_lang_is | name, name, name[], name | text - pgtap | public | function_lang_is | name, name | text - pgtap | public | function_lang_is | name, name, name | text - pgtap | public | function_lang_is | name, name[], name | text - pgtap | public | function_lang_is | name, name, name[], name, text | text - pgtap | public | function_owner_is | name, name[], name, text | text - pgtap | public | function_owner_is | name, name, name[], name | text - pgtap | public | function_owner_is | name, name[], name | text - pgtap | public | function_owner_is | name, name, name[], name, text | text - pgtap | public | function_privs_are | name, name, name[], name, name[], text | text - pgtap | public | function_privs_are | name, name[], name, name[] | text - pgtap | public | function_privs_are | name, name[], name, name[], text | text - pgtap | public | function_privs_are | name, name, name[], name, name[] | text - pgtap | public | function_returns | name, name, name[], text, text | text - pgtap | public | function_returns | name, name[], text | text - pgtap | public | function_returns | name, name, text, text | text - pgtap | public | function_returns | name, name, text | text - pgtap | public | function_returns | name, text, text | text - pgtap | public | function_returns | name, text | text - pgtap | public | function_returns | name, name, name[], text | text - pgtap | public | function_returns | name, name[], text, text | text - pgtap | public | functions_are | name[] | text - pgtap | public | functions_are | name[], text | text - pgtap | public | functions_are | name, name[], text | text - pgtap | public | functions_are | name, name[] | text - pgtap | public | groups_are | name[] | text - pgtap | public | groups_are | name[], text | text - pgtap | public | has_cast | name, name, name, text | text - pgtap | public | has_cast | name, name, name, name | text - pgtap | public | has_cast | name, name, text | text - pgtap | public | has_cast | name, name, name, name, text | text - pgtap | public | has_cast | name, name | text - pgtap | public | has_cast | name, name, name | text - pgtap | public | has_check | name, name, text | text - pgtap | public | has_check | name, text | text - pgtap | public | has_check | name | text - pgtap | public | has_column | name, name, name, text | text - pgtap | public | has_column | name, name, text | text - pgtap | public | has_column | name, name | text - pgtap | public | has_composite | name, name, text | text - pgtap | public | has_composite | name, text | text - pgtap | public | has_composite | name | text - pgtap | public | has_domain | name, name, text | text - pgtap | public | has_domain | name, text | text - pgtap | public | has_domain | name | text - pgtap | public | has_domain | name, name | text - pgtap | public | has_enum | name, name, text | text - pgtap | public | has_enum | name, text | text - pgtap | public | has_enum | name | text - pgtap | public | has_enum | name, name | text - pgtap | public | has_extension | name, name, text | text - pgtap | public | has_extension | name, text | text - pgtap | public | has_extension | name | text - pgtap | public | has_extension | name, name | text - pgtap | public | has_fk | name, name, text | text - pgtap | public | has_fk | name, text | text - pgtap | public | has_fk | name | text - pgtap | public | has_foreign_table | name, name, text | text - pgtap | public | has_foreign_table | name, text | text - pgtap | public | has_foreign_table | name | text - pgtap | public | has_foreign_table | name, name | text - pgtap | public | has_function | name, name[], text | text - pgtap | public | has_function | name, name, name[] | text - pgtap | public | has_function | name, name[] | text - pgtap | public | has_function | name, name, text | text - pgtap | public | has_function | name, text | text - pgtap | public | has_function | name | text - pgtap | public | has_function | name, name, name[], text | text - pgtap | public | has_function | name, name | text - pgtap | public | has_group | name, text | text - pgtap | public | has_group | name | text - pgtap | public | has_index | name, name, name, text | text - pgtap | public | has_index | name, name, name, name[], text | text - pgtap | public | has_index | name, name, name[] | text - pgtap | public | has_index | name, name, name, name | text - pgtap | public | has_index | name, name, text | text - pgtap | public | has_index | name, name, name, name[] | text - pgtap | public | has_index | name, name, name, name, text | text - pgtap | public | has_index | name, name, name[], text | text - pgtap | public | has_index | name, name | text - pgtap | public | has_index | name, name, name | text - pgtap | public | has_inherited_tables | name, name, text | text - pgtap | public | has_inherited_tables | name, text | text - pgtap | public | has_inherited_tables | name | text - pgtap | public | has_inherited_tables | name, name | text - pgtap | public | has_language | name, text | text - pgtap | public | has_language | name | text - pgtap | public | has_leftop | name, name, name, text | text - pgtap | public | has_leftop | name, name, name, name | text - pgtap | public | has_leftop | name, name, text | text - pgtap | public | has_leftop | name, name, name, name, text | text - pgtap | public | has_leftop | name, name | text - pgtap | public | has_leftop | name, name, name | text - pgtap | public | has_materialized_view | name, name, text | text - pgtap | public | has_materialized_view | name, text | text - pgtap | public | has_materialized_view | name | text - pgtap | public | has_opclass | name, name, text | text - pgtap | public | has_opclass | name, text | text - pgtap | public | has_opclass | name | text - pgtap | public | has_opclass | name, name | text - pgtap | public | has_operator | name, name, name, text | text - pgtap | public | has_operator | name, name, name, name, name, text | text - pgtap | public | has_operator | name, name, name, name | text - pgtap | public | has_operator | name, name, name, name, text | text - pgtap | public | has_operator | name, name, name, name, name | text - pgtap | public | has_operator | name, name, name | text - pgtap | public | has_pk | name, name, text | text - pgtap | public | has_pk | name, text | text - pgtap | public | has_pk | name | text - pgtap | public | has_relation | name, name, text | text - pgtap | public | has_relation | name, text | text - pgtap | public | has_relation | name | text - pgtap | public | has_rightop | name, name, name, text | text - pgtap | public | has_rightop | name, name, name, name | text - pgtap | public | has_rightop | name, name, text | text - pgtap | public | has_rightop | name, name, name, name, text | text - pgtap | public | has_rightop | name, name | text - pgtap | public | has_rightop | name, name, name | text - pgtap | public | has_role | name, text | text - pgtap | public | has_role | name | text - pgtap | public | has_rule | name, name, name, text | text - pgtap | public | has_rule | name, name, text | text - pgtap | public | has_rule | name, name | text - pgtap | public | has_rule | name, name, name | text - pgtap | public | has_schema | name, text | text - pgtap | public | has_schema | name | text - pgtap | public | has_sequence | name, name, text | text - pgtap | public | has_sequence | name, text | text - pgtap | public | has_sequence | name | text - pgtap | public | has_sequence | name, name | text - pgtap | public | has_table | name, name, text | text - pgtap | public | has_table | name, text | text - pgtap | public | has_table | name | text - pgtap | public | has_table | name, name | text - pgtap | public | has_tablespace | name, text, text | text - pgtap | public | has_tablespace | name, text | text - pgtap | public | has_tablespace | name | text - pgtap | public | has_trigger | name, name, name, text | text - pgtap | public | has_trigger | name, name, text | text - pgtap | public | has_trigger | name, name | text - pgtap | public | has_trigger | name, name, name | text - pgtap | public | has_type | name, name, text | text - pgtap | public | has_type | name, text | text - pgtap | public | has_type | name | text - pgtap | public | has_type | name, name | text - pgtap | public | has_unique | text | text - pgtap | public | has_unique | text, text | text - pgtap | public | has_unique | text, text, text | text - pgtap | public | has_user | name, text | text - pgtap | public | has_user | name | text - pgtap | public | has_view | name, name, text | text - pgtap | public | has_view | name, text | text - pgtap | public | has_view | name | text - pgtap | public | has_view | name, name | text - pgtap | public | hasnt_cast | name, name, name, text | text - pgtap | public | hasnt_cast | name, name, name, name | text - pgtap | public | hasnt_cast | name, name, text | text - pgtap | public | hasnt_cast | name, name, name, name, text | text - pgtap | public | hasnt_cast | name, name | text - pgtap | public | hasnt_cast | name, name, name | text - pgtap | public | hasnt_column | name, name, name, text | text - pgtap | public | hasnt_column | name, name, text | text - pgtap | public | hasnt_column | name, name | text - pgtap | public | hasnt_composite | name, name, text | text - pgtap | public | hasnt_composite | name, text | text - pgtap | public | hasnt_composite | name | text - pgtap | public | hasnt_domain | name, name, text | text - pgtap | public | hasnt_domain | name, text | text - pgtap | public | hasnt_domain | name | text - pgtap | public | hasnt_domain | name, name | text - pgtap | public | hasnt_enum | name, name, text | text - pgtap | public | hasnt_enum | name, text | text - pgtap | public | hasnt_enum | name | text - pgtap | public | hasnt_enum | name, name | text - pgtap | public | hasnt_extension | name, name, text | text - pgtap | public | hasnt_extension | name, text | text - pgtap | public | hasnt_extension | name | text - pgtap | public | hasnt_extension | name, name | text - pgtap | public | hasnt_fk | name, name, text | text - pgtap | public | hasnt_fk | name, text | text - pgtap | public | hasnt_fk | name | text - pgtap | public | hasnt_foreign_table | name, name, text | text - pgtap | public | hasnt_foreign_table | name, text | text - pgtap | public | hasnt_foreign_table | name | text - pgtap | public | hasnt_foreign_table | name, name | text - pgtap | public | hasnt_function | name, name[], text | text - pgtap | public | hasnt_function | name, name, name[] | text - pgtap | public | hasnt_function | name, name[] | text - pgtap | public | hasnt_function | name, name, text | text - pgtap | public | hasnt_function | name, text | text - pgtap | public | hasnt_function | name | text - pgtap | public | hasnt_function | name, name, name[], text | text - pgtap | public | hasnt_function | name, name | text - pgtap | public | hasnt_group | name, text | text - pgtap | public | hasnt_group | name | text - pgtap | public | hasnt_index | name, name, name, text | text - pgtap | public | hasnt_index | name, name, text | text - pgtap | public | hasnt_index | name, name | text - pgtap | public | hasnt_index | name, name, name | text - pgtap | public | hasnt_inherited_tables | name, name, text | text - pgtap | public | hasnt_inherited_tables | name, text | text - pgtap | public | hasnt_inherited_tables | name | text - pgtap | public | hasnt_inherited_tables | name, name | text - pgtap | public | hasnt_language | name, text | text - pgtap | public | hasnt_language | name | text - pgtap | public | hasnt_leftop | name, name, name, text | text - pgtap | public | hasnt_leftop | name, name, name, name | text - pgtap | public | hasnt_leftop | name, name, text | text - pgtap | public | hasnt_leftop | name, name, name, name, text | text - pgtap | public | hasnt_leftop | name, name | text - pgtap | public | hasnt_leftop | name, name, name | text - pgtap | public | hasnt_materialized_view | name, name, text | text - pgtap | public | hasnt_materialized_view | name, text | text - pgtap | public | hasnt_materialized_view | name | text - pgtap | public | hasnt_opclass | name, name, text | text - pgtap | public | hasnt_opclass | name, text | text - pgtap | public | hasnt_opclass | name | text - pgtap | public | hasnt_opclass | name, name | text - pgtap | public | hasnt_operator | name, name, name, text | text - pgtap | public | hasnt_operator | name, name, name, name, name, text | text - pgtap | public | hasnt_operator | name, name, name, name | text - pgtap | public | hasnt_operator | name, name, name, name, text | text - pgtap | public | hasnt_operator | name, name, name, name, name | text - pgtap | public | hasnt_operator | name, name, name | text - pgtap | public | hasnt_pk | name, name, text | text - pgtap | public | hasnt_pk | name, text | text - pgtap | public | hasnt_pk | name | text - pgtap | public | hasnt_relation | name, name, text | text - pgtap | public | hasnt_relation | name, text | text - pgtap | public | hasnt_relation | name | text - pgtap | public | hasnt_rightop | name, name, name, text | text - pgtap | public | hasnt_rightop | name, name, name, name | text - pgtap | public | hasnt_rightop | name, name, text | text - pgtap | public | hasnt_rightop | name, name, name, name, text | text - pgtap | public | hasnt_rightop | name, name | text - pgtap | public | hasnt_rightop | name, name, name | text - pgtap | public | hasnt_role | name, text | text - pgtap | public | hasnt_role | name | text - pgtap | public | hasnt_rule | name, name, name, text | text - pgtap | public | hasnt_rule | name, name, text | text - pgtap | public | hasnt_rule | name, name | text - pgtap | public | hasnt_rule | name, name, name | text - pgtap | public | hasnt_schema | name, text | text - pgtap | public | hasnt_schema | name | text - pgtap | public | hasnt_sequence | name, name, text | text - pgtap | public | hasnt_sequence | name, text | text - pgtap | public | hasnt_sequence | name | text - pgtap | public | hasnt_table | name, name, text | text - pgtap | public | hasnt_table | name, text | text - pgtap | public | hasnt_table | name | text - pgtap | public | hasnt_table | name, name | text - pgtap | public | hasnt_tablespace | name, text | text - pgtap | public | hasnt_tablespace | name | text - pgtap | public | hasnt_trigger | name, name, name, text | text - pgtap | public | hasnt_trigger | name, name, text | text - pgtap | public | hasnt_trigger | name, name | text - pgtap | public | hasnt_trigger | name, name, name | text - pgtap | public | hasnt_type | name, name, text | text - pgtap | public | hasnt_type | name, text | text - pgtap | public | hasnt_type | name | text - pgtap | public | hasnt_type | name, name | text - pgtap | public | hasnt_user | name, text | text - pgtap | public | hasnt_user | name | text - pgtap | public | hasnt_view | name, name, text | text - pgtap | public | hasnt_view | name, text | text - pgtap | public | hasnt_view | name | text - pgtap | public | hasnt_view | name, name | text - pgtap | public | ialike | anyelement, text | text - pgtap | public | ialike | anyelement, text, text | text - pgtap | public | imatches | anyelement, text | text - pgtap | public | imatches | anyelement, text, text | text - pgtap | public | in_todo | | boolean - pgtap | public | index_is_primary | name, name, name, text | text - pgtap | public | index_is_primary | name | text - pgtap | public | index_is_primary | name, name | text - pgtap | public | index_is_primary | name, name, name | text - pgtap | public | index_is_type | name, name, name, name | text - pgtap | public | index_is_type | name, name, name, name, text | text - pgtap | public | index_is_type | name, name | text - pgtap | public | index_is_type | name, name, name | text - pgtap | public | index_is_unique | name, name, name, text | text - pgtap | public | index_is_unique | name | text - pgtap | public | index_is_unique | name, name | text - pgtap | public | index_is_unique | name, name, name | text - pgtap | public | index_owner_is | name, name, name, text | text - pgtap | public | index_owner_is | name, name, name, name | text - pgtap | public | index_owner_is | name, name, name, name, text | text - pgtap | public | index_owner_is | name, name, name | text - pgtap | public | indexes_are | name, name[], text | text - pgtap | public | indexes_are | name, name, name[] | text - pgtap | public | indexes_are | name, name[] | text - pgtap | public | indexes_are | name, name, name[], text | text - pgtap | public | is | anyelement, anyelement, text | text - pgtap | public | is | anyelement, anyelement | text - pgtap | public | is_aggregate | name, name[], text | text - pgtap | public | is_aggregate | name, name, name[] | text - pgtap | public | is_aggregate | name, name[] | text - pgtap | public | is_aggregate | name, name, text | text - pgtap | public | is_aggregate | name, text | text - pgtap | public | is_aggregate | name | text - pgtap | public | is_aggregate | name, name, name[], text | text - pgtap | public | is_aggregate | name, name | text - pgtap | public | is_ancestor_of | name, name, name, name, integer, text | text - pgtap | public | is_ancestor_of | name, name, integer | text - pgtap | public | is_ancestor_of | name, name, name, name | text - pgtap | public | is_ancestor_of | name, name, text | text - pgtap | public | is_ancestor_of | name, name, name, name, text | text - pgtap | public | is_ancestor_of | name, name, name, name, integer | text - pgtap | public | is_ancestor_of | name, name | text - pgtap | public | is_ancestor_of | name, name, integer, text | text - pgtap | public | is_clustered | name, name, name, text | text - pgtap | public | is_clustered | name | text - pgtap | public | is_clustered | name, name | text - pgtap | public | is_clustered | name, name, name | text - pgtap | public | is_definer | name, name[], text | text - pgtap | public | is_definer | name, name, name[] | text - pgtap | public | is_definer | name, name[] | text - pgtap | public | is_definer | name, name, text | text - pgtap | public | is_definer | name, text | text - pgtap | public | is_definer | name | text - pgtap | public | is_definer | name, name, name[], text | text - pgtap | public | is_definer | name, name | text - pgtap | public | is_descendent_of | name, name, name, name, integer, text | text - pgtap | public | is_descendent_of | name, name, integer | text - pgtap | public | is_descendent_of | name, name, name, name | text - pgtap | public | is_descendent_of | name, name, text | text - pgtap | public | is_descendent_of | name, name, name, name, text | text - pgtap | public | is_descendent_of | name, name, name, name, integer | text - pgtap | public | is_descendent_of | name, name | text - pgtap | public | is_descendent_of | name, name, integer, text | text - pgtap | public | is_empty | text | text - pgtap | public | is_empty | text, text | text - pgtap | public | is_indexed | name, name, name, text | text - pgtap | public | is_indexed | name, name[], text | text - pgtap | public | is_indexed | name, name, name[] | text - pgtap | public | is_indexed | name, name[] | text - pgtap | public | is_indexed | name, name, name[], text | text - pgtap | public | is_indexed | name, name | text - pgtap | public | is_indexed | name, name, name | text - pgtap | public | is_member_of | name, name[], text | text - pgtap | public | is_member_of | name, name[] | text - pgtap | public | is_member_of | name, name, text | text - pgtap | public | is_member_of | name, name | text - pgtap | public | is_normal_function | name, name[], text | text - pgtap | public | is_normal_function | name, name, name[] | text - pgtap | public | is_normal_function | name, name[] | text - pgtap | public | is_normal_function | name, name, text | text - pgtap | public | is_normal_function | name, text | text - pgtap | public | is_normal_function | name | text - pgtap | public | is_normal_function | name, name, name[], text | text - pgtap | public | is_normal_function | name, name | text - pgtap | public | is_partition_of | name, name, name, name | text - pgtap | public | is_partition_of | name, name, text | text - pgtap | public | is_partition_of | name, name, name, name, text | text - pgtap | public | is_partition_of | name, name | text - pgtap | public | is_partitioned | name, name, text | text - pgtap | public | is_partitioned | name, text | text - pgtap | public | is_partitioned | name | text - pgtap | public | is_partitioned | name, name | text - pgtap | public | is_procedure | name, name[], text | text - pgtap | public | is_procedure | name, name, name[] | text - pgtap | public | is_procedure | name, name[] | text - pgtap | public | is_procedure | name, name, text | text - pgtap | public | is_procedure | name, text | text - pgtap | public | is_procedure | name | text - pgtap | public | is_procedure | name, name, name[], text | text - pgtap | public | is_procedure | name, name | text - pgtap | public | is_strict | name, name[], text | text - pgtap | public | is_strict | name, name, name[] | text - pgtap | public | is_strict | name, name[] | text - pgtap | public | is_strict | name, name, text | text - pgtap | public | is_strict | name, text | text - pgtap | public | is_strict | name | text - pgtap | public | is_strict | name, name, name[], text | text - pgtap | public | is_strict | name, name | text - pgtap | public | is_superuser | name, text | text - pgtap | public | is_superuser | name | text - pgtap | public | is_window | name, name[], text | text - pgtap | public | is_window | name, name, name[] | text - pgtap | public | is_window | name, name[] | text - pgtap | public | is_window | name, name, text | text - pgtap | public | is_window | name, text | text - pgtap | public | is_window | name | text - pgtap | public | is_window | name, name, name[], text | text - pgtap | public | is_window | name, name | text - pgtap | public | isa_ok | anyelement, regtype | text - pgtap | public | isa_ok | anyelement, regtype, text | text - pgtap | public | isnt | anyelement, anyelement, text | text - pgtap | public | isnt | anyelement, anyelement | text - pgtap | public | isnt_aggregate | name, name[], text | text - pgtap | public | isnt_aggregate | name, name, name[] | text - pgtap | public | isnt_aggregate | name, name[] | text - pgtap | public | isnt_aggregate | name, name, text | text - pgtap | public | isnt_aggregate | name, text | text - pgtap | public | isnt_aggregate | name | text - pgtap | public | isnt_aggregate | name, name, name[], text | text - pgtap | public | isnt_aggregate | name, name | text - pgtap | public | isnt_ancestor_of | name, name, name, name, integer, text | text - pgtap | public | isnt_ancestor_of | name, name, integer | text - pgtap | public | isnt_ancestor_of | name, name, name, name | text - pgtap | public | isnt_ancestor_of | name, name, text | text - pgtap | public | isnt_ancestor_of | name, name, name, name, text | text - pgtap | public | isnt_ancestor_of | name, name, name, name, integer | text - pgtap | public | isnt_ancestor_of | name, name | text - pgtap | public | isnt_ancestor_of | name, name, integer, text | text - pgtap | public | isnt_definer | name, name[], text | text - pgtap | public | isnt_definer | name, name, name[] | text - pgtap | public | isnt_definer | name, name[] | text - pgtap | public | isnt_definer | name, name, text | text - pgtap | public | isnt_definer | name, text | text - pgtap | public | isnt_definer | name | text - pgtap | public | isnt_definer | name, name, name[], text | text - pgtap | public | isnt_definer | name, name | text - pgtap | public | isnt_descendent_of | name, name, name, name, integer, text | text - pgtap | public | isnt_descendent_of | name, name, integer | text - pgtap | public | isnt_descendent_of | name, name, name, name | text - pgtap | public | isnt_descendent_of | name, name, text | text - pgtap | public | isnt_descendent_of | name, name, name, name, text | text - pgtap | public | isnt_descendent_of | name, name, name, name, integer | text - pgtap | public | isnt_descendent_of | name, name | text - pgtap | public | isnt_descendent_of | name, name, integer, text | text - pgtap | public | isnt_empty | text | text - pgtap | public | isnt_empty | text, text | text - pgtap | public | isnt_member_of | name, name[], text | text - pgtap | public | isnt_member_of | name, name[] | text - pgtap | public | isnt_member_of | name, name, text | text - pgtap | public | isnt_member_of | name, name | text - pgtap | public | isnt_normal_function | name, name[], text | text - pgtap | public | isnt_normal_function | name, name, name[] | text - pgtap | public | isnt_normal_function | name, name[] | text - pgtap | public | isnt_normal_function | name, name, text | text - pgtap | public | isnt_normal_function | name, text | text - pgtap | public | isnt_normal_function | name | text - pgtap | public | isnt_normal_function | name, name, name[], text | text - pgtap | public | isnt_normal_function | name, name | text - pgtap | public | isnt_partitioned | name, name, text | text - pgtap | public | isnt_partitioned | name, text | text - pgtap | public | isnt_partitioned | name | text - pgtap | public | isnt_partitioned | name, name | text - pgtap | public | isnt_procedure | name, name[], text | text - pgtap | public | isnt_procedure | name, name, name[] | text - pgtap | public | isnt_procedure | name, name[] | text - pgtap | public | isnt_procedure | name, name, text | text - pgtap | public | isnt_procedure | name, text | text - pgtap | public | isnt_procedure | name | text - pgtap | public | isnt_procedure | name, name, name[], text | text - pgtap | public | isnt_procedure | name, name | text - pgtap | public | isnt_strict | name, name[], text | text - pgtap | public | isnt_strict | name, name, name[] | text - pgtap | public | isnt_strict | name, name[] | text - pgtap | public | isnt_strict | name, name, text | text - pgtap | public | isnt_strict | name, text | text - pgtap | public | isnt_strict | name | text - pgtap | public | isnt_strict | name, name, name[], text | text - pgtap | public | isnt_strict | name, name | text - pgtap | public | isnt_superuser | name, text | text - pgtap | public | isnt_superuser | name | text - pgtap | public | isnt_window | name, name[], text | text - pgtap | public | isnt_window | name, name, name[] | text - pgtap | public | isnt_window | name, name[] | text - pgtap | public | isnt_window | name, name, text | text - pgtap | public | isnt_window | name, text | text - pgtap | public | isnt_window | name | text - pgtap | public | isnt_window | name, name, name[], text | text - pgtap | public | isnt_window | name, name | text - pgtap | public | language_is_trusted | name, text | text - pgtap | public | language_is_trusted | name | text - pgtap | public | language_owner_is | name, name, text | text - pgtap | public | language_owner_is | name, name | text - pgtap | public | language_privs_are | name, name, name[] | text - pgtap | public | language_privs_are | name, name, name[], text | text - pgtap | public | languages_are | name[] | text - pgtap | public | languages_are | name[], text | text - pgtap | public | lives_ok | text | text - pgtap | public | lives_ok | text, text | text - pgtap | public | matches | anyelement, text | text - pgtap | public | matches | anyelement, text, text | text - pgtap | public | materialized_view_owner_is | name, name, name, text | text - pgtap | public | materialized_view_owner_is | name, name, text | text - pgtap | public | materialized_view_owner_is | name, name | text - pgtap | public | materialized_view_owner_is | name, name, name | text - pgtap | public | materialized_views_are | name[] | text - pgtap | public | materialized_views_are | name[], text | text - pgtap | public | materialized_views_are | name, name[], text | text - pgtap | public | materialized_views_are | name, name[] | text - pgtap | public | no_plan | | SETOF boolean - pgtap | public | num_failed | | integer - pgtap | public | ok | boolean | text - pgtap | public | ok | boolean, text | text - pgtap | public | opclass_owner_is | name, name, name, text | text - pgtap | public | opclass_owner_is | name, name, text | text - pgtap | public | opclass_owner_is | name, name | text - pgtap | public | opclass_owner_is | name, name, name | text - pgtap | public | opclasses_are | name[] | text - pgtap | public | opclasses_are | name[], text | text - pgtap | public | opclasses_are | name, name[], text | text - pgtap | public | opclasses_are | name, name[] | text - pgtap | public | operators_are | name, text[] | text - pgtap | public | operators_are | text[] | text - pgtap | public | operators_are | text[], text | text - pgtap | public | operators_are | name, text[], text | text - pgtap | public | os_name | | text - pgtap | public | partitions_are | name, name[], text | text - pgtap | public | partitions_are | name, name, name[] | text - pgtap | public | partitions_are | name, name[] | text - pgtap | public | partitions_are | name, name, name[], text | text - pgtap | public | pass | text | text - pgtap | public | pass | | text - pgtap | public | performs_ok | text, numeric, text | text - pgtap | public | performs_ok | text, numeric | text - pgtap | public | performs_within | text, numeric, numeric, integer | text - pgtap | public | performs_within | text, numeric, numeric | text - pgtap | public | performs_within | text, numeric, numeric, integer, text | text - pgtap | public | performs_within | text, numeric, numeric, text | text - pgtap | public | pg_version | | text - pgtap | public | pg_version_num | | integer - pgtap | public | pgtap_version | | numeric - pgtap | public | plan | integer | text - pgtap | public | policies_are | name, name[], text | text - pgtap | public | policies_are | name, name, name[] | text - pgtap | public | policies_are | name, name[] | text - pgtap | public | policies_are | name, name, name[], text | text - pgtap | public | policy_cmd_is | name, name, name, text | text - pgtap | public | policy_cmd_is | name, name, text, text | text - pgtap | public | policy_cmd_is | name, name, name, text, text | text - pgtap | public | policy_cmd_is | name, name, text | text - pgtap | public | policy_roles_are | name, name, name, name[], text | text - pgtap | public | policy_roles_are | name, name, name[] | text - pgtap | public | policy_roles_are | name, name, name, name[] | text - pgtap | public | policy_roles_are | name, name, name[], text | text - pgtap | public | relation_owner_is | name, name, name, text | text - pgtap | public | relation_owner_is | name, name, text | text - pgtap | public | relation_owner_is | name, name | text - pgtap | public | relation_owner_is | name, name, name | text - pgtap | public | results_eq | text, refcursor | text - pgtap | public | results_eq | text, anyarray, text | text - pgtap | public | results_eq | text, text | text - pgtap | public | results_eq | text, refcursor, text | text - pgtap | public | results_eq | refcursor, anyarray | text - pgtap | public | results_eq | refcursor, anyarray, text | text - pgtap | public | results_eq | text, text, text | text - pgtap | public | results_eq | text, anyarray | text - pgtap | public | results_eq | refcursor, refcursor, text | text - pgtap | public | results_eq | refcursor, text, text | text - pgtap | public | results_eq | refcursor, text | text - pgtap | public | results_eq | refcursor, refcursor | text - pgtap | public | results_ne | text, refcursor | text - pgtap | public | results_ne | text, anyarray, text | text - pgtap | public | results_ne | text, text | text - pgtap | public | results_ne | text, refcursor, text | text - pgtap | public | results_ne | refcursor, anyarray | text - pgtap | public | results_ne | refcursor, anyarray, text | text - pgtap | public | results_ne | text, text, text | text - pgtap | public | results_ne | text, anyarray | text - pgtap | public | results_ne | refcursor, refcursor, text | text - pgtap | public | results_ne | refcursor, text, text | text - pgtap | public | results_ne | refcursor, text | text - pgtap | public | results_ne | refcursor, refcursor | text - pgtap | public | roles_are | name[] | text - pgtap | public | roles_are | name[], text | text - pgtap | public | row_eq | text, anyelement | text - pgtap | public | row_eq | text, anyelement, text | text - pgtap | public | rule_is_instead | name, name, name, text | text - pgtap | public | rule_is_instead | name, name, text | text - pgtap | public | rule_is_instead | name, name | text - pgtap | public | rule_is_instead | name, name, name | text - pgtap | public | rule_is_on | name, name, name, text | text - pgtap | public | rule_is_on | name, name, text, text | text - pgtap | public | rule_is_on | name, name, name, text, text | text - pgtap | public | rule_is_on | name, name, text | text - pgtap | public | rules_are | name, name[], text | text - pgtap | public | rules_are | name, name, name[] | text - pgtap | public | rules_are | name, name[] | text - pgtap | public | rules_are | name, name, name[], text | text - pgtap | public | runtests | text | SETOF text - pgtap | public | runtests | name, text | SETOF text - pgtap | public | runtests | name | SETOF text - pgtap | public | runtests | | SETOF text - pgtap | public | schema_owner_is | name, name, text | text - pgtap | public | schema_owner_is | name, name | text - pgtap | public | schema_privs_are | name, name, name[] | text - pgtap | public | schema_privs_are | name, name, name[], text | text - pgtap | public | schemas_are | name[] | text - pgtap | public | schemas_are | name[], text | text - pgtap | public | sequence_owner_is | name, name, name, text | text - pgtap | public | sequence_owner_is | name, name, text | text - pgtap | public | sequence_owner_is | name, name | text - pgtap | public | sequence_owner_is | name, name, name | text - pgtap | public | sequence_privs_are | name, name, name, name[], text | text - pgtap | public | sequence_privs_are | name, name, name[] | text - pgtap | public | sequence_privs_are | name, name, name, name[] | text - pgtap | public | sequence_privs_are | name, name, name[], text | text - pgtap | public | sequences_are | name[] | text - pgtap | public | sequences_are | name[], text | text - pgtap | public | sequences_are | name, name[], text | text - pgtap | public | sequences_are | name, name[] | text - pgtap | public | server_privs_are | name, name, name[] | text - pgtap | public | server_privs_are | name, name, name[], text | text - pgtap | public | set_eq | text, anyarray, text | text - pgtap | public | set_eq | text, text | text - pgtap | public | set_eq | text, text, text | text - pgtap | public | set_eq | text, anyarray | text - pgtap | public | set_has | text, text | text - pgtap | public | set_has | text, text, text | text - pgtap | public | set_hasnt | text, text | text - pgtap | public | set_hasnt | text, text, text | text - pgtap | public | set_ne | text, anyarray, text | text - pgtap | public | set_ne | text, text | text - pgtap | public | set_ne | text, text, text | text - pgtap | public | set_ne | text, anyarray | text - pgtap | public | skip | integer | text - pgtap | public | skip | text | text - pgtap | public | skip | why text, how_many integer | text - pgtap | public | skip | integer, text | text - pgtap | public | table_owner_is | name, name, name, text | text - pgtap | public | table_owner_is | name, name, text | text - pgtap | public | table_owner_is | name, name | text - pgtap | public | table_owner_is | name, name, name | text - pgtap | public | table_privs_are | name, name, name, name[], text | text - pgtap | public | table_privs_are | name, name, name[] | text - pgtap | public | table_privs_are | name, name, name, name[] | text - pgtap | public | table_privs_are | name, name, name[], text | text - pgtap | public | tables_are | name[] | text - pgtap | public | tables_are | name[], text | text - pgtap | public | tables_are | name, name[], text | text - pgtap | public | tables_are | name, name[] | text - pgtap | public | tablespace_owner_is | name, name, text | text - pgtap | public | tablespace_owner_is | name, name | text - pgtap | public | tablespace_privs_are | name, name, name[] | text - pgtap | public | tablespace_privs_are | name, name, name[], text | text - pgtap | public | tablespaces_are | name[] | text - pgtap | public | tablespaces_are | name[], text | text - pgtap | public | throws_ilike | text, text | text - pgtap | public | throws_ilike | text, text, text | text - pgtap | public | throws_imatching | text, text | text - pgtap | public | throws_imatching | text, text, text | text - pgtap | public | throws_like | text, text | text - pgtap | public | throws_like | text, text, text | text - pgtap | public | throws_matching | text, text | text - pgtap | public | throws_matching | text, text, text | text - pgtap | public | throws_ok | text | text - pgtap | public | throws_ok | text, integer | text - pgtap | public | throws_ok | text, text | text - pgtap | public | throws_ok | text, character, text, text | text - pgtap | public | throws_ok | text, text, text | text - pgtap | public | throws_ok | text, integer, text, text | text - pgtap | public | throws_ok | text, integer, text | text - pgtap | public | todo | how_many integer, why text | SETOF boolean - pgtap | public | todo | why text, how_many integer | SETOF boolean - pgtap | public | todo | why text | SETOF boolean - pgtap | public | todo | how_many integer | SETOF boolean - pgtap | public | todo_end | | SETOF boolean - pgtap | public | todo_start | text | SETOF boolean - pgtap | public | todo_start | | SETOF boolean - pgtap | public | trigger_is | name, name, name, text | text - pgtap | public | trigger_is | name, name, name, name, name, text | text - pgtap | public | trigger_is | name, name, name, name, name | text - pgtap | public | trigger_is | name, name, name | text - pgtap | public | triggers_are | name, name[], text | text - pgtap | public | triggers_are | name, name, name[] | text - pgtap | public | triggers_are | name, name[] | text - pgtap | public | triggers_are | name, name, name[], text | text - pgtap | public | type_owner_is | name, name, name, text | text - pgtap | public | type_owner_is | name, name, text | text - pgtap | public | type_owner_is | name, name | text - pgtap | public | type_owner_is | name, name, name | text - pgtap | public | types_are | name[] | text - pgtap | public | types_are | name[], text | text - pgtap | public | types_are | name, name[], text | text - pgtap | public | types_are | name, name[] | text - pgtap | public | unalike | anyelement, text | text - pgtap | public | unalike | anyelement, text, text | text - pgtap | public | unialike | anyelement, text | text - pgtap | public | unialike | anyelement, text, text | text - pgtap | public | users_are | name[] | text - pgtap | public | users_are | name[], text | text - pgtap | public | view_owner_is | name, name, name, text | text - pgtap | public | view_owner_is | name, name, text | text - pgtap | public | view_owner_is | name, name | text - pgtap | public | view_owner_is | name, name, name | text - pgtap | public | views_are | name[] | text - pgtap | public | views_are | name[], text | text - pgtap | public | views_are | name, name[], text | text - pgtap | public | views_are | name, name[] | text - pgtap | public | volatility_is | name, name, name[], text, text | text - pgtap | public | volatility_is | name, name[], text | text - pgtap | public | volatility_is | name, name, text, text | text - pgtap | public | volatility_is | name, name, text | text - pgtap | public | volatility_is | name, text, text | text - pgtap | public | volatility_is | name, text | text - pgtap | public | volatility_is | name, name, name[], text | text - pgtap | public | volatility_is | name, name[], text, text | text - plpgsql | pg_catalog | plpgsql_call_handler | | language_handler - plpgsql | pg_catalog | plpgsql_inline_handler | internal | void - plpgsql | pg_catalog | plpgsql_validator | oid | void - plpgsql_check | public | __plpgsql_show_dependency_tb | funcoid regprocedure, relid regclass, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype | TABLE(type text, oid oid, schema text, name text, params text) - plpgsql_check | public | __plpgsql_show_dependency_tb | name text, relid regclass, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype | TABLE(type text, oid oid, schema text, name text, params text) - plpgsql_check | public | plpgsql_check_function | funcoid regprocedure, relid regclass, format text, fatal_errors boolean, other_warnings boolean, performance_warnings boolean, extra_warnings boolean, security_warnings boolean, compatibility_warnings boolean, oldtable name, newtable name, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype, without_warnings boolean, all_warnings boolean, use_incomment_options boolean, incomment_options_usage_warning boolean, constant_tracing boolean | SETOF text - plpgsql_check | public | plpgsql_check_function | name text, relid regclass, format text, fatal_errors boolean, other_warnings boolean, performance_warnings boolean, extra_warnings boolean, security_warnings boolean, compatibility_warnings boolean, oldtable name, newtable name, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype, without_warnings boolean, all_warnings boolean, use_incomment_options boolean, incomment_options_usage_warning boolean, constant_tracing boolean | SETOF text - plpgsql_check | public | plpgsql_check_function_tb | funcoid regprocedure, relid regclass, fatal_errors boolean, other_warnings boolean, performance_warnings boolean, extra_warnings boolean, security_warnings boolean, compatibility_warnings boolean, oldtable name, newtable name, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype, without_warnings boolean, all_warnings boolean, use_incomment_options boolean, incomment_options_usage_warning boolean, constant_tracing boolean | TABLE(functionid regproc, lineno integer, statement text, sqlstate text, message text, detail text, hint text, level text, "position" integer, query text, context text) - plpgsql_check | public | plpgsql_check_function_tb | name text, relid regclass, fatal_errors boolean, other_warnings boolean, performance_warnings boolean, extra_warnings boolean, security_warnings boolean, compatibility_warnings boolean, oldtable name, newtable name, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype, without_warnings boolean, all_warnings boolean, use_incomment_options boolean, incomment_options_usage_warning boolean, constant_tracing boolean | TABLE(functionid regproc, lineno integer, statement text, sqlstate text, message text, detail text, hint text, level text, "position" integer, query text, context text) - plpgsql_check | public | plpgsql_check_pragma | VARIADIC name text[] | integer - plpgsql_check | public | plpgsql_check_profiler | enable boolean | boolean - plpgsql_check | public | plpgsql_check_tracer | enable boolean, verbosity text | boolean - plpgsql_check | public | plpgsql_coverage_branches | funcoid regprocedure | double precision - plpgsql_check | public | plpgsql_coverage_branches | name text | double precision - plpgsql_check | public | plpgsql_coverage_statements | funcoid regprocedure | double precision - plpgsql_check | public | plpgsql_coverage_statements | name text | double precision - plpgsql_check | public | plpgsql_profiler_function_statements_tb | funcoid regprocedure | TABLE(stmtid integer, parent_stmtid integer, parent_note text, block_num integer, lineno integer, queryid bigint, exec_stmts bigint, exec_stmts_err bigint, total_time double precision, avg_time double precision, max_time double precision, processed_rows bigint, stmtname text) - plpgsql_check | public | plpgsql_profiler_function_statements_tb | name text | TABLE(stmtid integer, parent_stmtid integer, parent_note text, block_num integer, lineno integer, queryid bigint, exec_stmts bigint, exec_stmts_err bigint, total_time double precision, avg_time double precision, max_time double precision, processed_rows bigint, stmtname text) - plpgsql_check | public | plpgsql_profiler_function_tb | funcoid regprocedure | TABLE(lineno integer, stmt_lineno integer, queryids bigint[], cmds_on_row integer, exec_stmts bigint, exec_stmts_err bigint, total_time double precision, avg_time double precision, max_time double precision[], processed_rows bigint[], source text) - plpgsql_check | public | plpgsql_profiler_function_tb | name text | TABLE(lineno integer, stmt_lineno integer, queryids bigint[], cmds_on_row integer, exec_stmts bigint, exec_stmts_err bigint, total_time double precision, avg_time double precision, max_time double precision[], processed_rows bigint[], source text) - plpgsql_check | public | plpgsql_profiler_functions_all | | TABLE(funcoid regprocedure, exec_count bigint, exec_stmts_err bigint, total_time double precision, avg_time double precision, stddev_time double precision, min_time double precision, max_time double precision) - plpgsql_check | public | plpgsql_profiler_install_fake_queryid_hook | | void - plpgsql_check | public | plpgsql_profiler_remove_fake_queryid_hook | | void - plpgsql_check | public | plpgsql_profiler_reset | funcoid regprocedure | void - plpgsql_check | public | plpgsql_profiler_reset_all | | void - plpgsql_check | public | plpgsql_show_dependency_tb | funcoid regprocedure, relid regclass, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype | TABLE(type text, oid oid, schema text, name text, params text) - plpgsql_check | public | plpgsql_show_dependency_tb | fnname text, relid regclass, anyelememttype regtype, anyenumtype regtype, anyrangetype regtype, anycompatibletype regtype, anycompatiblerangetype regtype | TABLE(type text, oid oid, schema text, name text, params text) - postgis | public | _postgis_deprecate | oldname text, newname text, version text | void - postgis | public | _postgis_index_extent | tbl regclass, col text | box2d - postgis | public | _postgis_join_selectivity | regclass, text, regclass, text, text | double precision - postgis | public | _postgis_pgsql_version | | text - postgis | public | _postgis_scripts_pgsql_version | | text - postgis | public | _postgis_selectivity | tbl regclass, att_name text, geom geometry, mode text | double precision - postgis | public | _postgis_stats | tbl regclass, att_name text, text | text - postgis | public | _st_3ddfullywithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | _st_3ddwithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | _st_3dintersects | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_asgml | integer, geometry, integer, integer, text, text | text - postgis | public | _st_asx3d | integer, geometry, integer, integer, text | text - postgis | public | _st_bestsrid | geography | integer - postgis | public | _st_bestsrid | geography, geography | integer - postgis | public | _st_contains | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_containsproperly | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_coveredby | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_coveredby | geog1 geography, geog2 geography | boolean - postgis | public | _st_covers | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_covers | geog1 geography, geog2 geography | boolean - postgis | public | _st_crosses | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_dfullywithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | _st_distancetree | geography, geography, double precision, boolean | double precision - postgis | public | _st_distancetree | geography, geography | double precision - postgis | public | _st_distanceuncached | geography, geography, double precision, boolean | double precision - postgis | public | _st_distanceuncached | geography, geography, boolean | double precision - postgis | public | _st_distanceuncached | geography, geography | double precision - postgis | public | _st_dwithin | geog1 geography, geog2 geography, tolerance double precision, use_spheroid boolean | boolean - postgis | public | _st_dwithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | _st_dwithinuncached | geography, geography, double precision, boolean | boolean - postgis | public | _st_dwithinuncached | geography, geography, double precision | boolean - postgis | public | _st_equals | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_expand | geography, double precision | geography - postgis | public | _st_geomfromgml | text, integer | geometry - postgis | public | _st_intersects | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_linecrossingdirection | line1 geometry, line2 geometry | integer - postgis | public | _st_longestline | geom1 geometry, geom2 geometry | geometry - postgis | public | _st_maxdistance | geom1 geometry, geom2 geometry | double precision - postgis | public | _st_orderingequals | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_overlaps | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_pointoutside | geography | geography - postgis | public | _st_sortablehash | geom geometry | bigint - postgis | public | _st_touches | geom1 geometry, geom2 geometry | boolean - postgis | public | _st_voronoi | g1 geometry, clip geometry, tolerance double precision, return_polygons boolean | geometry - postgis | public | _st_within | geom1 geometry, geom2 geometry | boolean - postgis | public | addauth | text | boolean - postgis | public | addgeometrycolumn | schema_name character varying, table_name character varying, column_name character varying, new_srid integer, new_type character varying, new_dim integer, use_typmod boolean | text - postgis | public | addgeometrycolumn | catalog_name character varying, schema_name character varying, table_name character varying, column_name character varying, new_srid_in integer, new_type character varying, new_dim integer, use_typmod boolean | text - postgis | public | addgeometrycolumn | table_name character varying, column_name character varying, new_srid integer, new_type character varying, new_dim integer, use_typmod boolean | text - postgis | public | box | box3d | box - postgis | public | box | geometry | box - postgis | public | box2d | box3d | box2d - postgis | public | box2d | geometry | box2d - postgis | public | box2d_in | cstring | box2d - postgis | public | box2d_out | box2d | cstring - postgis | public | box2df_in | cstring | box2df - postgis | public | box2df_out | box2df | cstring - postgis | public | box3d | geometry | box3d - postgis | public | box3d | box2d | box3d - postgis | public | box3d_in | cstring | box3d - postgis | public | box3d_out | box3d | cstring - postgis | public | box3dtobox | box3d | box - postgis | public | bytea | geography | bytea - postgis | public | bytea | geometry | bytea - postgis | public | checkauth | text, text | integer - postgis | public | checkauth | text, text, text | integer - postgis | public | checkauthtrigger | | trigger - postgis | public | contains_2d | geometry, box2df | boolean - postgis | public | contains_2d | box2df, geometry | boolean - postgis | public | contains_2d | box2df, box2df | boolean - postgis | public | disablelongtransactions | | text - postgis | public | dropgeometrycolumn | schema_name character varying, table_name character varying, column_name character varying | text - postgis | public | dropgeometrycolumn | table_name character varying, column_name character varying | text - postgis | public | dropgeometrycolumn | catalog_name character varying, schema_name character varying, table_name character varying, column_name character varying | text - postgis | public | dropgeometrytable | table_name character varying | text - postgis | public | dropgeometrytable | schema_name character varying, table_name character varying | text - postgis | public | dropgeometrytable | catalog_name character varying, schema_name character varying, table_name character varying | text - postgis | public | enablelongtransactions | | text - postgis | public | equals | geom1 geometry, geom2 geometry | boolean - postgis | public | find_srid | character varying, character varying, character varying | integer - postgis | public | geog_brin_inclusion_add_value | internal, internal, internal, internal | boolean - postgis | public | geography | bytea | geography - postgis | public | geography | geometry | geography - postgis | public | geography | geography, integer, boolean | geography - postgis | public | geography_analyze | internal | boolean - postgis | public | geography_cmp | geography, geography | integer - postgis | public | geography_distance_knn | geography, geography | double precision - postgis | public | geography_eq | geography, geography | boolean - postgis | public | geography_ge | geography, geography | boolean - postgis | public | geography_gist_compress | internal | internal - postgis | public | geography_gist_consistent | internal, geography, integer | boolean - postgis | public | geography_gist_decompress | internal | internal - postgis | public | geography_gist_distance | internal, geography, integer | double precision - postgis | public | geography_gist_penalty | internal, internal, internal | internal - postgis | public | geography_gist_picksplit | internal, internal | internal - postgis | public | geography_gist_same | box2d, box2d, internal | internal - postgis | public | geography_gist_union | bytea, internal | internal - postgis | public | geography_gt | geography, geography | boolean - postgis | public | geography_in | cstring, oid, integer | geography - postgis | public | geography_le | geography, geography | boolean - postgis | public | geography_lt | geography, geography | boolean - postgis | public | geography_out | geography | cstring - postgis | public | geography_overlaps | geography, geography | boolean - postgis | public | geography_recv | internal, oid, integer | geography - postgis | public | geography_send | geography | bytea - postgis | public | geography_spgist_choose_nd | internal, internal | void - postgis | public | geography_spgist_compress_nd | internal | internal - postgis | public | geography_spgist_config_nd | internal, internal | void - postgis | public | geography_spgist_inner_consistent_nd | internal, internal | void - postgis | public | geography_spgist_leaf_consistent_nd | internal, internal | boolean - postgis | public | geography_spgist_picksplit_nd | internal, internal | void - postgis | public | geography_typmod_in | cstring[] | integer - postgis | public | geography_typmod_out | integer | cstring - postgis | public | geom2d_brin_inclusion_add_value | internal, internal, internal, internal | boolean - postgis | public | geom3d_brin_inclusion_add_value | internal, internal, internal, internal | boolean - postgis | public | geom4d_brin_inclusion_add_value | internal, internal, internal, internal | boolean - postgis | public | geometry | geometry, integer, boolean | geometry - postgis | public | geometry | box3d | geometry - postgis | public | geometry | text | geometry - postgis | public | geometry | point | geometry - postgis | public | geometry | bytea | geometry - postgis | public | geometry | geography | geometry - postgis | public | geometry | path | geometry - postgis | public | geometry | polygon | geometry - postgis | public | geometry | box2d | geometry - postgis | public | geometry_above | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_analyze | internal | boolean - postgis | public | geometry_below | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_cmp | geom1 geometry, geom2 geometry | integer - postgis | public | geometry_contained_3d | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_contains | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_contains_3d | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_contains_nd | geometry, geometry | boolean - postgis | public | geometry_distance_box | geom1 geometry, geom2 geometry | double precision - postgis | public | geometry_distance_centroid | geom1 geometry, geom2 geometry | double precision - postgis | public | geometry_distance_centroid_nd | geometry, geometry | double precision - postgis | public | geometry_distance_cpa | geometry, geometry | double precision - postgis | public | geometry_eq | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_ge | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_gist_compress_2d | internal | internal - postgis | public | geometry_gist_compress_nd | internal | internal - postgis | public | geometry_gist_consistent_2d | internal, geometry, integer | boolean - postgis | public | geometry_gist_consistent_nd | internal, geometry, integer | boolean - postgis | public | geometry_gist_decompress_2d | internal | internal - postgis | public | geometry_gist_decompress_nd | internal | internal - postgis | public | geometry_gist_distance_2d | internal, geometry, integer | double precision - postgis | public | geometry_gist_distance_nd | internal, geometry, integer | double precision - postgis | public | geometry_gist_penalty_2d | internal, internal, internal | internal - postgis | public | geometry_gist_penalty_nd | internal, internal, internal | internal - postgis | public | geometry_gist_picksplit_2d | internal, internal | internal - postgis | public | geometry_gist_picksplit_nd | internal, internal | internal - postgis | public | geometry_gist_same_2d | geom1 geometry, geom2 geometry, internal | internal - postgis | public | geometry_gist_same_nd | geometry, geometry, internal | internal - postgis | public | geometry_gist_sortsupport_2d | internal | void - postgis | public | geometry_gist_union_2d | bytea, internal | internal - postgis | public | geometry_gist_union_nd | bytea, internal | internal - postgis | public | geometry_gt | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_hash | geometry | integer - postgis | public | geometry_in | cstring | geometry - postgis | public | geometry_le | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_left | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_lt | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_out | geometry | cstring - postgis | public | geometry_overabove | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_overbelow | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_overlaps | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_overlaps_3d | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_overlaps_nd | geometry, geometry | boolean - postgis | public | geometry_overleft | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_overright | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_recv | internal | geometry - postgis | public | geometry_right | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_same | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_same_3d | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_same_nd | geometry, geometry | boolean - postgis | public | geometry_send | geometry | bytea - postgis | public | geometry_sortsupport | internal | void - postgis | public | geometry_spgist_choose_2d | internal, internal | void - postgis | public | geometry_spgist_choose_3d | internal, internal | void - postgis | public | geometry_spgist_choose_nd | internal, internal | void - postgis | public | geometry_spgist_compress_2d | internal | internal - postgis | public | geometry_spgist_compress_3d | internal | internal - postgis | public | geometry_spgist_compress_nd | internal | internal - postgis | public | geometry_spgist_config_2d | internal, internal | void - postgis | public | geometry_spgist_config_3d | internal, internal | void - postgis | public | geometry_spgist_config_nd | internal, internal | void - postgis | public | geometry_spgist_inner_consistent_2d | internal, internal | void - postgis | public | geometry_spgist_inner_consistent_3d | internal, internal | void - postgis | public | geometry_spgist_inner_consistent_nd | internal, internal | void - postgis | public | geometry_spgist_leaf_consistent_2d | internal, internal | boolean - postgis | public | geometry_spgist_leaf_consistent_3d | internal, internal | boolean - postgis | public | geometry_spgist_leaf_consistent_nd | internal, internal | boolean - postgis | public | geometry_spgist_picksplit_2d | internal, internal | void - postgis | public | geometry_spgist_picksplit_3d | internal, internal | void - postgis | public | geometry_spgist_picksplit_nd | internal, internal | void - postgis | public | geometry_typmod_in | cstring[] | integer - postgis | public | geometry_typmod_out | integer | cstring - postgis | public | geometry_within | geom1 geometry, geom2 geometry | boolean - postgis | public | geometry_within_nd | geometry, geometry | boolean - postgis | public | geometrytype | geography | text - postgis | public | geometrytype | geometry | text - postgis | public | geomfromewkb | bytea | geometry - postgis | public | geomfromewkt | text | geometry - postgis | public | get_proj4_from_srid | integer | text - postgis | public | gettransactionid | | xid - postgis | public | gidx_in | cstring | gidx - postgis | public | gidx_out | gidx | cstring - postgis | public | gserialized_gist_joinsel_2d | internal, oid, internal, smallint | double precision - postgis | public | gserialized_gist_joinsel_nd | internal, oid, internal, smallint | double precision - postgis | public | gserialized_gist_sel_2d | internal, oid, internal, integer | double precision - postgis | public | gserialized_gist_sel_nd | internal, oid, internal, integer | double precision - postgis | public | is_contained_2d | geometry, box2df | boolean - postgis | public | is_contained_2d | box2df, geometry | boolean - postgis | public | is_contained_2d | box2df, box2df | boolean - postgis | public | json | geometry | json - postgis | public | jsonb | geometry | jsonb - postgis | public | lockrow | text, text, text, timestamp without time zone | integer - postgis | public | lockrow | text, text, text, text | integer - postgis | public | lockrow | text, text, text | integer - postgis | public | lockrow | text, text, text, text, timestamp without time zone | integer - postgis | public | longtransactionsenabled | | boolean - postgis | public | overlaps_2d | geometry, box2df | boolean - postgis | public | overlaps_2d | box2df, geometry | boolean - postgis | public | overlaps_2d | box2df, box2df | boolean - postgis | public | overlaps_geog | gidx, gidx | boolean - postgis | public | overlaps_geog | geography, gidx | boolean - postgis | public | overlaps_geog | gidx, geography | boolean - postgis | public | overlaps_nd | gidx, gidx | boolean - postgis | public | overlaps_nd | geometry, gidx | boolean - postgis | public | overlaps_nd | gidx, geometry | boolean - postgis | public | path | geometry | path - postgis | public | pgis_asflatgeobuf_finalfn | internal | bytea - postgis | public | pgis_asflatgeobuf_transfn | internal, anyelement, boolean | internal - postgis | public | pgis_asflatgeobuf_transfn | internal, anyelement | internal - postgis | public | pgis_asflatgeobuf_transfn | internal, anyelement, boolean, text | internal - postgis | public | pgis_asgeobuf_finalfn | internal | bytea - postgis | public | pgis_asgeobuf_transfn | internal, anyelement | internal - postgis | public | pgis_asgeobuf_transfn | internal, anyelement, text | internal - postgis | public | pgis_asmvt_combinefn | internal, internal | internal - postgis | public | pgis_asmvt_deserialfn | bytea, internal | internal - postgis | public | pgis_asmvt_finalfn | internal | bytea - postgis | public | pgis_asmvt_serialfn | internal | bytea - postgis | public | pgis_asmvt_transfn | internal, anyelement, text, integer, text | internal - postgis | public | pgis_asmvt_transfn | internal, anyelement | internal - postgis | public | pgis_asmvt_transfn | internal, anyelement, text, integer | internal - postgis | public | pgis_asmvt_transfn | internal, anyelement, text | internal - postgis | public | pgis_asmvt_transfn | internal, anyelement, text, integer, text, text | internal - postgis | public | pgis_geometry_accum_transfn | internal, geometry, double precision | internal - postgis | public | pgis_geometry_accum_transfn | internal, geometry | internal - postgis | public | pgis_geometry_accum_transfn | internal, geometry, double precision, integer | internal - postgis | public | pgis_geometry_clusterintersecting_finalfn | internal | geometry[] - postgis | public | pgis_geometry_clusterwithin_finalfn | internal | geometry[] - postgis | public | pgis_geometry_collect_finalfn | internal | geometry - postgis | public | pgis_geometry_makeline_finalfn | internal | geometry - postgis | public | pgis_geometry_polygonize_finalfn | internal | geometry - postgis | public | pgis_geometry_union_parallel_combinefn | internal, internal | internal - postgis | public | pgis_geometry_union_parallel_deserialfn | bytea, internal | internal - postgis | public | pgis_geometry_union_parallel_finalfn | internal | geometry - postgis | public | pgis_geometry_union_parallel_serialfn | internal | bytea - postgis | public | pgis_geometry_union_parallel_transfn | internal, geometry, double precision | internal - postgis | public | pgis_geometry_union_parallel_transfn | internal, geometry | internal - postgis | public | point | geometry | point - postgis | public | polygon | geometry | polygon - postgis | public | populate_geometry_columns | tbl_oid oid, use_typmod boolean | integer - postgis | public | populate_geometry_columns | use_typmod boolean | text - postgis | public | postgis_addbbox | geometry | geometry - postgis | public | postgis_cache_bbox | | trigger - postgis | public | postgis_constraint_dims | geomschema text, geomtable text, geomcolumn text | integer - postgis | public | postgis_constraint_srid | geomschema text, geomtable text, geomcolumn text | integer - postgis | public | postgis_constraint_type | geomschema text, geomtable text, geomcolumn text | character varying - postgis | public | postgis_dropbbox | geometry | geometry - postgis | public | postgis_extensions_upgrade | | text - postgis | public | postgis_full_version | | text - postgis | public | postgis_geos_noop | geometry | geometry - postgis | public | postgis_geos_version | | text - postgis | public | postgis_getbbox | geometry | box2d - postgis | public | postgis_hasbbox | geometry | boolean - postgis | public | postgis_index_supportfn | internal | internal - postgis | public | postgis_lib_build_date | | text - postgis | public | postgis_lib_revision | | text - postgis | public | postgis_lib_version | | text - postgis | public | postgis_libjson_version | | text - postgis | public | postgis_liblwgeom_version | | text - postgis | public | postgis_libprotobuf_version | | text - postgis | public | postgis_libxml_version | | text - postgis | public | postgis_noop | geometry | geometry - postgis | public | postgis_proj_version | | text - postgis | public | postgis_scripts_build_date | | text - postgis | public | postgis_scripts_installed | | text - postgis | public | postgis_scripts_released | | text - postgis | public | postgis_svn_version | | text - postgis | public | postgis_transform_geometry | geom geometry, text, text, integer | geometry - postgis | public | postgis_type_name | geomname character varying, coord_dimension integer, use_new_name boolean | character varying - postgis | public | postgis_typmod_dims | integer | integer - postgis | public | postgis_typmod_srid | integer | integer - postgis | public | postgis_typmod_type | integer | text - postgis | public | postgis_version | | text - postgis | public | postgis_wagyu_version | | text - postgis | public | spheroid_in | cstring | spheroid - postgis | public | spheroid_out | spheroid | cstring - postgis | public | st_3dclosestpoint | geom1 geometry, geom2 geometry | geometry - postgis | public | st_3ddfullywithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | st_3ddistance | geom1 geometry, geom2 geometry | double precision - postgis | public | st_3ddwithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | st_3dextent | geometry | box3d - postgis | public | st_3dintersects | geom1 geometry, geom2 geometry | boolean - postgis | public | st_3dlength | geometry | double precision - postgis | public | st_3dlineinterpolatepoint | geometry, double precision | geometry - postgis | public | st_3dlongestline | geom1 geometry, geom2 geometry | geometry - postgis | public | st_3dmakebox | geom1 geometry, geom2 geometry | box3d - postgis | public | st_3dmaxdistance | geom1 geometry, geom2 geometry | double precision - postgis | public | st_3dperimeter | geometry | double precision - postgis | public | st_3dshortestline | geom1 geometry, geom2 geometry | geometry - postgis | public | st_addmeasure | geometry, double precision, double precision | geometry - postgis | public | st_addpoint | geom1 geometry, geom2 geometry, integer | geometry - postgis | public | st_addpoint | geom1 geometry, geom2 geometry | geometry - postgis | public | st_affine | geometry, double precision, double precision, double precision, double precision, double precision, double precision | geometry - postgis | public | st_affine | geometry, double precision, double precision, double precision, double precision, double precision, double precision, double precision, double precision, double precision, double precision, double precision, double precision | geometry - postgis | public | st_angle | pt1 geometry, pt2 geometry, pt3 geometry, pt4 geometry | double precision - postgis | public | st_angle | line1 geometry, line2 geometry | double precision - postgis | public | st_area | geog geography, use_spheroid boolean | double precision - postgis | public | st_area | text | double precision - postgis | public | st_area | geometry | double precision - postgis | public | st_area2d | geometry | double precision - postgis | public | st_asbinary | geography | bytea - postgis | public | st_asbinary | geometry, text | bytea - postgis | public | st_asbinary | geometry | bytea - postgis | public | st_asbinary | geography, text | bytea - postgis | public | st_asencodedpolyline | geom geometry, nprecision integer | text - postgis | public | st_asewkb | geometry, text | bytea - postgis | public | st_asewkb | geometry | bytea - postgis | public | st_asewkt | text | text - postgis | public | st_asewkt | geography, integer | text - postgis | public | st_asewkt | geography | text - postgis | public | st_asewkt | geometry, integer | text - postgis | public | st_asewkt | geometry | text - postgis | public | st_asflatgeobuf | anyelement | bytea - postgis | public | st_asflatgeobuf | anyelement, boolean | bytea - postgis | public | st_asflatgeobuf | anyelement, boolean, text | bytea - postgis | public | st_asgeobuf | anyelement | bytea - postgis | public | st_asgeobuf | anyelement, text | bytea - postgis | public | st_asgeojson | text | text - postgis | public | st_asgeojson | geom geometry, maxdecimaldigits integer, options integer | text - postgis | public | st_asgeojson | geog geography, maxdecimaldigits integer, options integer | text - postgis | public | st_asgeojson | r record, geom_column text, maxdecimaldigits integer, pretty_bool boolean | text - postgis | public | st_asgml | text | text - postgis | public | st_asgml | version integer, geog geography, maxdecimaldigits integer, options integer, nprefix text, id text | text - postgis | public | st_asgml | geog geography, maxdecimaldigits integer, options integer, nprefix text, id text | text - postgis | public | st_asgml | geom geometry, maxdecimaldigits integer, options integer | text - postgis | public | st_asgml | version integer, geom geometry, maxdecimaldigits integer, options integer, nprefix text, id text | text - postgis | public | st_ashexewkb | geometry, text | text - postgis | public | st_ashexewkb | geometry | text - postgis | public | st_askml | text | text - postgis | public | st_askml | geom geometry, maxdecimaldigits integer, nprefix text | text - postgis | public | st_askml | geog geography, maxdecimaldigits integer, nprefix text | text - postgis | public | st_aslatlontext | geom geometry, tmpl text | text - postgis | public | st_asmarc21 | geom geometry, format text | text - postgis | public | st_asmvt | anyelement | bytea - postgis | public | st_asmvt | anyelement, text, integer, text, text | bytea - postgis | public | st_asmvt | anyelement, text, integer | bytea - postgis | public | st_asmvt | anyelement, text | bytea - postgis | public | st_asmvt | anyelement, text, integer, text | bytea - postgis | public | st_asmvtgeom | geom geometry, bounds box2d, extent integer, buffer integer, clip_geom boolean | geometry - postgis | public | st_assvg | geog geography, rel integer, maxdecimaldigits integer | text - postgis | public | st_assvg | geom geometry, rel integer, maxdecimaldigits integer | text - postgis | public | st_assvg | text | text - postgis | public | st_astext | text | text - postgis | public | st_astext | geography, integer | text - postgis | public | st_astext | geography | text - postgis | public | st_astext | geometry, integer | text - postgis | public | st_astext | geometry | text - postgis | public | st_astwkb | geom geometry[], ids bigint[], prec integer, prec_z integer, prec_m integer, with_sizes boolean, with_boxes boolean | bytea - postgis | public | st_astwkb | geom geometry, prec integer, prec_z integer, prec_m integer, with_sizes boolean, with_boxes boolean | bytea - postgis | public | st_asx3d | geom geometry, maxdecimaldigits integer, options integer | text - postgis | public | st_azimuth | geom1 geometry, geom2 geometry | double precision - postgis | public | st_azimuth | geog1 geography, geog2 geography | double precision - postgis | public | st_bdmpolyfromtext | text, integer | geometry - postgis | public | st_bdpolyfromtext | text, integer | geometry - postgis | public | st_boundary | geometry | geometry - postgis | public | st_boundingdiagonal | geom geometry, fits boolean | geometry - postgis | public | st_box2dfromgeohash | text, integer | box2d - postgis | public | st_buffer | geom geometry, radius double precision, options text | geometry - postgis | public | st_buffer | geography, double precision, text | geography - postgis | public | st_buffer | geography, double precision, integer | geography - postgis | public | st_buffer | geom geometry, radius double precision, quadsegs integer | geometry - postgis | public | st_buffer | text, double precision, text | geometry - postgis | public | st_buffer | geography, double precision | geography - postgis | public | st_buffer | text, double precision, integer | geometry - postgis | public | st_buffer | text, double precision | geometry - postgis | public | st_buildarea | geometry | geometry - postgis | public | st_centroid | text | geometry - postgis | public | st_centroid | geography, use_spheroid boolean | geography - postgis | public | st_centroid | geometry | geometry - postgis | public | st_chaikinsmoothing | geometry, integer, boolean | geometry - postgis | public | st_cleangeometry | geometry | geometry - postgis | public | st_clipbybox2d | geom geometry, box box2d | geometry - postgis | public | st_closestpoint | geom1 geometry, geom2 geometry | geometry - postgis | public | st_closestpointofapproach | geometry, geometry | double precision - postgis | public | st_clusterdbscan | geometry, eps double precision, minpoints integer | integer - postgis | public | st_clusterintersecting | geometry[] | geometry[] - postgis | public | st_clusterintersecting | geometry | geometry[] - postgis | public | st_clusterkmeans | geom geometry, k integer, max_radius double precision | integer - postgis | public | st_clusterwithin | geometry[], double precision | geometry[] - postgis | public | st_clusterwithin | geometry, double precision | geometry[] - postgis | public | st_collect | geom1 geometry, geom2 geometry | geometry - postgis | public | st_collect | geometry[] | geometry - postgis | public | st_collect | geometry | geometry - postgis | public | st_collectionextract | geometry, integer | geometry - postgis | public | st_collectionextract | geometry | geometry - postgis | public | st_collectionhomogenize | geometry | geometry - postgis | public | st_combinebbox | box2d, geometry | box2d - postgis | public | st_combinebbox | box3d, geometry | box3d - postgis | public | st_combinebbox | box3d, box3d | box3d - postgis | public | st_concavehull | param_geom geometry, param_pctconvex double precision, param_allow_holes boolean | geometry - postgis | public | st_contains | geom1 geometry, geom2 geometry | boolean - postgis | public | st_containsproperly | geom1 geometry, geom2 geometry | boolean - postgis | public | st_convexhull | geometry | geometry - postgis | public | st_coorddim | geometry geometry | smallint - postgis | public | st_coveredby | geom1 geometry, geom2 geometry | boolean - postgis | public | st_coveredby | text, text | boolean - postgis | public | st_coveredby | geog1 geography, geog2 geography | boolean - postgis | public | st_covers | geom1 geometry, geom2 geometry | boolean - postgis | public | st_covers | text, text | boolean - postgis | public | st_covers | geog1 geography, geog2 geography | boolean - postgis | public | st_cpawithin | geometry, geometry, double precision | boolean - postgis | public | st_crosses | geom1 geometry, geom2 geometry | boolean - postgis | public | st_curvetoline | geom geometry, tol double precision, toltype integer, flags integer | geometry - postgis | public | st_delaunaytriangles | g1 geometry, tolerance double precision, flags integer | geometry - postgis | public | st_dfullywithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | st_difference | geom1 geometry, geom2 geometry, gridsize double precision | geometry - postgis | public | st_dimension | geometry | integer - postgis | public | st_disjoint | geom1 geometry, geom2 geometry | boolean - postgis | public | st_distance | geom1 geometry, geom2 geometry | double precision - postgis | public | st_distance | text, text | double precision - postgis | public | st_distance | geog1 geography, geog2 geography, use_spheroid boolean | double precision - postgis | public | st_distancecpa | geometry, geometry | double precision - postgis | public | st_distancesphere | geom1 geometry, geom2 geometry | double precision - postgis | public | st_distancesphere | geom1 geometry, geom2 geometry, radius double precision | double precision - postgis | public | st_distancespheroid | geom1 geometry, geom2 geometry, spheroid | double precision - postgis | public | st_distancespheroid | geom1 geometry, geom2 geometry | double precision - postgis | public | st_dump | geometry | SETOF geometry_dump - postgis | public | st_dumppoints | geometry | SETOF geometry_dump - postgis | public | st_dumprings | geometry | SETOF geometry_dump - postgis | public | st_dumpsegments | geometry | SETOF geometry_dump - postgis | public | st_dwithin | text, text, double precision | boolean - postgis | public | st_dwithin | geog1 geography, geog2 geography, tolerance double precision, use_spheroid boolean | boolean - postgis | public | st_dwithin | geom1 geometry, geom2 geometry, double precision | boolean - postgis | public | st_endpoint | geometry | geometry - postgis | public | st_envelope | geometry | geometry - postgis | public | st_equals | geom1 geometry, geom2 geometry | boolean - postgis | public | st_estimatedextent | text, text, text, boolean | box2d - postgis | public | st_estimatedextent | text, text | box2d - postgis | public | st_estimatedextent | text, text, text | box2d - postgis | public | st_expand | box3d, double precision | box3d - postgis | public | st_expand | box box3d, dx double precision, dy double precision, dz double precision | box3d - postgis | public | st_expand | box2d, double precision | box2d - postgis | public | st_expand | box box2d, dx double precision, dy double precision | box2d - postgis | public | st_expand | geometry, double precision | geometry - postgis | public | st_expand | geom geometry, dx double precision, dy double precision, dz double precision, dm double precision | geometry - postgis | public | st_extent | geometry | box2d - postgis | public | st_exteriorring | geometry | geometry - postgis | public | st_filterbym | geometry, double precision, double precision, boolean | geometry - postgis | public | st_findextent | text, text | box2d - postgis | public | st_findextent | text, text, text | box2d - postgis | public | st_flipcoordinates | geometry | geometry - postgis | public | st_force2d | geometry | geometry - postgis | public | st_force3d | geom geometry, zvalue double precision | geometry - postgis | public | st_force3dm | geom geometry, mvalue double precision | geometry - postgis | public | st_force3dz | geom geometry, zvalue double precision | geometry - postgis | public | st_force4d | geom geometry, zvalue double precision, mvalue double precision | geometry - postgis | public | st_forcecollection | geometry | geometry - postgis | public | st_forcecurve | geometry | geometry - postgis | public | st_forcepolygonccw | geometry | geometry - postgis | public | st_forcepolygoncw | geometry | geometry - postgis | public | st_forcerhr | geometry | geometry - postgis | public | st_forcesfs | geometry, version text | geometry - postgis | public | st_forcesfs | geometry | geometry - postgis | public | st_frechetdistance | geom1 geometry, geom2 geometry, double precision | double precision - postgis | public | st_fromflatgeobuf | anyelement, bytea | SETOF anyelement - postgis | public | st_fromflatgeobuftotable | text, text, bytea | void - postgis | public | st_generatepoints | area geometry, npoints integer, seed integer | geometry - postgis | public | st_generatepoints | area geometry, npoints integer | geometry - postgis | public | st_geogfromtext | text | geography - postgis | public | st_geogfromwkb | bytea | geography - postgis | public | st_geographyfromtext | text | geography - postgis | public | st_geohash | geog geography, maxchars integer | text - postgis | public | st_geohash | geom geometry, maxchars integer | text - postgis | public | st_geomcollfromtext | text | geometry - postgis | public | st_geomcollfromtext | text, integer | geometry - postgis | public | st_geomcollfromwkb | bytea, integer | geometry - postgis | public | st_geomcollfromwkb | bytea | geometry - postgis | public | st_geometricmedian | g geometry, tolerance double precision, max_iter integer, fail_if_not_converged boolean | geometry - postgis | public | st_geometryfromtext | text | geometry - postgis | public | st_geometryfromtext | text, integer | geometry - postgis | public | st_geometryn | geometry, integer | geometry - postgis | public | st_geometrytype | geometry | text - postgis | public | st_geomfromewkb | bytea | geometry - postgis | public | st_geomfromewkt | text | geometry - postgis | public | st_geomfromgeohash | text, integer | geometry - postgis | public | st_geomfromgeojson | text | geometry - postgis | public | st_geomfromgeojson | json | geometry - postgis | public | st_geomfromgeojson | jsonb | geometry - postgis | public | st_geomfromgml | text | geometry - postgis | public | st_geomfromgml | text, integer | geometry - postgis | public | st_geomfromkml | text | geometry - postgis | public | st_geomfrommarc21 | marc21xml text | geometry - postgis | public | st_geomfromtext | text | geometry - postgis | public | st_geomfromtext | text, integer | geometry - postgis | public | st_geomfromtwkb | bytea | geometry - postgis | public | st_geomfromwkb | bytea, integer | geometry - postgis | public | st_geomfromwkb | bytea | geometry - postgis | public | st_gmltosql | text | geometry - postgis | public | st_gmltosql | text, integer | geometry - postgis | public | st_hasarc | geometry geometry | boolean - postgis | public | st_hausdorffdistance | geom1 geometry, geom2 geometry | double precision - postgis | public | st_hausdorffdistance | geom1 geometry, geom2 geometry, double precision | double precision - postgis | public | st_hexagon | size double precision, cell_i integer, cell_j integer, origin geometry | geometry - postgis | public | st_hexagongrid | size double precision, bounds geometry, OUT geom geometry, OUT i integer, OUT j integer | SETOF record - postgis | public | st_interiorringn | geometry, integer | geometry - postgis | public | st_interpolatepoint | line geometry, point geometry | double precision - postgis | public | st_intersection | geom1 geometry, geom2 geometry, gridsize double precision | geometry - postgis | public | st_intersection | text, text | geometry - postgis | public | st_intersection | geography, geography | geography - postgis | public | st_intersects | geom1 geometry, geom2 geometry | boolean - postgis | public | st_intersects | text, text | boolean - postgis | public | st_intersects | geog1 geography, geog2 geography | boolean - postgis | public | st_isclosed | geometry | boolean - postgis | public | st_iscollection | geometry | boolean - postgis | public | st_isempty | geometry | boolean - postgis | public | st_ispolygonccw | geometry | boolean - postgis | public | st_ispolygoncw | geometry | boolean - postgis | public | st_isring | geometry | boolean - postgis | public | st_issimple | geometry | boolean - postgis | public | st_isvalid | geometry, integer | boolean - postgis | public | st_isvalid | geometry | boolean - postgis | public | st_isvaliddetail | geom geometry, flags integer | valid_detail - postgis | public | st_isvalidreason | geometry, integer | text - postgis | public | st_isvalidreason | geometry | text - postgis | public | st_isvalidtrajectory | geometry | boolean - postgis | public | st_length | geog geography, use_spheroid boolean | double precision - postgis | public | st_length | text | double precision - postgis | public | st_length | geometry | double precision - postgis | public | st_length2d | geometry | double precision - postgis | public | st_length2dspheroid | geometry, spheroid | double precision - postgis | public | st_lengthspheroid | geometry, spheroid | double precision - postgis | public | st_letters | letters text, font json | geometry - postgis | public | st_linecrossingdirection | line1 geometry, line2 geometry | integer - postgis | public | st_linefromencodedpolyline | txtin text, nprecision integer | geometry - postgis | public | st_linefrommultipoint | geometry | geometry - postgis | public | st_linefromtext | text | geometry - postgis | public | st_linefromtext | text, integer | geometry - postgis | public | st_linefromwkb | bytea, integer | geometry - postgis | public | st_linefromwkb | bytea | geometry - postgis | public | st_lineinterpolatepoint | geometry, double precision | geometry - postgis | public | st_lineinterpolatepoints | geometry, double precision, repeat boolean | geometry - postgis | public | st_linelocatepoint | geom1 geometry, geom2 geometry | double precision - postgis | public | st_linemerge | geometry, boolean | geometry - postgis | public | st_linemerge | geometry | geometry - postgis | public | st_linestringfromwkb | bytea, integer | geometry - postgis | public | st_linestringfromwkb | bytea | geometry - postgis | public | st_linesubstring | geometry, double precision, double precision | geometry - postgis | public | st_linetocurve | geometry geometry | geometry - postgis | public | st_locatealong | geometry geometry, measure double precision, leftrightoffset double precision | geometry - postgis | public | st_locatebetween | geometry geometry, frommeasure double precision, tomeasure double precision, leftrightoffset double precision | geometry - postgis | public | st_locatebetweenelevations | geometry geometry, fromelevation double precision, toelevation double precision | geometry - postgis | public | st_longestline | geom1 geometry, geom2 geometry | geometry - postgis | public | st_m | geometry | double precision - postgis | public | st_makebox2d | geom1 geometry, geom2 geometry | box2d - postgis | public | st_makeenvelope | double precision, double precision, double precision, double precision, integer | geometry - postgis | public | st_makeline | geom1 geometry, geom2 geometry | geometry - postgis | public | st_makeline | geometry[] | geometry - postgis | public | st_makeline | geometry | geometry - postgis | public | st_makepoint | double precision, double precision, double precision, double precision | geometry - postgis | public | st_makepoint | double precision, double precision | geometry - postgis | public | st_makepoint | double precision, double precision, double precision | geometry - postgis | public | st_makepointm | double precision, double precision, double precision | geometry - postgis | public | st_makepolygon | geometry, geometry[] | geometry - postgis | public | st_makepolygon | geometry | geometry - postgis | public | st_makevalid | geom geometry, params text | geometry - postgis | public | st_makevalid | geometry | geometry - postgis | public | st_maxdistance | geom1 geometry, geom2 geometry | double precision - postgis | public | st_maximuminscribedcircle | geometry, OUT center geometry, OUT nearest geometry, OUT radius double precision | record - postgis | public | st_memcollect | geometry | geometry - postgis | public | st_memsize | geometry | integer - postgis | public | st_memunion | geometry | geometry - postgis | public | st_minimumboundingcircle | inputgeom geometry, segs_per_quarter integer | geometry - postgis | public | st_minimumboundingradius | geometry, OUT center geometry, OUT radius double precision | record - postgis | public | st_minimumclearance | geometry | double precision - postgis | public | st_minimumclearanceline | geometry | geometry - postgis | public | st_mlinefromtext | text | geometry - postgis | public | st_mlinefromtext | text, integer | geometry - postgis | public | st_mlinefromwkb | bytea, integer | geometry - postgis | public | st_mlinefromwkb | bytea | geometry - postgis | public | st_mpointfromtext | text | geometry - postgis | public | st_mpointfromtext | text, integer | geometry - postgis | public | st_mpointfromwkb | bytea, integer | geometry - postgis | public | st_mpointfromwkb | bytea | geometry - postgis | public | st_mpolyfromtext | text | geometry - postgis | public | st_mpolyfromtext | text, integer | geometry - postgis | public | st_mpolyfromwkb | bytea, integer | geometry - postgis | public | st_mpolyfromwkb | bytea | geometry - postgis | public | st_multi | geometry | geometry - postgis | public | st_multilinefromwkb | bytea | geometry - postgis | public | st_multilinestringfromtext | text | geometry - postgis | public | st_multilinestringfromtext | text, integer | geometry - postgis | public | st_multipointfromtext | text | geometry - postgis | public | st_multipointfromwkb | bytea, integer | geometry - postgis | public | st_multipointfromwkb | bytea | geometry - postgis | public | st_multipolyfromwkb | bytea, integer | geometry - postgis | public | st_multipolyfromwkb | bytea | geometry - postgis | public | st_multipolygonfromtext | text | geometry - postgis | public | st_multipolygonfromtext | text, integer | geometry - postgis | public | st_ndims | geometry | smallint - postgis | public | st_node | g geometry | geometry - postgis | public | st_normalize | geom geometry | geometry - postgis | public | st_npoints | geometry | integer - postgis | public | st_nrings | geometry | integer - postgis | public | st_numgeometries | geometry | integer - postgis | public | st_numinteriorring | geometry | integer - postgis | public | st_numinteriorrings | geometry | integer - postgis | public | st_numpatches | geometry | integer - postgis | public | st_numpoints | geometry | integer - postgis | public | st_offsetcurve | line geometry, distance double precision, params text | geometry - postgis | public | st_orderingequals | geom1 geometry, geom2 geometry | boolean - postgis | public | st_orientedenvelope | geometry | geometry - postgis | public | st_overlaps | geom1 geometry, geom2 geometry | boolean - postgis | public | st_patchn | geometry, integer | geometry - postgis | public | st_perimeter | geog geography, use_spheroid boolean | double precision - postgis | public | st_perimeter | geometry | double precision - postgis | public | st_perimeter2d | geometry | double precision - postgis | public | st_point | double precision, double precision, srid integer | geometry - postgis | public | st_point | double precision, double precision | geometry - postgis | public | st_pointfromgeohash | text, integer | geometry - postgis | public | st_pointfromtext | text | geometry - postgis | public | st_pointfromtext | text, integer | geometry - postgis | public | st_pointfromwkb | bytea, integer | geometry - postgis | public | st_pointfromwkb | bytea | geometry - postgis | public | st_pointinsidecircle | geometry, double precision, double precision, double precision | boolean - postgis | public | st_pointm | xcoordinate double precision, ycoordinate double precision, mcoordinate double precision, srid integer | geometry - postgis | public | st_pointn | geometry, integer | geometry - postgis | public | st_pointonsurface | geometry | geometry - postgis | public | st_points | geometry | geometry - postgis | public | st_pointz | xcoordinate double precision, ycoordinate double precision, zcoordinate double precision, srid integer | geometry - postgis | public | st_pointzm | xcoordinate double precision, ycoordinate double precision, zcoordinate double precision, mcoordinate double precision, srid integer | geometry - postgis | public | st_polyfromtext | text | geometry - postgis | public | st_polyfromtext | text, integer | geometry - postgis | public | st_polyfromwkb | bytea, integer | geometry - postgis | public | st_polyfromwkb | bytea | geometry - postgis | public | st_polygon | geometry, integer | geometry - postgis | public | st_polygonfromtext | text | geometry - postgis | public | st_polygonfromtext | text, integer | geometry - postgis | public | st_polygonfromwkb | bytea, integer | geometry - postgis | public | st_polygonfromwkb | bytea | geometry - postgis | public | st_polygonize | geometry[] | geometry - postgis | public | st_polygonize | geometry | geometry - postgis | public | st_project | geog geography, distance double precision, azimuth double precision | geography - postgis | public | st_quantizecoordinates | g geometry, prec_x integer, prec_y integer, prec_z integer, prec_m integer | geometry - postgis | public | st_reduceprecision | geom geometry, gridsize double precision | geometry - postgis | public | st_relate | geom1 geometry, geom2 geometry, integer | text - postgis | public | st_relate | geom1 geometry, geom2 geometry | text - postgis | public | st_relate | geom1 geometry, geom2 geometry, text | boolean - postgis | public | st_relatematch | text, text | boolean - postgis | public | st_removepoint | geometry, integer | geometry - postgis | public | st_removerepeatedpoints | geom geometry, tolerance double precision | geometry - postgis | public | st_reverse | geometry | geometry - postgis | public | st_rotate | geometry, double precision, geometry | geometry - postgis | public | st_rotate | geometry, double precision, double precision, double precision | geometry - postgis | public | st_rotate | geometry, double precision | geometry - postgis | public | st_rotatex | geometry, double precision | geometry - postgis | public | st_rotatey | geometry, double precision | geometry - postgis | public | st_rotatez | geometry, double precision | geometry - postgis | public | st_scale | geometry, double precision, double precision | geometry - postgis | public | st_scale | geometry, double precision, double precision, double precision | geometry - postgis | public | st_scale | geometry, geometry, origin geometry | geometry - postgis | public | st_scale | geometry, geometry | geometry - postgis | public | st_scroll | geometry, geometry | geometry - postgis | public | st_segmentize | geog geography, max_segment_length double precision | geography - postgis | public | st_segmentize | geometry, double precision | geometry - postgis | public | st_seteffectivearea | geometry, double precision, integer | geometry - postgis | public | st_setpoint | geometry, integer, geometry | geometry - postgis | public | st_setsrid | geog geography, srid integer | geography - postgis | public | st_setsrid | geom geometry, srid integer | geometry - postgis | public | st_sharedpaths | geom1 geometry, geom2 geometry | geometry - postgis | public | st_shiftlongitude | geometry | geometry - postgis | public | st_shortestline | geom1 geometry, geom2 geometry | geometry - postgis | public | st_simplify | geometry, double precision, boolean | geometry - postgis | public | st_simplify | geometry, double precision | geometry - postgis | public | st_simplifypolygonhull | geom geometry, vertex_fraction double precision, is_outer boolean | geometry - postgis | public | st_simplifypreservetopology | geometry, double precision | geometry - postgis | public | st_simplifyvw | geometry, double precision | geometry - postgis | public | st_snap | geom1 geometry, geom2 geometry, double precision | geometry - postgis | public | st_snaptogrid | geometry, double precision, double precision | geometry - postgis | public | st_snaptogrid | geom1 geometry, geom2 geometry, double precision, double precision, double precision, double precision | geometry - postgis | public | st_snaptogrid | geometry, double precision, double precision, double precision, double precision | geometry - postgis | public | st_snaptogrid | geometry, double precision | geometry - postgis | public | st_split | geom1 geometry, geom2 geometry | geometry - postgis | public | st_square | size double precision, cell_i integer, cell_j integer, origin geometry | geometry - postgis | public | st_squaregrid | size double precision, bounds geometry, OUT geom geometry, OUT i integer, OUT j integer | SETOF record - postgis | public | st_srid | geog geography | integer - postgis | public | st_srid | geom geometry | integer - postgis | public | st_startpoint | geometry | geometry - postgis | public | st_subdivide | geom geometry, maxvertices integer, gridsize double precision | SETOF geometry - postgis | public | st_summary | geography | text - postgis | public | st_summary | geometry | text - postgis | public | st_swapordinates | geom geometry, ords cstring | geometry - postgis | public | st_symdifference | geom1 geometry, geom2 geometry, gridsize double precision | geometry - postgis | public | st_symmetricdifference | geom1 geometry, geom2 geometry | geometry - postgis | public | st_tileenvelope | zoom integer, x integer, y integer, bounds geometry, margin double precision | geometry - postgis | public | st_touches | geom1 geometry, geom2 geometry | boolean - postgis | public | st_transform | geom geometry, to_proj text | geometry - postgis | public | st_transform | geom geometry, from_proj text, to_srid integer | geometry - postgis | public | st_transform | geometry, integer | geometry - postgis | public | st_transform | geom geometry, from_proj text, to_proj text | geometry - postgis | public | st_translate | geometry, double precision, double precision | geometry - postgis | public | st_translate | geometry, double precision, double precision, double precision | geometry - postgis | public | st_transscale | geometry, double precision, double precision, double precision, double precision | geometry - postgis | public | st_triangulatepolygon | g1 geometry | geometry - postgis | public | st_unaryunion | geometry, gridsize double precision | geometry - postgis | public | st_union | geom1 geometry, geom2 geometry, gridsize double precision | geometry - postgis | public | st_union | geom1 geometry, geom2 geometry | geometry - postgis | public | st_union | geometry[] | geometry - postgis | public | st_union | geometry, gridsize double precision | geometry - postgis | public | st_union | geometry | geometry - postgis | public | st_voronoilines | g1 geometry, tolerance double precision, extend_to geometry | geometry - postgis | public | st_voronoipolygons | g1 geometry, tolerance double precision, extend_to geometry | geometry - postgis | public | st_within | geom1 geometry, geom2 geometry | boolean - postgis | public | st_wkbtosql | wkb bytea | geometry - postgis | public | st_wkttosql | text | geometry - postgis | public | st_wrapx | geom geometry, wrap double precision, move double precision | geometry - postgis | public | st_x | geometry | double precision - postgis | public | st_xmax | box3d | double precision - postgis | public | st_xmin | box3d | double precision - postgis | public | st_y | geometry | double precision - postgis | public | st_ymax | box3d | double precision - postgis | public | st_ymin | box3d | double precision - postgis | public | st_z | geometry | double precision - postgis | public | st_zmax | box3d | double precision - postgis | public | st_zmflag | geometry | smallint - postgis | public | st_zmin | box3d | double precision - postgis | public | text | geometry | text - postgis | public | unlockrows | text | integer - postgis | public | updategeometrysrid | catalogn_name character varying, schema_name character varying, table_name character varying, column_name character varying, new_srid_in integer | text - postgis | public | updategeometrysrid | character varying, character varying, character varying, integer | text - postgis | public | updategeometrysrid | character varying, character varying, integer | text - postgis_raster | public | __st_countagg_transfn | agg agg_count, rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision | agg_count - postgis_raster | public | _add_overview_constraint | ovschema name, ovtable name, ovcolumn name, refschema name, reftable name, refcolumn name, factor integer | boolean - postgis_raster | public | _add_raster_constraint | cn name, sql text | boolean - postgis_raster | public | _add_raster_constraint_alignment | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_blocksize | rastschema name, rasttable name, rastcolumn name, axis text | boolean - postgis_raster | public | _add_raster_constraint_coverage_tile | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_extent | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_nodata_values | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_num_bands | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_out_db | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_pixel_types | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_scale | rastschema name, rasttable name, rastcolumn name, axis character | boolean - postgis_raster | public | _add_raster_constraint_spatially_unique | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _add_raster_constraint_srid | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_overview_constraint | ovschema name, ovtable name, ovcolumn name | boolean - postgis_raster | public | _drop_raster_constraint | rastschema name, rasttable name, cn name | boolean - postgis_raster | public | _drop_raster_constraint_alignment | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_blocksize | rastschema name, rasttable name, rastcolumn name, axis text | boolean - postgis_raster | public | _drop_raster_constraint_coverage_tile | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_extent | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_nodata_values | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_num_bands | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_out_db | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_pixel_types | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_regular_blocking | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_scale | rastschema name, rasttable name, rastcolumn name, axis character | boolean - postgis_raster | public | _drop_raster_constraint_spatially_unique | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _drop_raster_constraint_srid | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _overview_constraint | ov raster, factor integer, refschema name, reftable name, refcolumn name | boolean - postgis_raster | public | _overview_constraint_info | ovschema name, ovtable name, ovcolumn name, OUT refschema name, OUT reftable name, OUT refcolumn name, OUT factor integer | record - postgis_raster | public | _raster_constraint_info_alignment | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _raster_constraint_info_blocksize | rastschema name, rasttable name, rastcolumn name, axis text | integer - postgis_raster | public | _raster_constraint_info_coverage_tile | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _raster_constraint_info_extent | rastschema name, rasttable name, rastcolumn name | geometry - postgis_raster | public | _raster_constraint_info_index | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _raster_constraint_info_nodata_values | rastschema name, rasttable name, rastcolumn name | double precision[] - postgis_raster | public | _raster_constraint_info_num_bands | rastschema name, rasttable name, rastcolumn name | integer - postgis_raster | public | _raster_constraint_info_out_db | rastschema name, rasttable name, rastcolumn name | boolean[] - postgis_raster | public | _raster_constraint_info_pixel_types | rastschema name, rasttable name, rastcolumn name | text[] - postgis_raster | public | _raster_constraint_info_regular_blocking | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _raster_constraint_info_scale | rastschema name, rasttable name, rastcolumn name, axis character | double precision - postgis_raster | public | _raster_constraint_info_spatially_unique | rastschema name, rasttable name, rastcolumn name | boolean - postgis_raster | public | _raster_constraint_info_srid | rastschema name, rasttable name, rastcolumn name | integer - postgis_raster | public | _raster_constraint_nodata_values | rast raster | numeric[] - postgis_raster | public | _raster_constraint_out_db | rast raster | boolean[] - postgis_raster | public | _raster_constraint_pixel_types | rast raster | text[] - postgis_raster | public | _st_aspect4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_asraster | geom geometry, scalex double precision, scaley double precision, width integer, height integer, pixeltype text[], value double precision[], nodataval double precision[], upperleftx double precision, upperlefty double precision, gridx double precision, gridy double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | _st_clip | rast raster, nband integer[], geom geometry, nodataval double precision[], crop boolean | raster - postgis_raster | public | _st_colormap | rast raster, nband integer, colormap text, method text | raster - postgis_raster | public | _st_contains | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_containsproperly | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_convertarray4ma | value double precision[] | double precision[] - postgis_raster | public | _st_count | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision | bigint - postgis_raster | public | _st_countagg_finalfn | agg agg_count | bigint - postgis_raster | public | _st_countagg_transfn | agg agg_count, rast raster, nband integer, exclude_nodata_value boolean | agg_count - postgis_raster | public | _st_countagg_transfn | agg agg_count, rast raster, exclude_nodata_value boolean | agg_count - postgis_raster | public | _st_countagg_transfn | agg agg_count, rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision | agg_count - postgis_raster | public | _st_coveredby | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_covers | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_dfullywithin | rast1 raster, nband1 integer, rast2 raster, nband2 integer, distance double precision | boolean - postgis_raster | public | _st_dwithin | rast1 raster, nband1 integer, rast2 raster, nband2 integer, distance double precision | boolean - postgis_raster | public | _st_gdalwarp | rast raster, algorithm text, maxerr double precision, srid integer, scalex double precision, scaley double precision, gridx double precision, gridy double precision, skewx double precision, skewy double precision, width integer, height integer | raster - postgis_raster | public | _st_grayscale4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_hillshade4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_histogram | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision, bins integer, width double precision[], "right" boolean, min double precision, max double precision, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | _st_intersects | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_intersects | geom geometry, rast raster, nband integer | boolean - postgis_raster | public | _st_mapalgebra | rastbandargset rastbandarg[], expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision | raster - postgis_raster | public | _st_mapalgebra | rastbandargset rastbandarg[], callbackfunc regprocedure, pixeltype text, distancex integer, distancey integer, extenttype text, customextent raster, mask double precision[], weighted boolean, VARIADIC userargs text[] | raster - postgis_raster | public | _st_neighborhood | rast raster, band integer, columnx integer, rowy integer, distancex integer, distancey integer, exclude_nodata_value boolean | double precision[] - postgis_raster | public | _st_overlaps | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_pixelascentroids | rast raster, band integer, columnx integer, rowy integer, exclude_nodata_value boolean | TABLE(geom geometry, val double precision, x integer, y integer) - postgis_raster | public | _st_pixelaspolygons | rast raster, band integer, columnx integer, rowy integer, exclude_nodata_value boolean | TABLE(geom geometry, val double precision, x integer, y integer) - postgis_raster | public | _st_quantile | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | _st_rastertoworldcoord | rast raster, columnx integer, rowy integer, OUT longitude double precision, OUT latitude double precision | record - postgis_raster | public | _st_reclass | rast raster, VARIADIC reclassargset reclassarg[] | raster - postgis_raster | public | _st_roughness4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_samealignment_finalfn | agg agg_samealignment | boolean - postgis_raster | public | _st_samealignment_transfn | agg agg_samealignment, rast raster | agg_samealignment - postgis_raster | public | _st_setvalues | rast raster, nband integer, x integer, y integer, newvalueset double precision[], noset boolean[], hasnosetvalue boolean, nosetvalue double precision, keepnodata boolean | raster - postgis_raster | public | _st_slope4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_summarystats | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision | summarystats - postgis_raster | public | _st_summarystats_finalfn | internal | summarystats - postgis_raster | public | _st_summarystats_transfn | internal, raster, integer, boolean, double precision | internal - postgis_raster | public | _st_summarystats_transfn | internal, raster, boolean, double precision | internal - postgis_raster | public | _st_summarystats_transfn | internal, raster, integer, boolean | internal - postgis_raster | public | _st_tile | rast raster, width integer, height integer, nband integer[], padwithnodata boolean, nodataval double precision | SETOF raster - postgis_raster | public | _st_touches | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_tpi4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_tri4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | _st_union_finalfn | internal | raster - postgis_raster | public | _st_union_transfn | internal, raster, integer, text | internal - postgis_raster | public | _st_union_transfn | internal, raster | internal - postgis_raster | public | _st_union_transfn | internal, raster, text | internal - postgis_raster | public | _st_union_transfn | internal, raster, integer | internal - postgis_raster | public | _st_union_transfn | internal, raster, unionarg[] | internal - postgis_raster | public | _st_valuecount | rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer, OUT percent double precision | SETOF record - postgis_raster | public | _st_valuecount | rast raster, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer, OUT percent double precision | SETOF record - postgis_raster | public | _st_within | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | _st_worldtorastercoord | rast raster, longitude double precision, latitude double precision, OUT columnx integer, OUT rowy integer | record - postgis_raster | public | _updaterastersrid | schema_name name, table_name name, column_name name, new_srid integer | boolean - postgis_raster | public | addoverviewconstraints | ovschema name, ovtable name, ovcolumn name, refschema name, reftable name, refcolumn name, ovfactor integer | boolean - postgis_raster | public | addoverviewconstraints | ovtable name, ovcolumn name, reftable name, refcolumn name, ovfactor integer | boolean - postgis_raster | public | addrasterconstraints | rastschema name, rasttable name, rastcolumn name, srid boolean, scale_x boolean, scale_y boolean, blocksize_x boolean, blocksize_y boolean, same_alignment boolean, regular_blocking boolean, num_bands boolean, pixel_types boolean, nodata_values boolean, out_db boolean, extent boolean | boolean - postgis_raster | public | addrasterconstraints | rasttable name, rastcolumn name, VARIADIC constraints text[] | boolean - postgis_raster | public | addrasterconstraints | rastschema name, rasttable name, rastcolumn name, VARIADIC constraints text[] | boolean - postgis_raster | public | addrasterconstraints | rasttable name, rastcolumn name, srid boolean, scale_x boolean, scale_y boolean, blocksize_x boolean, blocksize_y boolean, same_alignment boolean, regular_blocking boolean, num_bands boolean, pixel_types boolean, nodata_values boolean, out_db boolean, extent boolean | boolean - postgis_raster | public | box3d | raster | box3d - postgis_raster | public | bytea | raster | bytea - postgis_raster | public | dropoverviewconstraints | ovtable name, ovcolumn name | boolean - postgis_raster | public | dropoverviewconstraints | ovschema name, ovtable name, ovcolumn name | boolean - postgis_raster | public | droprasterconstraints | rastschema name, rasttable name, rastcolumn name, srid boolean, scale_x boolean, scale_y boolean, blocksize_x boolean, blocksize_y boolean, same_alignment boolean, regular_blocking boolean, num_bands boolean, pixel_types boolean, nodata_values boolean, out_db boolean, extent boolean | boolean - postgis_raster | public | droprasterconstraints | rasttable name, rastcolumn name, VARIADIC constraints text[] | boolean - postgis_raster | public | droprasterconstraints | rastschema name, rasttable name, rastcolumn name, VARIADIC constraints text[] | boolean - postgis_raster | public | droprasterconstraints | rasttable name, rastcolumn name, srid boolean, scale_x boolean, scale_y boolean, blocksize_x boolean, blocksize_y boolean, same_alignment boolean, regular_blocking boolean, num_bands boolean, pixel_types boolean, nodata_values boolean, out_db boolean, extent boolean | boolean - postgis_raster | public | geometry_contained_by_raster | geometry, raster | boolean - postgis_raster | public | geometry_raster_contain | geometry, raster | boolean - postgis_raster | public | geometry_raster_overlap | geometry, raster | boolean - postgis_raster | public | postgis_gdal_version | | text - postgis_raster | public | postgis_noop | raster | geometry - postgis_raster | public | postgis_raster_lib_build_date | | text - postgis_raster | public | postgis_raster_lib_version | | text - postgis_raster | public | postgis_raster_scripts_installed | | text - postgis_raster | public | raster_above | raster, raster | boolean - postgis_raster | public | raster_below | raster, raster | boolean - postgis_raster | public | raster_contain | raster, raster | boolean - postgis_raster | public | raster_contained | raster, raster | boolean - postgis_raster | public | raster_contained_by_geometry | raster, geometry | boolean - postgis_raster | public | raster_eq | raster, raster | boolean - postgis_raster | public | raster_geometry_contain | raster, geometry | boolean - postgis_raster | public | raster_geometry_overlap | raster, geometry | boolean - postgis_raster | public | raster_hash | raster | integer - postgis_raster | public | raster_in | cstring | raster - postgis_raster | public | raster_left | raster, raster | boolean - postgis_raster | public | raster_out | raster | cstring - postgis_raster | public | raster_overabove | raster, raster | boolean - postgis_raster | public | raster_overbelow | raster, raster | boolean - postgis_raster | public | raster_overlap | raster, raster | boolean - postgis_raster | public | raster_overleft | raster, raster | boolean - postgis_raster | public | raster_overright | raster, raster | boolean - postgis_raster | public | raster_right | raster, raster | boolean - postgis_raster | public | raster_same | raster, raster | boolean - postgis_raster | public | st_addband | rast raster, index integer, outdbfile text, outdbindex integer[], nodataval double precision | raster - postgis_raster | public | st_addband | rast raster, outdbfile text, outdbindex integer[], index integer, nodataval double precision | raster - postgis_raster | public | st_addband | rast raster, addbandargset addbandarg[] | raster - postgis_raster | public | st_addband | rast raster, pixeltype text, initialvalue double precision, nodataval double precision | raster - postgis_raster | public | st_addband | rast raster, index integer, pixeltype text, initialvalue double precision, nodataval double precision | raster - postgis_raster | public | st_addband | torast raster, fromrast raster, fromband integer, torastindex integer | raster - postgis_raster | public | st_addband | torast raster, fromrasts raster[], fromband integer, torastindex integer | raster - postgis_raster | public | st_approxcount | rast raster, exclude_nodata_value boolean, sample_percent double precision | bigint - postgis_raster | public | st_approxcount | rast raster, sample_percent double precision | bigint - postgis_raster | public | st_approxcount | rast raster, nband integer, sample_percent double precision | bigint - postgis_raster | public | st_approxcount | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision | bigint - postgis_raster | public | st_approxhistogram | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision, bins integer, "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_approxhistogram | rast raster, sample_percent double precision, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_approxhistogram | rast raster, nband integer, sample_percent double precision, bins integer, width double precision[], "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_approxhistogram | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision, bins integer, width double precision[], "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_approxhistogram | rast raster, nband integer, sample_percent double precision, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_approxhistogram | rast raster, nband integer, sample_percent double precision, bins integer, "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_approxquantile | rast raster, exclude_nodata_value boolean, quantile double precision | double precision - postgis_raster | public | st_approxquantile | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision, quantile double precision | double precision - postgis_raster | public | st_approxquantile | rast raster, nband integer, sample_percent double precision, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_approxquantile | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_approxquantile | rast raster, quantile double precision | double precision - postgis_raster | public | st_approxquantile | rast raster, sample_percent double precision, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_approxquantile | rast raster, nband integer, sample_percent double precision, quantile double precision | double precision - postgis_raster | public | st_approxquantile | rast raster, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_approxquantile | rast raster, sample_percent double precision, quantile double precision | double precision - postgis_raster | public | st_approxsummarystats | rast raster, exclude_nodata_value boolean, sample_percent double precision | summarystats - postgis_raster | public | st_approxsummarystats | rast raster, sample_percent double precision | summarystats - postgis_raster | public | st_approxsummarystats | rast raster, nband integer, sample_percent double precision | summarystats - postgis_raster | public | st_approxsummarystats | rast raster, nband integer, exclude_nodata_value boolean, sample_percent double precision | summarystats - postgis_raster | public | st_asbinary | raster, outasin boolean | bytea - postgis_raster | public | st_asgdalraster | rast raster, format text, options text[], srid integer | bytea - postgis_raster | public | st_ashexwkb | raster, outasin boolean | text - postgis_raster | public | st_asjpeg | rast raster, options text[] | bytea - postgis_raster | public | st_asjpeg | rast raster, nbands integer[], options text[] | bytea - postgis_raster | public | st_asjpeg | rast raster, nband integer, options text[] | bytea - postgis_raster | public | st_asjpeg | rast raster, nbands integer[], quality integer | bytea - postgis_raster | public | st_asjpeg | rast raster, nband integer, quality integer | bytea - postgis_raster | public | st_aspect | rast raster, nband integer, customextent raster, pixeltype text, units text, interpolate_nodata boolean | raster - postgis_raster | public | st_aspect | rast raster, nband integer, pixeltype text, units text, interpolate_nodata boolean | raster - postgis_raster | public | st_aspng | rast raster, options text[] | bytea - postgis_raster | public | st_aspng | rast raster, nbands integer[], options text[] | bytea - postgis_raster | public | st_aspng | rast raster, nband integer, compression integer | bytea - postgis_raster | public | st_aspng | rast raster, nband integer, options text[] | bytea - postgis_raster | public | st_aspng | rast raster, nbands integer[], compression integer | bytea - postgis_raster | public | st_asraster | geom geometry, ref raster, pixeltype text[], value double precision[], nodataval double precision[], touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, scalex double precision, scaley double precision, pixeltype text, value double precision, nodataval double precision, upperleftx double precision, upperlefty double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, width integer, height integer, pixeltype text[], value double precision[], nodataval double precision[], upperleftx double precision, upperlefty double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, scalex double precision, scaley double precision, gridx double precision, gridy double precision, pixeltype text[], value double precision[], nodataval double precision[], skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, width integer, height integer, gridx double precision, gridy double precision, pixeltype text, value double precision, nodataval double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, ref raster, pixeltype text, value double precision, nodataval double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, scalex double precision, scaley double precision, gridx double precision, gridy double precision, pixeltype text, value double precision, nodataval double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, width integer, height integer, gridx double precision, gridy double precision, pixeltype text[], value double precision[], nodataval double precision[], skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, width integer, height integer, pixeltype text, value double precision, nodataval double precision, upperleftx double precision, upperlefty double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_asraster | geom geometry, scalex double precision, scaley double precision, pixeltype text[], value double precision[], nodataval double precision[], upperleftx double precision, upperlefty double precision, skewx double precision, skewy double precision, touched boolean | raster - postgis_raster | public | st_astiff | rast raster, options text[], srid integer | bytea - postgis_raster | public | st_astiff | rast raster, compression text, srid integer | bytea - postgis_raster | public | st_astiff | rast raster, nbands integer[], compression text, srid integer | bytea - postgis_raster | public | st_astiff | rast raster, nbands integer[], options text[], srid integer | bytea - postgis_raster | public | st_aswkb | raster, outasin boolean | bytea - postgis_raster | public | st_band | rast raster, nbands text, delimiter character | raster - postgis_raster | public | st_band | rast raster, nbands integer[] | raster - postgis_raster | public | st_band | rast raster, nband integer | raster - postgis_raster | public | st_bandfilesize | rast raster, band integer | bigint - postgis_raster | public | st_bandfiletimestamp | rast raster, band integer | bigint - postgis_raster | public | st_bandisnodata | rast raster, forcechecking boolean | boolean - postgis_raster | public | st_bandisnodata | rast raster, band integer, forcechecking boolean | boolean - postgis_raster | public | st_bandmetadata | rast raster, band integer | TABLE(pixeltype text, nodatavalue double precision, isoutdb boolean, path text, outdbbandnum integer, filesize bigint, filetimestamp bigint) - postgis_raster | public | st_bandmetadata | rast raster, band integer[] | TABLE(bandnum integer, pixeltype text, nodatavalue double precision, isoutdb boolean, path text, outdbbandnum integer, filesize bigint, filetimestamp bigint) - postgis_raster | public | st_bandnodatavalue | rast raster, band integer | double precision - postgis_raster | public | st_bandpath | rast raster, band integer | text - postgis_raster | public | st_bandpixeltype | rast raster, band integer | text - postgis_raster | public | st_clip | rast raster, geom geometry, nodataval double precision[], crop boolean | raster - postgis_raster | public | st_clip | rast raster, geom geometry, nodataval double precision, crop boolean | raster - postgis_raster | public | st_clip | rast raster, nband integer, geom geometry, nodataval double precision, crop boolean | raster - postgis_raster | public | st_clip | rast raster, nband integer[], geom geometry, nodataval double precision[], crop boolean | raster - postgis_raster | public | st_clip | rast raster, geom geometry, crop boolean | raster - postgis_raster | public | st_clip | rast raster, nband integer, geom geometry, crop boolean | raster - postgis_raster | public | st_colormap | rast raster, colormap text, method text | raster - postgis_raster | public | st_colormap | rast raster, nband integer, colormap text, method text | raster - postgis_raster | public | st_contains | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_contains | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_containsproperly | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_containsproperly | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_contour | rast raster, bandnumber integer, level_interval double precision, level_base double precision, fixed_levels double precision[], polygonize boolean | TABLE(geom geometry, id integer, value double precision) - postgis_raster | public | st_convexhull | raster | geometry - postgis_raster | public | st_count | rast raster, nband integer, exclude_nodata_value boolean | bigint - postgis_raster | public | st_count | rast raster, exclude_nodata_value boolean | bigint - postgis_raster | public | st_countagg | raster, integer, boolean, double precision | bigint - postgis_raster | public | st_countagg | raster, integer, boolean | bigint - postgis_raster | public | st_countagg | raster, boolean | bigint - postgis_raster | public | st_coveredby | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_coveredby | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_covers | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_covers | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_createoverview | tab regclass, col name, factor integer, algo text | regclass - postgis_raster | public | st_dfullywithin | rast1 raster, nband1 integer, rast2 raster, nband2 integer, distance double precision | boolean - postgis_raster | public | st_dfullywithin | rast1 raster, rast2 raster, distance double precision | boolean - postgis_raster | public | st_disjoint | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_disjoint | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_distinct4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_distinct4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_dumpaspolygons | rast raster, band integer, exclude_nodata_value boolean | SETOF geomval - postgis_raster | public | st_dumpvalues | rast raster, nband integer, exclude_nodata_value boolean | double precision[] - postgis_raster | public | st_dumpvalues | rast raster, nband integer[], exclude_nodata_value boolean | TABLE(nband integer, valarray double precision[]) - postgis_raster | public | st_dwithin | rast1 raster, nband1 integer, rast2 raster, nband2 integer, distance double precision | boolean - postgis_raster | public | st_dwithin | rast1 raster, rast2 raster, distance double precision | boolean - postgis_raster | public | st_envelope | raster | geometry - postgis_raster | public | st_fromgdalraster | gdaldata bytea, srid integer | raster - postgis_raster | public | st_gdaldrivers | OUT idx integer, OUT short_name text, OUT long_name text, OUT can_read boolean, OUT can_write boolean, OUT create_options text | SETOF record - postgis_raster | public | st_georeference | rast raster, format text | text - postgis_raster | public | st_geotransform | raster, OUT imag double precision, OUT jmag double precision, OUT theta_i double precision, OUT theta_ij double precision, OUT xoffset double precision, OUT yoffset double precision | record - postgis_raster | public | st_grayscale | rastbandargset rastbandarg[], extenttype text | raster - postgis_raster | public | st_grayscale | rast raster, redband integer, greenband integer, blueband integer, extenttype text | raster - postgis_raster | public | st_hasnoband | rast raster, nband integer | boolean - postgis_raster | public | st_height | raster | integer - postgis_raster | public | st_hillshade | rast raster, nband integer, customextent raster, pixeltype text, azimuth double precision, altitude double precision, max_bright double precision, scale double precision, interpolate_nodata boolean | raster - postgis_raster | public | st_hillshade | rast raster, nband integer, pixeltype text, azimuth double precision, altitude double precision, max_bright double precision, scale double precision, interpolate_nodata boolean | raster - postgis_raster | public | st_histogram | rast raster, nband integer, bins integer, "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_histogram | rast raster, nband integer, bins integer, width double precision[], "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_histogram | rast raster, nband integer, exclude_nodata_value boolean, bins integer, "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_histogram | rast raster, nband integer, exclude_nodata_value boolean, bins integer, width double precision[], "right" boolean, OUT min double precision, OUT max double precision, OUT count bigint, OUT percent double precision | SETOF record - postgis_raster | public | st_interpolateraster | geom geometry, options text, rast raster, bandnumber integer | raster - postgis_raster | public | st_intersection | rast1 raster, rast2 raster, returnband text, nodataval double precision[] | raster - postgis_raster | public | st_intersection | rast1 raster, band1 integer, rast2 raster, band2 integer, returnband text, nodataval double precision | raster - postgis_raster | public | st_intersection | rast1 raster, band1 integer, rast2 raster, band2 integer, returnband text, nodataval double precision[] | raster - postgis_raster | public | st_intersection | geomin geometry, rast raster, band integer | SETOF geomval - postgis_raster | public | st_intersection | rast1 raster, rast2 raster, nodataval double precision | raster - postgis_raster | public | st_intersection | rast1 raster, band1 integer, rast2 raster, band2 integer, nodataval double precision | raster - postgis_raster | public | st_intersection | rast1 raster, rast2 raster, returnband text, nodataval double precision | raster - postgis_raster | public | st_intersection | rast raster, band integer, geomin geometry | SETOF geomval - postgis_raster | public | st_intersection | rast1 raster, band1 integer, rast2 raster, band2 integer, nodataval double precision[] | raster - postgis_raster | public | st_intersection | rast raster, geomin geometry | SETOF geomval - postgis_raster | public | st_intersection | rast1 raster, rast2 raster, nodataval double precision[] | raster - postgis_raster | public | st_intersects | rast raster, geom geometry, nband integer | boolean - postgis_raster | public | st_intersects | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_intersects | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_intersects | rast raster, nband integer, geom geometry | boolean - postgis_raster | public | st_intersects | geom geometry, rast raster, nband integer | boolean - postgis_raster | public | st_invdistweight4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_iscoveragetile | rast raster, coverage raster, tilewidth integer, tileheight integer | boolean - postgis_raster | public | st_isempty | rast raster | boolean - postgis_raster | public | st_makeemptycoverage | tilewidth integer, tileheight integer, width integer, height integer, upperleftx double precision, upperlefty double precision, scalex double precision, scaley double precision, skewx double precision, skewy double precision, srid integer | SETOF raster - postgis_raster | public | st_makeemptyraster | width integer, height integer, upperleftx double precision, upperlefty double precision, scalex double precision, scaley double precision, skewx double precision, skewy double precision, srid integer | raster - postgis_raster | public | st_makeemptyraster | width integer, height integer, upperleftx double precision, upperlefty double precision, pixelsize double precision | raster - postgis_raster | public | st_makeemptyraster | rast raster | raster - postgis_raster | public | st_mapalgebra | rast1 raster, rast2 raster, expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision | raster - postgis_raster | public | st_mapalgebra | rast raster, pixeltype text, expression text, nodataval double precision | raster - postgis_raster | public | st_mapalgebra | rast1 raster, band1 integer, rast2 raster, band2 integer, expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision | raster - postgis_raster | public | st_mapalgebra | rast raster, nband integer[], callbackfunc regprocedure, pixeltype text, extenttype text, customextent raster, distancex integer, distancey integer, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebra | rast raster, nband integer, callbackfunc regprocedure, mask double precision[], weighted boolean, pixeltype text, extenttype text, customextent raster, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebra | rastbandargset rastbandarg[], callbackfunc regprocedure, pixeltype text, extenttype text, customextent raster, distancex integer, distancey integer, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebra | rast1 raster, nband1 integer, rast2 raster, nband2 integer, callbackfunc regprocedure, pixeltype text, extenttype text, customextent raster, distancex integer, distancey integer, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebra | rast raster, nband integer, callbackfunc regprocedure, pixeltype text, extenttype text, customextent raster, distancex integer, distancey integer, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebra | rast raster, nband integer, pixeltype text, expression text, nodataval double precision | raster - postgis_raster | public | st_mapalgebraexpr | rast1 raster, rast2 raster, expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision | raster - postgis_raster | public | st_mapalgebraexpr | rast raster, pixeltype text, expression text, nodataval double precision | raster - postgis_raster | public | st_mapalgebraexpr | rast1 raster, band1 integer, rast2 raster, band2 integer, expression text, pixeltype text, extenttype text, nodata1expr text, nodata2expr text, nodatanodataval double precision | raster - postgis_raster | public | st_mapalgebraexpr | rast raster, band integer, pixeltype text, expression text, nodataval double precision | raster - postgis_raster | public | st_mapalgebrafct | rast raster, onerastuserfunc regprocedure | raster - postgis_raster | public | st_mapalgebrafct | rast1 raster, band1 integer, rast2 raster, band2 integer, tworastuserfunc regprocedure, pixeltype text, extenttype text, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebrafct | rast raster, pixeltype text, onerastuserfunc regprocedure | raster - postgis_raster | public | st_mapalgebrafct | rast raster, onerastuserfunc regprocedure, VARIADIC args text[] | raster - postgis_raster | public | st_mapalgebrafct | rast raster, pixeltype text, onerastuserfunc regprocedure, VARIADIC args text[] | raster - postgis_raster | public | st_mapalgebrafct | rast raster, band integer, onerastuserfunc regprocedure, VARIADIC args text[] | raster - postgis_raster | public | st_mapalgebrafct | rast raster, band integer, pixeltype text, onerastuserfunc regprocedure | raster - postgis_raster | public | st_mapalgebrafct | rast1 raster, rast2 raster, tworastuserfunc regprocedure, pixeltype text, extenttype text, VARIADIC userargs text[] | raster - postgis_raster | public | st_mapalgebrafct | rast raster, band integer, pixeltype text, onerastuserfunc regprocedure, VARIADIC args text[] | raster - postgis_raster | public | st_mapalgebrafct | rast raster, band integer, onerastuserfunc regprocedure | raster - postgis_raster | public | st_mapalgebrafctngb | rast raster, band integer, pixeltype text, ngbwidth integer, ngbheight integer, onerastngbuserfunc regprocedure, nodatamode text, VARIADIC args text[] | raster - postgis_raster | public | st_max4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_max4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_mean4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_mean4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_memsize | raster | integer - postgis_raster | public | st_metadata | rast raster, OUT upperleftx double precision, OUT upperlefty double precision, OUT width integer, OUT height integer, OUT scalex double precision, OUT scaley double precision, OUT skewx double precision, OUT skewy double precision, OUT srid integer, OUT numbands integer | record - postgis_raster | public | st_min4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_min4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_minconvexhull | rast raster, nband integer | geometry - postgis_raster | public | st_mindist4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_minpossiblevalue | pixeltype text | double precision - postgis_raster | public | st_nearestvalue | rast raster, columnx integer, rowy integer, exclude_nodata_value boolean | double precision - postgis_raster | public | st_nearestvalue | rast raster, band integer, columnx integer, rowy integer, exclude_nodata_value boolean | double precision - postgis_raster | public | st_nearestvalue | rast raster, band integer, pt geometry, exclude_nodata_value boolean | double precision - postgis_raster | public | st_nearestvalue | rast raster, pt geometry, exclude_nodata_value boolean | double precision - postgis_raster | public | st_neighborhood | rast raster, columnx integer, rowy integer, distancex integer, distancey integer, exclude_nodata_value boolean | double precision[] - postgis_raster | public | st_neighborhood | rast raster, band integer, pt geometry, distancex integer, distancey integer, exclude_nodata_value boolean | double precision[] - postgis_raster | public | st_neighborhood | rast raster, band integer, columnx integer, rowy integer, distancex integer, distancey integer, exclude_nodata_value boolean | double precision[] - postgis_raster | public | st_neighborhood | rast raster, pt geometry, distancex integer, distancey integer, exclude_nodata_value boolean | double precision[] - postgis_raster | public | st_notsamealignmentreason | rast1 raster, rast2 raster | text - postgis_raster | public | st_numbands | raster | integer - postgis_raster | public | st_overlaps | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_overlaps | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_pixelascentroid | rast raster, x integer, y integer | geometry - postgis_raster | public | st_pixelascentroids | rast raster, band integer, exclude_nodata_value boolean | TABLE(geom geometry, val double precision, x integer, y integer) - postgis_raster | public | st_pixelaspoint | rast raster, x integer, y integer | geometry - postgis_raster | public | st_pixelaspoints | rast raster, band integer, exclude_nodata_value boolean | TABLE(geom geometry, val double precision, x integer, y integer) - postgis_raster | public | st_pixelaspolygon | rast raster, x integer, y integer | geometry - postgis_raster | public | st_pixelaspolygons | rast raster, band integer, exclude_nodata_value boolean | TABLE(geom geometry, val double precision, x integer, y integer) - postgis_raster | public | st_pixelheight | raster | double precision - postgis_raster | public | st_pixelofvalue | rast raster, nband integer, search double precision, exclude_nodata_value boolean | TABLE(x integer, y integer) - postgis_raster | public | st_pixelofvalue | rast raster, search double precision, exclude_nodata_value boolean | TABLE(x integer, y integer) - postgis_raster | public | st_pixelofvalue | rast raster, nband integer, search double precision[], exclude_nodata_value boolean | TABLE(val double precision, x integer, y integer) - postgis_raster | public | st_pixelofvalue | rast raster, search double precision[], exclude_nodata_value boolean | TABLE(val double precision, x integer, y integer) - postgis_raster | public | st_pixelwidth | raster | double precision - postgis_raster | public | st_polygon | rast raster, band integer | geometry - postgis_raster | public | st_quantile | rast raster, exclude_nodata_value boolean, quantile double precision | double precision - postgis_raster | public | st_quantile | rast raster, nband integer, quantile double precision | double precision - postgis_raster | public | st_quantile | rast raster, nband integer, exclude_nodata_value boolean, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_quantile | rast raster, quantile double precision | double precision - postgis_raster | public | st_quantile | rast raster, nband integer, exclude_nodata_value boolean, quantile double precision | double precision - postgis_raster | public | st_quantile | rast raster, nband integer, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_quantile | rast raster, quantiles double precision[], OUT quantile double precision, OUT value double precision | SETOF record - postgis_raster | public | st_range4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_range4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_rastertoworldcoord | rast raster, columnx integer, rowy integer, OUT longitude double precision, OUT latitude double precision | record - postgis_raster | public | st_rastertoworldcoordx | rast raster, xr integer | double precision - postgis_raster | public | st_rastertoworldcoordx | rast raster, xr integer, yr integer | double precision - postgis_raster | public | st_rastertoworldcoordy | rast raster, xr integer, yr integer | double precision - postgis_raster | public | st_rastertoworldcoordy | rast raster, yr integer | double precision - postgis_raster | public | st_rastfromhexwkb | text | raster - postgis_raster | public | st_rastfromwkb | bytea | raster - postgis_raster | public | st_reclass | rast raster, nband integer, reclassexpr text, pixeltype text, nodataval double precision | raster - postgis_raster | public | st_reclass | rast raster, VARIADIC reclassargset reclassarg[] | raster - postgis_raster | public | st_reclass | rast raster, reclassexpr text, pixeltype text | raster - postgis_raster | public | st_resample | rast raster, ref raster, usescale boolean, algorithm text, maxerr double precision | raster - postgis_raster | public | st_resample | rast raster, width integer, height integer, gridx double precision, gridy double precision, skewx double precision, skewy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_resample | rast raster, scalex double precision, scaley double precision, gridx double precision, gridy double precision, skewx double precision, skewy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_resample | rast raster, ref raster, algorithm text, maxerr double precision, usescale boolean | raster - postgis_raster | public | st_rescale | rast raster, scalexy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_rescale | rast raster, scalex double precision, scaley double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_resize | rast raster, width integer, height integer, algorithm text, maxerr double precision | raster - postgis_raster | public | st_resize | rast raster, width text, height text, algorithm text, maxerr double precision | raster - postgis_raster | public | st_resize | rast raster, percentwidth double precision, percentheight double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_reskew | rast raster, skewx double precision, skewy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_reskew | rast raster, skewxy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_retile | tab regclass, col name, ext geometry, sfx double precision, sfy double precision, tw integer, th integer, algo text | SETOF raster - postgis_raster | public | st_rotation | raster | double precision - postgis_raster | public | st_roughness | rast raster, nband integer, customextent raster, pixeltype text, interpolate_nodata boolean | raster - postgis_raster | public | st_roughness | rast raster, nband integer, pixeltype text, interpolate_nodata boolean | raster - postgis_raster | public | st_samealignment | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_samealignment | raster | boolean - postgis_raster | public | st_samealignment | ulx1 double precision, uly1 double precision, scalex1 double precision, scaley1 double precision, skewx1 double precision, skewy1 double precision, ulx2 double precision, uly2 double precision, scalex2 double precision, scaley2 double precision, skewx2 double precision, skewy2 double precision | boolean - postgis_raster | public | st_scalex | raster | double precision - postgis_raster | public | st_scaley | raster | double precision - postgis_raster | public | st_setbandindex | rast raster, band integer, outdbindex integer, force boolean | raster - postgis_raster | public | st_setbandisnodata | rast raster, band integer | raster - postgis_raster | public | st_setbandnodatavalue | rast raster, band integer, nodatavalue double precision, forcechecking boolean | raster - postgis_raster | public | st_setbandnodatavalue | rast raster, nodatavalue double precision | raster - postgis_raster | public | st_setbandpath | rast raster, band integer, outdbpath text, outdbindex integer, force boolean | raster - postgis_raster | public | st_setgeoreference | rast raster, upperleftx double precision, upperlefty double precision, scalex double precision, scaley double precision, skewx double precision, skewy double precision | raster - postgis_raster | public | st_setgeoreference | rast raster, georef text, format text | raster - postgis_raster | public | st_setgeotransform | rast raster, imag double precision, jmag double precision, theta_i double precision, theta_ij double precision, xoffset double precision, yoffset double precision | raster - postgis_raster | public | st_setm | rast raster, geom geometry, resample text, band integer | geometry - postgis_raster | public | st_setrotation | rast raster, rotation double precision | raster - postgis_raster | public | st_setscale | rast raster, scalex double precision, scaley double precision | raster - postgis_raster | public | st_setscale | rast raster, scale double precision | raster - postgis_raster | public | st_setskew | rast raster, skewx double precision, skewy double precision | raster - postgis_raster | public | st_setskew | rast raster, skew double precision | raster - postgis_raster | public | st_setsrid | rast raster, srid integer | raster - postgis_raster | public | st_setupperleft | rast raster, upperleftx double precision, upperlefty double precision | raster - postgis_raster | public | st_setvalue | rast raster, nband integer, geom geometry, newvalue double precision | raster - postgis_raster | public | st_setvalue | rast raster, geom geometry, newvalue double precision | raster - postgis_raster | public | st_setvalue | rast raster, x integer, y integer, newvalue double precision | raster - postgis_raster | public | st_setvalue | rast raster, band integer, x integer, y integer, newvalue double precision | raster - postgis_raster | public | st_setvalues | rast raster, nband integer, x integer, y integer, newvalueset double precision[], nosetvalue double precision, keepnodata boolean | raster - postgis_raster | public | st_setvalues | rast raster, nband integer, x integer, y integer, newvalueset double precision[], noset boolean[], keepnodata boolean | raster - postgis_raster | public | st_setvalues | rast raster, nband integer, x integer, y integer, width integer, height integer, newvalue double precision, keepnodata boolean | raster - postgis_raster | public | st_setvalues | rast raster, x integer, y integer, width integer, height integer, newvalue double precision, keepnodata boolean | raster - postgis_raster | public | st_setvalues | rast raster, nband integer, geomvalset geomval[], keepnodata boolean | raster - postgis_raster | public | st_setz | rast raster, geom geometry, resample text, band integer | geometry - postgis_raster | public | st_skewx | raster | double precision - postgis_raster | public | st_skewy | raster | double precision - postgis_raster | public | st_slope | rast raster, nband integer, customextent raster, pixeltype text, units text, scale double precision, interpolate_nodata boolean | raster - postgis_raster | public | st_slope | rast raster, nband integer, pixeltype text, units text, scale double precision, interpolate_nodata boolean | raster - postgis_raster | public | st_snaptogrid | rast raster, gridx double precision, gridy double precision, scalex double precision, scaley double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_snaptogrid | rast raster, gridx double precision, gridy double precision, algorithm text, maxerr double precision, scalex double precision, scaley double precision | raster - postgis_raster | public | st_snaptogrid | rast raster, gridx double precision, gridy double precision, scalexy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_srid | raster | integer - postgis_raster | public | st_stddev4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_stddev4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_sum4ma | value double precision[], pos integer[], VARIADIC userargs text[] | double precision - postgis_raster | public | st_sum4ma | matrix double precision[], nodatamode text, VARIADIC args text[] | double precision - postgis_raster | public | st_summary | rast raster | text - postgis_raster | public | st_summarystats | rast raster, nband integer, exclude_nodata_value boolean | summarystats - postgis_raster | public | st_summarystats | rast raster, exclude_nodata_value boolean | summarystats - postgis_raster | public | st_summarystatsagg | raster, integer, boolean, double precision | summarystats - postgis_raster | public | st_summarystatsagg | raster, integer, boolean | summarystats - postgis_raster | public | st_summarystatsagg | raster, boolean, double precision | summarystats - postgis_raster | public | st_tile | rast raster, nband integer, width integer, height integer, padwithnodata boolean, nodataval double precision | SETOF raster - postgis_raster | public | st_tile | rast raster, nband integer[], width integer, height integer, padwithnodata boolean, nodataval double precision | SETOF raster - postgis_raster | public | st_tile | rast raster, width integer, height integer, padwithnodata boolean, nodataval double precision | SETOF raster - postgis_raster | public | st_touches | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_touches | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_tpi | rast raster, nband integer, customextent raster, pixeltype text, interpolate_nodata boolean | raster - postgis_raster | public | st_tpi | rast raster, nband integer, pixeltype text, interpolate_nodata boolean | raster - postgis_raster | public | st_transform | rast raster, srid integer, algorithm text, maxerr double precision, scalex double precision, scaley double precision | raster - postgis_raster | public | st_transform | rast raster, srid integer, scalexy double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_transform | rast raster, alignto raster, algorithm text, maxerr double precision | raster - postgis_raster | public | st_transform | rast raster, srid integer, scalex double precision, scaley double precision, algorithm text, maxerr double precision | raster - postgis_raster | public | st_tri | rast raster, nband integer, customextent raster, pixeltype text, interpolate_nodata boolean | raster - postgis_raster | public | st_tri | rast raster, nband integer, pixeltype text, interpolate_nodata boolean | raster - postgis_raster | public | st_union | raster, integer | raster - postgis_raster | public | st_union | raster | raster - postgis_raster | public | st_union | raster, unionarg[] | raster - postgis_raster | public | st_union | raster, integer, text | raster - postgis_raster | public | st_union | raster, text | raster - postgis_raster | public | st_upperleftx | raster | double precision - postgis_raster | public | st_upperlefty | raster | double precision - postgis_raster | public | st_value | rast raster, band integer, x integer, y integer, exclude_nodata_value boolean | double precision - postgis_raster | public | st_value | rast raster, x integer, y integer, exclude_nodata_value boolean | double precision - postgis_raster | public | st_value | rast raster, band integer, pt geometry, exclude_nodata_value boolean, resample text | double precision - postgis_raster | public | st_value | rast raster, pt geometry, exclude_nodata_value boolean | double precision - postgis_raster | public | st_valuecount | rastertable text, rastercolumn text, nband integer, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer | SETOF record - postgis_raster | public | st_valuecount | rast raster, nband integer, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer | SETOF record - postgis_raster | public | st_valuecount | rastertable text, rastercolumn text, nband integer, searchvalue double precision, roundto double precision | integer - postgis_raster | public | st_valuecount | rastertable text, rastercolumn text, searchvalue double precision, roundto double precision | integer - postgis_raster | public | st_valuecount | rast raster, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer | SETOF record - postgis_raster | public | st_valuecount | rast raster, nband integer, searchvalue double precision, roundto double precision | integer - postgis_raster | public | st_valuecount | rast raster, searchvalue double precision, roundto double precision | integer - postgis_raster | public | st_valuecount | rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer | SETOF record - postgis_raster | public | st_valuecount | rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalue double precision, roundto double precision | integer - postgis_raster | public | st_valuecount | rast raster, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer | SETOF record - postgis_raster | public | st_valuecount | rastertable text, rastercolumn text, searchvalues double precision[], roundto double precision, OUT value double precision, OUT count integer | SETOF record - postgis_raster | public | st_valuecount | rast raster, nband integer, exclude_nodata_value boolean, searchvalue double precision, roundto double precision | integer - postgis_raster | public | st_valuepercent | rast raster, searchvalues double precision[], roundto double precision, OUT value double precision, OUT percent double precision | SETOF record - postgis_raster | public | st_valuepercent | rastertable text, rastercolumn text, nband integer, searchvalue double precision, roundto double precision | double precision - postgis_raster | public | st_valuepercent | rastertable text, rastercolumn text, searchvalue double precision, roundto double precision | double precision - postgis_raster | public | st_valuepercent | rastertable text, rastercolumn text, searchvalues double precision[], roundto double precision, OUT value double precision, OUT percent double precision | SETOF record - postgis_raster | public | st_valuepercent | rast raster, nband integer, searchvalue double precision, roundto double precision | double precision - postgis_raster | public | st_valuepercent | rast raster, searchvalue double precision, roundto double precision | double precision - postgis_raster | public | st_valuepercent | rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT percent double precision | SETOF record - postgis_raster | public | st_valuepercent | rastertable text, rastercolumn text, nband integer, exclude_nodata_value boolean, searchvalue double precision, roundto double precision | double precision - postgis_raster | public | st_valuepercent | rast raster, nband integer, searchvalues double precision[], roundto double precision, OUT value double precision, OUT percent double precision | SETOF record - postgis_raster | public | st_valuepercent | rastertable text, rastercolumn text, nband integer, searchvalues double precision[], roundto double precision, OUT value double precision, OUT percent double precision | SETOF record - postgis_raster | public | st_valuepercent | rast raster, nband integer, exclude_nodata_value boolean, searchvalue double precision, roundto double precision | double precision - postgis_raster | public | st_valuepercent | rast raster, nband integer, exclude_nodata_value boolean, searchvalues double precision[], roundto double precision, OUT value double precision, OUT percent double precision | SETOF record - postgis_raster | public | st_width | raster | integer - postgis_raster | public | st_within | rast1 raster, rast2 raster | boolean - postgis_raster | public | st_within | rast1 raster, nband1 integer, rast2 raster, nband2 integer | boolean - postgis_raster | public | st_worldtorastercoord | rast raster, longitude double precision, latitude double precision, OUT columnx integer, OUT rowy integer | record - postgis_raster | public | st_worldtorastercoord | rast raster, pt geometry, OUT columnx integer, OUT rowy integer | record - postgis_raster | public | st_worldtorastercoordx | rast raster, xw double precision | integer - postgis_raster | public | st_worldtorastercoordx | rast raster, xw double precision, yw double precision | integer - postgis_raster | public | st_worldtorastercoordx | rast raster, pt geometry | integer - postgis_raster | public | st_worldtorastercoordy | rast raster, xw double precision, yw double precision | integer - postgis_raster | public | st_worldtorastercoordy | rast raster, pt geometry | integer - postgis_raster | public | st_worldtorastercoordy | rast raster, yw double precision | integer - postgis_raster | public | updaterastersrid | table_name name, column_name name, new_srid integer | boolean - postgis_raster | public | updaterastersrid | schema_name name, table_name name, column_name name, new_srid integer | boolean - postgis_sfcgal | public | postgis_sfcgal_full_version | | text - postgis_sfcgal | public | postgis_sfcgal_noop | geometry | geometry - postgis_sfcgal | public | postgis_sfcgal_scripts_installed | | text - postgis_sfcgal | public | postgis_sfcgal_version | | text - postgis_sfcgal | public | st_3darea | geometry | double precision - postgis_sfcgal | public | st_3dconvexhull | geometry | geometry - postgis_sfcgal | public | st_3ddifference | geom1 geometry, geom2 geometry | geometry - postgis_sfcgal | public | st_3dintersection | geom1 geometry, geom2 geometry | geometry - postgis_sfcgal | public | st_3dunion | geom1 geometry, geom2 geometry | geometry - postgis_sfcgal | public | st_3dunion | geometry | geometry - postgis_sfcgal | public | st_alphashape | g1 geometry, alpha double precision, allow_holes boolean | geometry - postgis_sfcgal | public | st_approximatemedialaxis | geometry | geometry - postgis_sfcgal | public | st_constraineddelaunaytriangles | geometry | geometry - postgis_sfcgal | public | st_extrude | geometry, double precision, double precision, double precision | geometry - postgis_sfcgal | public | st_forcelhr | geometry | geometry - postgis_sfcgal | public | st_isplanar | geometry | boolean - postgis_sfcgal | public | st_issolid | geometry | boolean - postgis_sfcgal | public | st_makesolid | geometry | geometry - postgis_sfcgal | public | st_minkowskisum | geometry, geometry | geometry - postgis_sfcgal | public | st_optimalalphashape | g1 geometry, allow_holes boolean, nb_components integer | geometry - postgis_sfcgal | public | st_orientation | geometry | integer - postgis_sfcgal | public | st_straightskeleton | geometry | geometry - postgis_sfcgal | public | st_tesselate | geometry | geometry - postgis_sfcgal | public | st_volume | geometry | double precision - postgis_topology | topology | _asgmledge | edge_id integer, start_node integer, end_node integer, line geometry, visitedtable regclass, nsprefix_in text, prec integer, options integer, idprefix text, gmlver integer | text - postgis_topology | topology | _asgmlface | toponame text, face_id integer, visitedtable regclass, nsprefix_in text, prec integer, options integer, idprefix text, gmlver integer | text - postgis_topology | topology | _asgmlnode | id integer, point geometry, nsprefix_in text, prec integer, options integer, idprefix text, gmlver integer | text - postgis_topology | topology | _checkedgelinking | curedge_edge_id integer, prevedge_edge_id integer, prevedge_next_left_edge integer, prevedge_next_right_edge integer | topology.validatetopology_returntype - postgis_topology | topology | _st_adjacentedges | atopology character varying, anode integer, anedge integer | integer[] - postgis_topology | topology | _st_mintolerance | ageom geometry | double precision - postgis_topology | topology | _st_mintolerance | atopology character varying, ageom geometry | double precision - postgis_topology | topology | _validatetopologyedgelinking | bbox geometry | SETOF topology.validatetopology_returntype - postgis_topology | topology | _validatetopologygetfaceshellmaximaledgering | atopology character varying, aface integer | geometry - postgis_topology | topology | _validatetopologygetringedges | starting_edge integer | integer[] - postgis_topology | topology | _validatetopologyrings | bbox geometry | SETOF topology.validatetopology_returntype - postgis_topology | topology | addedge | atopology character varying, aline geometry | integer - postgis_topology | topology | addface | atopology character varying, apoly geometry, force_new boolean | integer - postgis_topology | topology | addnode | atopology character varying, apoint geometry, allowedgesplitting boolean, setcontainingface boolean | integer - postgis_topology | topology | addtopogeometrycolumn | toponame character varying, schema character varying, tbl character varying, col character varying, ltype character varying, child integer | integer - postgis_topology | topology | addtopogeometrycolumn | character varying, character varying, character varying, character varying, character varying | integer - postgis_topology | topology | addtosearchpath | a_schema_name character varying | text - postgis_topology | topology | asgml | tg topology.topogeometry | text - postgis_topology | topology | asgml | tg topology.topogeometry, nsprefix text | text - postgis_topology | topology | asgml | tg topology.topogeometry, nsprefix text, prec integer, opts integer | text - postgis_topology | topology | asgml | tg topology.topogeometry, nsprefix text, prec integer, options integer, vis regclass | text - postgis_topology | topology | asgml | tg topology.topogeometry, nsprefix_in text, precision_in integer, options_in integer, visitedtable regclass, idprefix text, gmlver integer | text - postgis_topology | topology | asgml | tg topology.topogeometry, nsprefix text, prec integer, options integer, visitedtable regclass, idprefix text | text - postgis_topology | topology | asgml | tg topology.topogeometry, visitedtable regclass, nsprefix text | text - postgis_topology | topology | asgml | tg topology.topogeometry, visitedtable regclass | text - postgis_topology | topology | astopojson | tg topology.topogeometry, edgemaptable regclass | text - postgis_topology | topology | cleartopogeom | tg topology.topogeometry | topology.topogeometry - postgis_topology | topology | copytopology | atopology character varying, newtopo character varying | integer - postgis_topology | topology | createtopogeom | toponame character varying, tg_type integer, layer_id integer, tg_objs topology.topoelementarray | topology.topogeometry - postgis_topology | topology | createtopogeom | toponame character varying, tg_type integer, layer_id integer | topology.topogeometry - postgis_topology | topology | createtopology | atopology character varying, srid integer, prec double precision, hasz boolean | integer - postgis_topology | topology | createtopology | character varying, integer | integer - postgis_topology | topology | createtopology | toponame character varying, srid integer, prec double precision | integer - postgis_topology | topology | createtopology | character varying | integer - postgis_topology | topology | droptopogeometrycolumn | schema character varying, tbl character varying, col character varying | text - postgis_topology | topology | droptopology | atopology character varying | text - postgis_topology | topology | equals | tg1 topology.topogeometry, tg2 topology.topogeometry | boolean - postgis_topology | topology | findlayer | tg topology.topogeometry | topology.layer - postgis_topology | topology | findlayer | schema_name name, table_name name, feature_column name | topology.layer - postgis_topology | topology | findlayer | topology_id integer, layer_id integer | topology.layer - postgis_topology | topology | findlayer | layer_table regclass, feature_column name | topology.layer - postgis_topology | topology | findtopology | integer | topology.topology - postgis_topology | topology | findtopology | text | topology.topology - postgis_topology | topology | findtopology | name, name, name | topology.topology - postgis_topology | topology | findtopology | topology.topogeometry | topology.topology - postgis_topology | topology | findtopology | regclass, name | topology.topology - postgis_topology | topology | geometry | topogeom topology.topogeometry | geometry - postgis_topology | topology | geometrytype | tg topology.topogeometry | text - postgis_topology | topology | getedgebypoint | atopology character varying, apoint geometry, tol1 double precision | integer - postgis_topology | topology | getfacebypoint | atopology character varying, apoint geometry, tol1 double precision | integer - postgis_topology | topology | getfacecontainingpoint | atopology text, apoint geometry | integer - postgis_topology | topology | getnodebypoint | atopology character varying, apoint geometry, tol1 double precision | integer - postgis_topology | topology | getnodeedges | atopology character varying, anode integer | SETOF topology.getfaceedges_returntype - postgis_topology | topology | getringedges | atopology character varying, anedge integer, maxedges integer | SETOF topology.getfaceedges_returntype - postgis_topology | topology | gettopogeomelementarray | tg topology.topogeometry | topology.topoelementarray - postgis_topology | topology | gettopogeomelementarray | toponame character varying, layer_id integer, tgid integer | topology.topoelementarray - postgis_topology | topology | gettopogeomelements | tg topology.topogeometry | SETOF topology.topoelement - postgis_topology | topology | gettopogeomelements | toponame character varying, layerid integer, tgid integer | SETOF topology.topoelement - postgis_topology | topology | gettopologyid | toponame character varying | integer - postgis_topology | topology | gettopologyname | topoid integer | character varying - postgis_topology | topology | gettopologysrid | toponame character varying | integer - postgis_topology | topology | intersects | tg1 topology.topogeometry, tg2 topology.topogeometry | boolean - postgis_topology | topology | layertrigger | | trigger - postgis_topology | topology | polygonize | toponame character varying | text - postgis_topology | topology | populate_topology_layer | | TABLE(schema_name text, table_name text, feature_column text) - postgis_topology | topology | postgis_topology_scripts_installed | | text - postgis_topology | topology | relationtrigger | | trigger - postgis_topology | topology | removeunusedprimitives | atopology text, bbox geometry | integer - postgis_topology | topology | st_addedgemodface | atopology character varying, anode integer, anothernode integer, acurve geometry | integer - postgis_topology | topology | st_addedgenewfaces | atopology character varying, anode integer, anothernode integer, acurve geometry | integer - postgis_topology | topology | st_addisoedge | atopology character varying, anode integer, anothernode integer, acurve geometry | integer - postgis_topology | topology | st_addisonode | atopology character varying, aface integer, apoint geometry | integer - postgis_topology | topology | st_changeedgegeom | atopology character varying, anedge integer, acurve geometry | text - postgis_topology | topology | st_createtopogeo | atopology character varying, acollection geometry | text - postgis_topology | topology | st_geometrytype | tg topology.topogeometry | text - postgis_topology | topology | st_getfaceedges | toponame character varying, face_id integer | SETOF topology.getfaceedges_returntype - postgis_topology | topology | st_getfacegeometry | toponame character varying, aface integer | geometry - postgis_topology | topology | st_inittopogeo | atopology character varying | text - postgis_topology | topology | st_modedgeheal | toponame character varying, e1id integer, e2id integer | integer - postgis_topology | topology | st_modedgesplit | atopology character varying, anedge integer, apoint geometry | integer - postgis_topology | topology | st_moveisonode | atopology character varying, anode integer, apoint geometry | text - postgis_topology | topology | st_newedgeheal | toponame character varying, e1id integer, e2id integer | integer - postgis_topology | topology | st_newedgessplit | atopology character varying, anedge integer, apoint geometry | integer - postgis_topology | topology | st_remedgemodface | toponame character varying, e1id integer | integer - postgis_topology | topology | st_remedgenewface | toponame character varying, e1id integer | integer - postgis_topology | topology | st_remisonode | character varying, integer | text - postgis_topology | topology | st_removeisoedge | atopology character varying, anedge integer | text - postgis_topology | topology | st_removeisonode | atopology character varying, anode integer | text - postgis_topology | topology | st_simplify | tg topology.topogeometry, tolerance double precision | geometry - postgis_topology | topology | st_srid | tg topology.topogeometry | integer - postgis_topology | topology | topoelementarray_agg | topology.topoelement | topology.topoelementarray - postgis_topology | topology | topoelementarray_append | topology.topoelementarray, topology.topoelement | topology.topoelementarray - postgis_topology | topology | topogeo_addgeometry | atopology character varying, ageom geometry, tolerance double precision | void - postgis_topology | topology | topogeo_addlinestring | atopology character varying, aline geometry, tolerance double precision | SETOF integer - postgis_topology | topology | topogeo_addpoint | atopology character varying, apoint geometry, tolerance double precision | integer - postgis_topology | topology | topogeo_addpolygon | atopology character varying, apoly geometry, tolerance double precision | SETOF integer - postgis_topology | topology | topogeom_addelement | tg topology.topogeometry, el topology.topoelement | topology.topogeometry - postgis_topology | topology | topogeom_addtopogeom | tgt topology.topogeometry, src topology.topogeometry | topology.topogeometry - postgis_topology | topology | topogeom_remelement | tg topology.topogeometry, el topology.topoelement | topology.topogeometry - postgis_topology | topology | topologysummary | atopology character varying | text - postgis_topology | topology | totopogeom | ageom geometry, atopology character varying, alayer integer, atolerance double precision | topology.topogeometry - postgis_topology | topology | totopogeom | ageom geometry, tg topology.topogeometry, atolerance double precision | topology.topogeometry - postgis_topology | topology | validatetopology | toponame character varying, bbox geometry | SETOF topology.validatetopology_returntype - postgis_topology | topology | validatetopologyrelation | toponame character varying | TABLE(error text, layer_id integer, topogeo_id integer, element_id integer) - postgres_fdw | public | postgres_fdw_disconnect | text | boolean - postgres_fdw | public | postgres_fdw_disconnect_all | | boolean - postgres_fdw | public | postgres_fdw_get_connections | OUT server_name text, OUT valid boolean | SETOF record - postgres_fdw | public | postgres_fdw_handler | | fdw_handler - postgres_fdw | public | postgres_fdw_validator | text[], oid | void - refint | public | check_foreign_key | | trigger - refint | public | check_primary_key | | trigger - rum | public | rum_anyarray_config | internal | void - rum | public | rum_anyarray_consistent | internal, smallint, anyarray, integer, internal, internal, internal, internal | boolean - rum | public | rum_anyarray_distance | anyarray, anyarray | double precision - rum | public | rum_anyarray_ordering | internal, smallint, anyarray, integer, internal, internal, internal, internal, internal | double precision - rum | public | rum_anyarray_similar | anyarray, anyarray | boolean - rum | public | rum_bit_compare_prefix | bit, bit, smallint, internal | integer - rum | public | rum_bit_extract_query | bit, internal, smallint, internal, internal | internal - rum | public | rum_bit_extract_value | bit, internal | internal - rum | public | rum_btree_consistent | internal, smallint, internal, integer, internal, internal, internal, internal | boolean - rum | public | rum_bytea_compare_prefix | bytea, bytea, smallint, internal | integer - rum | public | rum_bytea_extract_query | bytea, internal, smallint, internal, internal | internal - rum | public | rum_bytea_extract_value | bytea, internal | internal - rum | public | rum_char_compare_prefix | "char", "char", smallint, internal | integer - rum | public | rum_char_extract_query | "char", internal, smallint, internal, internal | internal - rum | public | rum_char_extract_value | "char", internal | internal - rum | public | rum_cidr_compare_prefix | cidr, cidr, smallint, internal | integer - rum | public | rum_cidr_extract_query | cidr, internal, smallint, internal, internal | internal - rum | public | rum_cidr_extract_value | cidr, internal | internal - rum | public | rum_date_compare_prefix | date, date, smallint, internal | integer - rum | public | rum_date_extract_query | date, internal, smallint, internal, internal | internal - rum | public | rum_date_extract_value | date, internal | internal - rum | public | rum_extract_anyarray | anyarray, internal, internal, internal, internal | internal - rum | public | rum_extract_anyarray_query | anyarray, internal, smallint, internal, internal, internal, internal | internal - rum | public | rum_extract_tsquery | tsquery, internal, smallint, internal, internal, internal, internal | internal - rum | public | rum_extract_tsquery_hash | tsquery, internal, smallint, internal, internal, internal, internal | internal - rum | public | rum_extract_tsvector | tsvector, internal, internal, internal, internal | internal - rum | public | rum_extract_tsvector_hash | tsvector, internal, internal, internal, internal | internal - rum | public | rum_float4_compare_prefix | real, real, smallint, internal | integer - rum | public | rum_float4_config | internal | void - rum | public | rum_float4_distance | real, real | double precision - rum | public | rum_float4_extract_query | real, internal, smallint, internal, internal | internal - rum | public | rum_float4_extract_value | real, internal | internal - rum | public | rum_float4_key_distance | real, real, smallint | double precision - rum | public | rum_float4_left_distance | real, real | double precision - rum | public | rum_float4_outer_distance | real, real, smallint | double precision - rum | public | rum_float4_right_distance | real, real | double precision - rum | public | rum_float8_compare_prefix | double precision, double precision, smallint, internal | integer - rum | public | rum_float8_config | internal | void - rum | public | rum_float8_distance | double precision, double precision | double precision - rum | public | rum_float8_extract_query | double precision, internal, smallint, internal, internal | internal - rum | public | rum_float8_extract_value | double precision, internal | internal - rum | public | rum_float8_key_distance | double precision, double precision, smallint | double precision - rum | public | rum_float8_left_distance | double precision, double precision | double precision - rum | public | rum_float8_outer_distance | double precision, double precision, smallint | double precision - rum | public | rum_float8_right_distance | double precision, double precision | double precision - rum | public | rum_inet_compare_prefix | inet, inet, smallint, internal | integer - rum | public | rum_inet_extract_query | inet, internal, smallint, internal, internal | internal - rum | public | rum_inet_extract_value | inet, internal | internal - rum | public | rum_int2_compare_prefix | smallint, smallint, smallint, internal | integer - rum | public | rum_int2_config | internal | void - rum | public | rum_int2_distance | smallint, smallint | double precision - rum | public | rum_int2_extract_query | smallint, internal, smallint, internal, internal | internal - rum | public | rum_int2_extract_value | smallint, internal | internal - rum | public | rum_int2_key_distance | smallint, smallint, smallint | double precision - rum | public | rum_int2_left_distance | smallint, smallint | double precision - rum | public | rum_int2_outer_distance | smallint, smallint, smallint | double precision - rum | public | rum_int2_right_distance | smallint, smallint | double precision - rum | public | rum_int4_compare_prefix | integer, integer, smallint, internal | integer - rum | public | rum_int4_config | internal | void - rum | public | rum_int4_distance | integer, integer | double precision - rum | public | rum_int4_extract_query | integer, internal, smallint, internal, internal | internal - rum | public | rum_int4_extract_value | integer, internal | internal - rum | public | rum_int4_key_distance | integer, integer, smallint | double precision - rum | public | rum_int4_left_distance | integer, integer | double precision - rum | public | rum_int4_outer_distance | integer, integer, smallint | double precision - rum | public | rum_int4_right_distance | integer, integer | double precision - rum | public | rum_int8_compare_prefix | bigint, bigint, smallint, internal | integer - rum | public | rum_int8_config | internal | void - rum | public | rum_int8_distance | bigint, bigint | double precision - rum | public | rum_int8_extract_query | bigint, internal, smallint, internal, internal | internal - rum | public | rum_int8_extract_value | bigint, internal | internal - rum | public | rum_int8_key_distance | bigint, bigint, smallint | double precision - rum | public | rum_int8_left_distance | bigint, bigint | double precision - rum | public | rum_int8_outer_distance | bigint, bigint, smallint | double precision - rum | public | rum_int8_right_distance | bigint, bigint | double precision - rum | public | rum_interval_compare_prefix | interval, interval, smallint, internal | integer - rum | public | rum_interval_extract_query | interval, internal, smallint, internal, internal | internal - rum | public | rum_interval_extract_value | interval, internal | internal - rum | public | rum_macaddr_compare_prefix | macaddr, macaddr, smallint, internal | integer - rum | public | rum_macaddr_extract_query | macaddr, internal, smallint, internal, internal | internal - rum | public | rum_macaddr_extract_value | macaddr, internal | internal - rum | public | rum_money_compare_prefix | money, money, smallint, internal | integer - rum | public | rum_money_config | internal | void - rum | public | rum_money_distance | money, money | double precision - rum | public | rum_money_extract_query | money, internal, smallint, internal, internal | internal - rum | public | rum_money_extract_value | money, internal | internal - rum | public | rum_money_key_distance | money, money, smallint | double precision - rum | public | rum_money_left_distance | money, money | double precision - rum | public | rum_money_outer_distance | money, money, smallint | double precision - rum | public | rum_money_right_distance | money, money | double precision - rum | public | rum_numeric_cmp | numeric, numeric | integer - rum | public | rum_numeric_compare_prefix | numeric, numeric, smallint, internal | integer - rum | public | rum_numeric_extract_query | numeric, internal, smallint, internal, internal | internal - rum | public | rum_numeric_extract_value | numeric, internal | internal - rum | public | rum_oid_compare_prefix | oid, oid, smallint, internal | integer - rum | public | rum_oid_config | internal | void - rum | public | rum_oid_distance | oid, oid | double precision - rum | public | rum_oid_extract_query | oid, internal, smallint, internal, internal | internal - rum | public | rum_oid_extract_value | oid, internal | internal - rum | public | rum_oid_key_distance | oid, oid, smallint | double precision - rum | public | rum_oid_left_distance | oid, oid | double precision - rum | public | rum_oid_outer_distance | oid, oid, smallint | double precision - rum | public | rum_oid_right_distance | oid, oid | double precision - rum | public | rum_text_compare_prefix | text, text, smallint, internal | integer - rum | public | rum_text_extract_query | text, internal, smallint, internal, internal | internal - rum | public | rum_text_extract_value | text, internal | internal - rum | public | rum_time_compare_prefix | time without time zone, time without time zone, smallint, internal | integer - rum | public | rum_time_extract_query | time without time zone, internal, smallint, internal, internal | internal - rum | public | rum_time_extract_value | time without time zone, internal | internal - rum | public | rum_timestamp_compare_prefix | timestamp without time zone, timestamp without time zone, smallint, internal | integer - rum | public | rum_timestamp_config | internal | void - rum | public | rum_timestamp_consistent | internal, smallint, timestamp without time zone, integer, internal, internal, internal, internal | boolean - rum | public | rum_timestamp_distance | timestamp without time zone, timestamp without time zone | double precision - rum | public | rum_timestamp_extract_query | timestamp without time zone, internal, smallint, internal, internal, internal, internal | internal - rum | public | rum_timestamp_extract_value | timestamp without time zone, internal, internal, internal, internal | internal - rum | public | rum_timestamp_key_distance | timestamp without time zone, timestamp without time zone, smallint | double precision - rum | public | rum_timestamp_left_distance | timestamp without time zone, timestamp without time zone | double precision - rum | public | rum_timestamp_outer_distance | timestamp without time zone, timestamp without time zone, smallint | double precision - rum | public | rum_timestamp_right_distance | timestamp without time zone, timestamp without time zone | double precision - rum | public | rum_timestamptz_distance | timestamp with time zone, timestamp with time zone | double precision - rum | public | rum_timestamptz_key_distance | timestamp with time zone, timestamp with time zone, smallint | double precision - rum | public | rum_timestamptz_left_distance | timestamp with time zone, timestamp with time zone | double precision - rum | public | rum_timestamptz_right_distance | timestamp with time zone, timestamp with time zone | double precision - rum | public | rum_timetz_compare_prefix | time with time zone, time with time zone, smallint, internal | integer - rum | public | rum_timetz_extract_query | time with time zone, internal, smallint, internal, internal | internal - rum | public | rum_timetz_extract_value | time with time zone, internal | internal - rum | public | rum_ts_distance | tsvector, tsquery, integer | real - rum | public | rum_ts_distance | tsvector, tsquery | real - rum | public | rum_ts_distance | tsvector, rum_distance_query | real - rum | public | rum_ts_join_pos | internal, internal | bytea - rum | public | rum_ts_score | tsvector, tsquery, integer | real - rum | public | rum_ts_score | tsvector, tsquery | real - rum | public | rum_ts_score | tsvector, rum_distance_query | real - rum | public | rum_tsquery_addon_consistent | internal, smallint, tsvector, integer, internal, internal, internal, internal | boolean - rum | public | rum_tsquery_consistent | internal, smallint, tsvector, integer, internal, internal, internal, internal | boolean - rum | public | rum_tsquery_distance | internal, smallint, tsvector, integer, internal, internal, internal, internal, internal | double precision - rum | public | rum_tsquery_pre_consistent | internal, smallint, tsvector, integer, internal, internal, internal, internal | boolean - rum | public | rum_tsvector_config | internal | void - rum | public | rum_varbit_compare_prefix | bit varying, bit varying, smallint, internal | integer - rum | public | rum_varbit_extract_query | bit varying, internal, smallint, internal, internal | internal - rum | public | rum_varbit_extract_value | bit varying, internal | internal - rum | public | rumhandler | internal | index_am_handler - rum | public | ruminv_extract_tsquery | tsquery, internal, internal, internal, internal | internal - rum | public | ruminv_extract_tsvector | tsvector, internal, smallint, internal, internal, internal, internal | internal - rum | public | ruminv_tsquery_config | internal | void - rum | public | ruminv_tsvector_consistent | internal, smallint, tsvector, integer, internal, internal, internal, internal | boolean - rum | public | tsquery_to_distance_query | tsquery | rum_distance_query - seg | public | gseg_consistent | internal, seg, smallint, oid, internal | boolean - seg | public | gseg_penalty | internal, internal, internal | internal - seg | public | gseg_picksplit | internal, internal | internal - seg | public | gseg_same | seg, seg, internal | internal - seg | public | gseg_union | internal, internal | seg - seg | public | seg_center | seg | real - seg | public | seg_cmp | seg, seg | integer - seg | public | seg_contained | seg, seg | boolean - seg | public | seg_contains | seg, seg | boolean - seg | public | seg_different | seg, seg | boolean - seg | public | seg_ge | seg, seg | boolean - seg | public | seg_gt | seg, seg | boolean - seg | public | seg_in | cstring | seg - seg | public | seg_inter | seg, seg | seg - seg | public | seg_le | seg, seg | boolean - seg | public | seg_left | seg, seg | boolean - seg | public | seg_lower | seg | real - seg | public | seg_lt | seg, seg | boolean - seg | public | seg_out | seg | cstring - seg | public | seg_over_left | seg, seg | boolean - seg | public | seg_over_right | seg, seg | boolean - seg | public | seg_overlap | seg, seg | boolean - seg | public | seg_right | seg, seg | boolean - seg | public | seg_same | seg, seg | boolean - seg | public | seg_size | seg | real - seg | public | seg_union | seg, seg | seg - seg | public | seg_upper | seg | real - sslinfo | public | ssl_cipher | | text - sslinfo | public | ssl_client_cert_present | | boolean - sslinfo | public | ssl_client_dn | | text - sslinfo | public | ssl_client_dn_field | text | text - sslinfo | public | ssl_client_serial | | numeric - sslinfo | public | ssl_extension_info | OUT name text, OUT value text, OUT critical boolean | SETOF record - sslinfo | public | ssl_is_used | | boolean - sslinfo | public | ssl_issuer_dn | | text - sslinfo | public | ssl_issuer_field | text | text - sslinfo | public | ssl_version | | text - supabase_vault | vault | _crypto_aead_det_decrypt | message bytea, additional bytea, key_id bigint, context bytea, nonce bytea | bytea - supabase_vault | vault | _crypto_aead_det_encrypt | message bytea, additional bytea, key_id bigint, context bytea, nonce bytea | bytea - supabase_vault | vault | _crypto_aead_det_noncegen | | bytea - supabase_vault | vault | create_secret | new_secret text, new_name text, new_description text, new_key_id uuid | uuid - supabase_vault | vault | update_secret | secret_id uuid, new_secret text, new_name text, new_description text, new_key_id uuid | void - tablefunc | public | connectby | text, text, text, text, integer, text | SETOF record - tablefunc | public | connectby | text, text, text, text, text, integer, text | SETOF record - tablefunc | public | connectby | text, text, text, text, integer | SETOF record - tablefunc | public | connectby | text, text, text, text, text, integer | SETOF record - tablefunc | public | crosstab | text | SETOF record - tablefunc | public | crosstab | text, integer | SETOF record - tablefunc | public | crosstab | text, text | SETOF record - tablefunc | public | crosstab2 | text | SETOF tablefunc_crosstab_2 - tablefunc | public | crosstab3 | text | SETOF tablefunc_crosstab_3 - tablefunc | public | crosstab4 | text | SETOF tablefunc_crosstab_4 - tablefunc | public | normal_rand | integer, double precision, double precision | SETOF double precision - tcn | public | triggered_change_notification | | trigger - tsm_system_rows | public | system_rows | internal | tsm_handler - unaccent | public | unaccent | text | text - unaccent | public | unaccent | regdictionary, text | text - unaccent | public | unaccent_init | internal | internal - unaccent | public | unaccent_lexize | internal, internal, internal, internal | internal - uuid-ossp | extensions | uuid_generate_v1 | | uuid - uuid-ossp | extensions | uuid_generate_v1mc | | uuid - uuid-ossp | extensions | uuid_generate_v3 | namespace uuid, name text | uuid - uuid-ossp | extensions | uuid_generate_v4 | | uuid - uuid-ossp | extensions | uuid_generate_v5 | namespace uuid, name text | uuid - uuid-ossp | extensions | uuid_nil | | uuid - uuid-ossp | extensions | uuid_ns_dns | | uuid - uuid-ossp | extensions | uuid_ns_oid | | uuid - uuid-ossp | extensions | uuid_ns_url | | uuid - uuid-ossp | extensions | uuid_ns_x500 | | uuid - vector | public | array_to_halfvec | real[], integer, boolean | halfvec - vector | public | array_to_halfvec | integer[], integer, boolean | halfvec - vector | public | array_to_halfvec | numeric[], integer, boolean | halfvec - vector | public | array_to_halfvec | double precision[], integer, boolean | halfvec - vector | public | array_to_sparsevec | real[], integer, boolean | sparsevec - vector | public | array_to_sparsevec | integer[], integer, boolean | sparsevec - vector | public | array_to_sparsevec | numeric[], integer, boolean | sparsevec - vector | public | array_to_sparsevec | double precision[], integer, boolean | sparsevec - vector | public | array_to_vector | real[], integer, boolean | vector - vector | public | array_to_vector | integer[], integer, boolean | vector - vector | public | array_to_vector | numeric[], integer, boolean | vector - vector | public | array_to_vector | double precision[], integer, boolean | vector - vector | public | avg | vector | vector - vector | public | avg | halfvec | halfvec - vector | public | binary_quantize | vector | bit - vector | public | binary_quantize | halfvec | bit - vector | public | cosine_distance | vector, vector | double precision - vector | public | cosine_distance | halfvec, halfvec | double precision - vector | public | cosine_distance | sparsevec, sparsevec | double precision - vector | public | halfvec | halfvec, integer, boolean | halfvec - vector | public | halfvec_accum | double precision[], halfvec | double precision[] - vector | public | halfvec_add | halfvec, halfvec | halfvec - vector | public | halfvec_avg | double precision[] | halfvec - vector | public | halfvec_cmp | halfvec, halfvec | integer - vector | public | halfvec_combine | double precision[], double precision[] | double precision[] - vector | public | halfvec_concat | halfvec, halfvec | halfvec - vector | public | halfvec_eq | halfvec, halfvec | boolean - vector | public | halfvec_ge | halfvec, halfvec | boolean - vector | public | halfvec_gt | halfvec, halfvec | boolean - vector | public | halfvec_in | cstring, oid, integer | halfvec - vector | public | halfvec_l2_squared_distance | halfvec, halfvec | double precision - vector | public | halfvec_le | halfvec, halfvec | boolean - vector | public | halfvec_lt | halfvec, halfvec | boolean - vector | public | halfvec_mul | halfvec, halfvec | halfvec - vector | public | halfvec_ne | halfvec, halfvec | boolean - vector | public | halfvec_negative_inner_product | halfvec, halfvec | double precision - vector | public | halfvec_out | halfvec | cstring - vector | public | halfvec_recv | internal, oid, integer | halfvec - vector | public | halfvec_send | halfvec | bytea - vector | public | halfvec_spherical_distance | halfvec, halfvec | double precision - vector | public | halfvec_sub | halfvec, halfvec | halfvec - vector | public | halfvec_to_float4 | halfvec, integer, boolean | real[] - vector | public | halfvec_to_sparsevec | halfvec, integer, boolean | sparsevec - vector | public | halfvec_to_vector | halfvec, integer, boolean | vector - vector | public | halfvec_typmod_in | cstring[] | integer - vector | public | hamming_distance | bit, bit | double precision - vector | public | hnsw_bit_support | internal | internal - vector | public | hnsw_halfvec_support | internal | internal - vector | public | hnsw_sparsevec_support | internal | internal - vector | public | hnswhandler | internal | index_am_handler - vector | public | inner_product | vector, vector | double precision - vector | public | inner_product | halfvec, halfvec | double precision - vector | public | inner_product | sparsevec, sparsevec | double precision - vector | public | ivfflat_bit_support | internal | internal - vector | public | ivfflat_halfvec_support | internal | internal - vector | public | ivfflathandler | internal | index_am_handler - vector | public | jaccard_distance | bit, bit | double precision - vector | public | l1_distance | vector, vector | double precision - vector | public | l1_distance | halfvec, halfvec | double precision - vector | public | l1_distance | sparsevec, sparsevec | double precision - vector | public | l2_distance | vector, vector | double precision - vector | public | l2_distance | halfvec, halfvec | double precision - vector | public | l2_distance | sparsevec, sparsevec | double precision - vector | public | l2_norm | halfvec | double precision - vector | public | l2_norm | sparsevec | double precision - vector | public | l2_normalize | vector | vector - vector | public | l2_normalize | halfvec | halfvec - vector | public | l2_normalize | sparsevec | sparsevec - vector | public | sparsevec | sparsevec, integer, boolean | sparsevec - vector | public | sparsevec_cmp | sparsevec, sparsevec | integer - vector | public | sparsevec_eq | sparsevec, sparsevec | boolean - vector | public | sparsevec_ge | sparsevec, sparsevec | boolean - vector | public | sparsevec_gt | sparsevec, sparsevec | boolean - vector | public | sparsevec_in | cstring, oid, integer | sparsevec - vector | public | sparsevec_l2_squared_distance | sparsevec, sparsevec | double precision - vector | public | sparsevec_le | sparsevec, sparsevec | boolean - vector | public | sparsevec_lt | sparsevec, sparsevec | boolean - vector | public | sparsevec_ne | sparsevec, sparsevec | boolean - vector | public | sparsevec_negative_inner_product | sparsevec, sparsevec | double precision - vector | public | sparsevec_out | sparsevec | cstring - vector | public | sparsevec_recv | internal, oid, integer | sparsevec - vector | public | sparsevec_send | sparsevec | bytea - vector | public | sparsevec_to_halfvec | sparsevec, integer, boolean | halfvec - vector | public | sparsevec_to_vector | sparsevec, integer, boolean | vector - vector | public | sparsevec_typmod_in | cstring[] | integer - vector | public | subvector | halfvec, integer, integer | halfvec - vector | public | subvector | vector, integer, integer | vector - vector | public | sum | vector | vector - vector | public | sum | halfvec | halfvec - vector | public | vector | vector, integer, boolean | vector - vector | public | vector_accum | double precision[], vector | double precision[] - vector | public | vector_add | vector, vector | vector - vector | public | vector_avg | double precision[] | vector - vector | public | vector_cmp | vector, vector | integer - vector | public | vector_combine | double precision[], double precision[] | double precision[] - vector | public | vector_concat | vector, vector | vector - vector | public | vector_dims | vector | integer - vector | public | vector_dims | halfvec | integer - vector | public | vector_eq | vector, vector | boolean - vector | public | vector_ge | vector, vector | boolean - vector | public | vector_gt | vector, vector | boolean - vector | public | vector_in | cstring, oid, integer | vector - vector | public | vector_l2_squared_distance | vector, vector | double precision - vector | public | vector_le | vector, vector | boolean - vector | public | vector_lt | vector, vector | boolean - vector | public | vector_mul | vector, vector | vector - vector | public | vector_ne | vector, vector | boolean - vector | public | vector_negative_inner_product | vector, vector | double precision - vector | public | vector_norm | vector | double precision - vector | public | vector_out | vector | cstring - vector | public | vector_recv | internal, oid, integer | vector - vector | public | vector_send | vector | bytea - vector | public | vector_spherical_distance | vector, vector | double precision - vector | public | vector_sub | vector, vector | vector - vector | public | vector_to_float4 | vector, integer, boolean | real[] - vector | public | vector_to_halfvec | vector, integer, boolean | halfvec - vector | public | vector_to_sparsevec | vector, integer, boolean | sparsevec - vector | public | vector_typmod_in | cstring[] | integer - wrappers | public | airtable_fdw_handler | | fdw_handler - wrappers | public | airtable_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | airtable_fdw_validator | options text[], catalog oid | void - wrappers | public | auth0_fdw_handler | | fdw_handler - wrappers | public | auth0_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | auth0_fdw_validator | options text[], catalog oid | void - wrappers | public | big_query_fdw_handler | | fdw_handler - wrappers | public | big_query_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | big_query_fdw_validator | options text[], catalog oid | void - wrappers | public | click_house_fdw_handler | | fdw_handler - wrappers | public | click_house_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | click_house_fdw_validator | options text[], catalog oid | void - wrappers | public | cognito_fdw_handler | | fdw_handler - wrappers | public | cognito_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | cognito_fdw_validator | options text[], catalog oid | void - wrappers | public | duckdb_fdw_handler | | fdw_handler - wrappers | public | duckdb_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | duckdb_fdw_validator | options text[], catalog oid | void - wrappers | public | firebase_fdw_handler | | fdw_handler - wrappers | public | firebase_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | firebase_fdw_validator | options text[], catalog oid | void - wrappers | public | hello_world_fdw_handler | | fdw_handler - wrappers | public | hello_world_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | hello_world_fdw_validator | options text[], catalog oid | void - wrappers | public | iceberg_fdw_handler | | fdw_handler - wrappers | public | iceberg_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | iceberg_fdw_validator | options text[], catalog oid | void - wrappers | public | logflare_fdw_handler | | fdw_handler - wrappers | public | logflare_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | logflare_fdw_validator | options text[], catalog oid | void - wrappers | public | mssql_fdw_handler | | fdw_handler - wrappers | public | mssql_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | mssql_fdw_validator | options text[], catalog oid | void - wrappers | public | redis_fdw_handler | | fdw_handler - wrappers | public | redis_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | redis_fdw_validator | options text[], catalog oid | void - wrappers | public | s3_fdw_handler | | fdw_handler - wrappers | public | s3_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | s3_fdw_validator | options text[], catalog oid | void - wrappers | public | stripe_fdw_handler | | fdw_handler - wrappers | public | stripe_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | stripe_fdw_validator | options text[], catalog oid | void - wrappers | public | wasm_fdw_handler | | fdw_handler - wrappers | public | wasm_fdw_meta | | TABLE(name text, version text, author text, website text) - wrappers | public | wasm_fdw_validator | options text[], catalog oid | void - xml2 | public | xml_encode_special_chars | text | text - xml2 | public | xml_valid | text | boolean - xml2 | public | xpath_bool | text, text | boolean - xml2 | public | xpath_list | text, text | text - xml2 | public | xpath_list | text, text, text | text - xml2 | public | xpath_nodeset | text, text, text, text | text - xml2 | public | xpath_nodeset | text, text | text - xml2 | public | xpath_nodeset | text, text, text | text - xml2 | public | xpath_number | text, text | real - xml2 | public | xpath_string | text, text | text - xml2 | public | xpath_table | text, text, text, text, text | SETOF record - xml2 | public | xslt_process | text, text | text - xml2 | public | xslt_process | text, text, text | text -(4728 rows) - +ERROR: current transaction is aborted, commands ignored until end of transaction block /* Monitor extension public table/view/matview/index interface @@ -4917,396 +186,6 @@ order by n.nspname, pc.relname, pa.attname; - extension_name | schema_name | entity_name | attname -------------------------------+-------------+-------------------------+------------------------ - address_standardizer_data_us | public | us_gaz | id - address_standardizer_data_us | public | us_gaz | is_custom - address_standardizer_data_us | public | us_gaz | seq - address_standardizer_data_us | public | us_gaz | stdword - address_standardizer_data_us | public | us_gaz | token - address_standardizer_data_us | public | us_gaz | word - address_standardizer_data_us | public | us_lex | id - address_standardizer_data_us | public | us_lex | is_custom - address_standardizer_data_us | public | us_lex | seq - address_standardizer_data_us | public | us_lex | stdword - address_standardizer_data_us | public | us_lex | token - address_standardizer_data_us | public | us_lex | word - address_standardizer_data_us | public | us_rules | id - address_standardizer_data_us | public | us_rules | is_custom - address_standardizer_data_us | public | us_rules | rule - hypopg | public | hypopg_hidden_indexes | am_name - hypopg | public | hypopg_hidden_indexes | index_name - hypopg | public | hypopg_hidden_indexes | indexrelid - hypopg | public | hypopg_hidden_indexes | is_hypo - hypopg | public | hypopg_hidden_indexes | schema_name - hypopg | public | hypopg_hidden_indexes | table_name - hypopg | public | hypopg_list_indexes | am_name - hypopg | public | hypopg_list_indexes | index_name - hypopg | public | hypopg_list_indexes | indexrelid - hypopg | public | hypopg_list_indexes | schema_name - hypopg | public | hypopg_list_indexes | table_name - pg_buffercache | public | pg_buffercache | bufferid - pg_buffercache | public | pg_buffercache | isdirty - pg_buffercache | public | pg_buffercache | pinning_backends - pg_buffercache | public | pg_buffercache | relblocknumber - pg_buffercache | public | pg_buffercache | reldatabase - pg_buffercache | public | pg_buffercache | relfilenode - pg_buffercache | public | pg_buffercache | relforknumber - pg_buffercache | public | pg_buffercache | reltablespace - pg_buffercache | public | pg_buffercache | usagecount - pg_net | net | _http_response | content - pg_net | net | _http_response | content_type - pg_net | net | _http_response | created - pg_net | net | _http_response | error_msg - pg_net | net | _http_response | headers - pg_net | net | _http_response | id - pg_net | net | _http_response | status_code - pg_net | net | _http_response | timed_out - pg_net | net | http_request_queue | body - pg_net | net | http_request_queue | headers - pg_net | net | http_request_queue | id - pg_net | net | http_request_queue | method - pg_net | net | http_request_queue | timeout_milliseconds - pg_net | net | http_request_queue | url - pg_repack | repack | primary_keys | indexrelid - pg_repack | repack | primary_keys | indrelid - pg_repack | repack | tables | alter_col_storage - pg_repack | repack | tables | ckey - pg_repack | repack | tables | ckid - pg_repack | repack | tables | copy_data - pg_repack | repack | tables | create_log - pg_repack | repack | tables | create_pktype - pg_repack | repack | tables | create_table - pg_repack | repack | tables | create_trigger - pg_repack | repack | tables | delete_log - pg_repack | repack | tables | drop_columns - pg_repack | repack | tables | enable_trigger - pg_repack | repack | tables | lock_table - pg_repack | repack | tables | pkid - pg_repack | repack | tables | relid - pg_repack | repack | tables | relname - pg_repack | repack | tables | reltoastidxid - pg_repack | repack | tables | reltoastrelid - pg_repack | repack | tables | schemaname - pg_repack | repack | tables | sql_delete - pg_repack | repack | tables | sql_insert - pg_repack | repack | tables | sql_peek - pg_repack | repack | tables | sql_pop - pg_repack | repack | tables | sql_update - pg_repack | repack | tables | tablespace_orig - pg_stat_monitor | public | pg_stat_monitor | application_name - pg_stat_monitor | public | pg_stat_monitor | bucket - pg_stat_monitor | public | pg_stat_monitor | bucket_done - pg_stat_monitor | public | pg_stat_monitor | bucket_start_time - pg_stat_monitor | public | pg_stat_monitor | calls - pg_stat_monitor | public | pg_stat_monitor | client_ip - pg_stat_monitor | public | pg_stat_monitor | cmd_type - pg_stat_monitor | public | pg_stat_monitor | cmd_type_text - pg_stat_monitor | public | pg_stat_monitor | comments - pg_stat_monitor | public | pg_stat_monitor | cpu_sys_time - pg_stat_monitor | public | pg_stat_monitor | cpu_user_time - pg_stat_monitor | public | pg_stat_monitor | datname - pg_stat_monitor | public | pg_stat_monitor | dbid - pg_stat_monitor | public | pg_stat_monitor | elevel - pg_stat_monitor | public | pg_stat_monitor | jit_deform_count - pg_stat_monitor | public | pg_stat_monitor | jit_deform_time - pg_stat_monitor | public | pg_stat_monitor | jit_emission_count - pg_stat_monitor | public | pg_stat_monitor | jit_emission_time - pg_stat_monitor | public | pg_stat_monitor | jit_functions - pg_stat_monitor | public | pg_stat_monitor | jit_generation_time - pg_stat_monitor | public | pg_stat_monitor | jit_inlining_count - pg_stat_monitor | public | pg_stat_monitor | jit_inlining_time - pg_stat_monitor | public | pg_stat_monitor | jit_optimization_count - pg_stat_monitor | public | pg_stat_monitor | jit_optimization_time - pg_stat_monitor | public | pg_stat_monitor | local_blk_read_time - pg_stat_monitor | public | pg_stat_monitor | local_blk_write_time - pg_stat_monitor | public | pg_stat_monitor | local_blks_dirtied - pg_stat_monitor | public | pg_stat_monitor | local_blks_hit - pg_stat_monitor | public | pg_stat_monitor | local_blks_read - pg_stat_monitor | public | pg_stat_monitor | local_blks_written - pg_stat_monitor | public | pg_stat_monitor | max_exec_time - pg_stat_monitor | public | pg_stat_monitor | max_plan_time - pg_stat_monitor | public | pg_stat_monitor | mean_exec_time - pg_stat_monitor | public | pg_stat_monitor | mean_plan_time - pg_stat_monitor | public | pg_stat_monitor | message - pg_stat_monitor | public | pg_stat_monitor | min_exec_time - pg_stat_monitor | public | pg_stat_monitor | min_plan_time - pg_stat_monitor | public | pg_stat_monitor | minmax_stats_since - pg_stat_monitor | public | pg_stat_monitor | pgsm_query_id - pg_stat_monitor | public | pg_stat_monitor | planid - pg_stat_monitor | public | pg_stat_monitor | plans - pg_stat_monitor | public | pg_stat_monitor | query - pg_stat_monitor | public | pg_stat_monitor | query_plan - pg_stat_monitor | public | pg_stat_monitor | queryid - pg_stat_monitor | public | pg_stat_monitor | relations - pg_stat_monitor | public | pg_stat_monitor | resp_calls - pg_stat_monitor | public | pg_stat_monitor | rows - pg_stat_monitor | public | pg_stat_monitor | shared_blk_read_time - pg_stat_monitor | public | pg_stat_monitor | shared_blk_write_time - pg_stat_monitor | public | pg_stat_monitor | shared_blks_dirtied - pg_stat_monitor | public | pg_stat_monitor | shared_blks_hit - pg_stat_monitor | public | pg_stat_monitor | shared_blks_read - pg_stat_monitor | public | pg_stat_monitor | shared_blks_written - pg_stat_monitor | public | pg_stat_monitor | sqlcode - pg_stat_monitor | public | pg_stat_monitor | stats_since - pg_stat_monitor | public | pg_stat_monitor | stddev_exec_time - pg_stat_monitor | public | pg_stat_monitor | stddev_plan_time - pg_stat_monitor | public | pg_stat_monitor | temp_blk_read_time - pg_stat_monitor | public | pg_stat_monitor | temp_blk_write_time - pg_stat_monitor | public | pg_stat_monitor | temp_blks_read - pg_stat_monitor | public | pg_stat_monitor | temp_blks_written - pg_stat_monitor | public | pg_stat_monitor | top_query - pg_stat_monitor | public | pg_stat_monitor | top_queryid - pg_stat_monitor | public | pg_stat_monitor | toplevel - pg_stat_monitor | public | pg_stat_monitor | total_exec_time - pg_stat_monitor | public | pg_stat_monitor | total_plan_time - pg_stat_monitor | public | pg_stat_monitor | userid - pg_stat_monitor | public | pg_stat_monitor | username - pg_stat_monitor | public | pg_stat_monitor | wal_bytes - pg_stat_monitor | public | pg_stat_monitor | wal_fpi - pg_stat_monitor | public | pg_stat_monitor | wal_records - pg_stat_statements | extensions | pg_stat_statements | calls - pg_stat_statements | extensions | pg_stat_statements | dbid - pg_stat_statements | extensions | pg_stat_statements | jit_deform_count - pg_stat_statements | extensions | pg_stat_statements | jit_deform_time - pg_stat_statements | extensions | pg_stat_statements | jit_emission_count - pg_stat_statements | extensions | pg_stat_statements | jit_emission_time - pg_stat_statements | extensions | pg_stat_statements | jit_functions - pg_stat_statements | extensions | pg_stat_statements | jit_generation_time - pg_stat_statements | extensions | pg_stat_statements | jit_inlining_count - pg_stat_statements | extensions | pg_stat_statements | jit_inlining_time - pg_stat_statements | extensions | pg_stat_statements | jit_optimization_count - pg_stat_statements | extensions | pg_stat_statements | jit_optimization_time - pg_stat_statements | extensions | pg_stat_statements | local_blk_read_time - pg_stat_statements | extensions | pg_stat_statements | local_blk_write_time - pg_stat_statements | extensions | pg_stat_statements | local_blks_dirtied - pg_stat_statements | extensions | pg_stat_statements | local_blks_hit - pg_stat_statements | extensions | pg_stat_statements | local_blks_read - pg_stat_statements | extensions | pg_stat_statements | local_blks_written - pg_stat_statements | extensions | pg_stat_statements | max_exec_time - pg_stat_statements | extensions | pg_stat_statements | max_plan_time - pg_stat_statements | extensions | pg_stat_statements | mean_exec_time - pg_stat_statements | extensions | pg_stat_statements | mean_plan_time - pg_stat_statements | extensions | pg_stat_statements | min_exec_time - pg_stat_statements | extensions | pg_stat_statements | min_plan_time - pg_stat_statements | extensions | pg_stat_statements | minmax_stats_since - pg_stat_statements | extensions | pg_stat_statements | plans - pg_stat_statements | extensions | pg_stat_statements | query - pg_stat_statements | extensions | pg_stat_statements | queryid - pg_stat_statements | extensions | pg_stat_statements | rows - pg_stat_statements | extensions | pg_stat_statements | shared_blk_read_time - pg_stat_statements | extensions | pg_stat_statements | shared_blk_write_time - pg_stat_statements | extensions | pg_stat_statements | shared_blks_dirtied - pg_stat_statements | extensions | pg_stat_statements | shared_blks_hit - pg_stat_statements | extensions | pg_stat_statements | shared_blks_read - pg_stat_statements | extensions | pg_stat_statements | shared_blks_written - pg_stat_statements | extensions | pg_stat_statements | stats_since - pg_stat_statements | extensions | pg_stat_statements | stddev_exec_time - pg_stat_statements | extensions | pg_stat_statements | stddev_plan_time - pg_stat_statements | extensions | pg_stat_statements | temp_blk_read_time - pg_stat_statements | extensions | pg_stat_statements | temp_blk_write_time - pg_stat_statements | extensions | pg_stat_statements | temp_blks_read - pg_stat_statements | extensions | pg_stat_statements | temp_blks_written - pg_stat_statements | extensions | pg_stat_statements | toplevel - pg_stat_statements | extensions | pg_stat_statements | total_exec_time - pg_stat_statements | extensions | pg_stat_statements | total_plan_time - pg_stat_statements | extensions | pg_stat_statements | userid - pg_stat_statements | extensions | pg_stat_statements | wal_bytes - pg_stat_statements | extensions | pg_stat_statements | wal_fpi - pg_stat_statements | extensions | pg_stat_statements | wal_records - pg_stat_statements | extensions | pg_stat_statements_info | dealloc - pg_stat_statements | extensions | pg_stat_statements_info | stats_reset - pg_tle | pgtle | feature_info | feature - pg_tle | pgtle | feature_info | obj_identity - pg_tle | pgtle | feature_info | proname - pg_tle | pgtle | feature_info | schema_name - pgmq | pgmq | a_foo | archived_at - pgmq | pgmq | a_foo | enqueued_at - pgmq | pgmq | a_foo | headers - pgmq | pgmq | a_foo | message - pgmq | pgmq | a_foo | msg_id - pgmq | pgmq | a_foo | read_ct - pgmq | pgmq | a_foo | vt - pgmq | pgmq | meta | created_at - pgmq | pgmq | meta | is_partitioned - pgmq | pgmq | meta | is_unlogged - pgmq | pgmq | meta | queue_name - pgmq | pgmq | q_foo | enqueued_at - pgmq | pgmq | q_foo | headers - pgmq | pgmq | q_foo | message - pgmq | pgmq | q_foo | msg_id - pgmq | pgmq | q_foo | read_ct - pgmq | pgmq | q_foo | vt - pgsodium | pgsodium | decrypted_key | associated_data - pgsodium | pgsodium | decrypted_key | comment - pgsodium | pgsodium | decrypted_key | created - pgsodium | pgsodium | decrypted_key | decrypted_raw_key - pgsodium | pgsodium | decrypted_key | expires - pgsodium | pgsodium | decrypted_key | id - pgsodium | pgsodium | decrypted_key | key_context - pgsodium | pgsodium | decrypted_key | key_id - pgsodium | pgsodium | decrypted_key | key_type - pgsodium | pgsodium | decrypted_key | name - pgsodium | pgsodium | decrypted_key | parent_key - pgsodium | pgsodium | decrypted_key | raw_key - pgsodium | pgsodium | decrypted_key | raw_key_nonce - pgsodium | pgsodium | decrypted_key | status - pgsodium | pgsodium | key | associated_data - pgsodium | pgsodium | key | comment - pgsodium | pgsodium | key | created - pgsodium | pgsodium | key | expires - pgsodium | pgsodium | key | id - pgsodium | pgsodium | key | key_context - pgsodium | pgsodium | key | key_id - pgsodium | pgsodium | key | key_type - pgsodium | pgsodium | key | name - pgsodium | pgsodium | key | parent_key - pgsodium | pgsodium | key | raw_key - pgsodium | pgsodium | key | raw_key_nonce - pgsodium | pgsodium | key | status - pgsodium | pgsodium | key | user_data - pgsodium | pgsodium | mask_columns | associated_columns - pgsodium | pgsodium | mask_columns | attname - pgsodium | pgsodium | mask_columns | attrelid - pgsodium | pgsodium | mask_columns | format_type - pgsodium | pgsodium | mask_columns | key_id - pgsodium | pgsodium | mask_columns | key_id_column - pgsodium | pgsodium | mask_columns | nonce_column - pgsodium | pgsodium | masking_rule | associated_columns - pgsodium | pgsodium | masking_rule | attname - pgsodium | pgsodium | masking_rule | attnum - pgsodium | pgsodium | masking_rule | attrelid - pgsodium | pgsodium | masking_rule | col_description - pgsodium | pgsodium | masking_rule | format_type - pgsodium | pgsodium | masking_rule | key_id - pgsodium | pgsodium | masking_rule | key_id_column - pgsodium | pgsodium | masking_rule | nonce_column - pgsodium | pgsodium | masking_rule | priority - pgsodium | pgsodium | masking_rule | relname - pgsodium | pgsodium | masking_rule | relnamespace - pgsodium | pgsodium | masking_rule | security_invoker - pgsodium | pgsodium | masking_rule | view_name - pgsodium | pgsodium | valid_key | associated_data - pgsodium | pgsodium | valid_key | created - pgsodium | pgsodium | valid_key | expires - pgsodium | pgsodium | valid_key | id - pgsodium | pgsodium | valid_key | key_context - pgsodium | pgsodium | valid_key | key_id - pgsodium | pgsodium | valid_key | key_type - pgsodium | pgsodium | valid_key | name - pgsodium | pgsodium | valid_key | status - pgtap | public | pg_all_foreign_keys | fk_columns - pgtap | public | pg_all_foreign_keys | fk_constraint_name - pgtap | public | pg_all_foreign_keys | fk_schema_name - pgtap | public | pg_all_foreign_keys | fk_table_name - pgtap | public | pg_all_foreign_keys | fk_table_oid - pgtap | public | pg_all_foreign_keys | is_deferrable - pgtap | public | pg_all_foreign_keys | is_deferred - pgtap | public | pg_all_foreign_keys | match_type - pgtap | public | pg_all_foreign_keys | on_delete - pgtap | public | pg_all_foreign_keys | on_update - pgtap | public | pg_all_foreign_keys | pk_columns - pgtap | public | pg_all_foreign_keys | pk_constraint_name - pgtap | public | pg_all_foreign_keys | pk_index_name - pgtap | public | pg_all_foreign_keys | pk_schema_name - pgtap | public | pg_all_foreign_keys | pk_table_name - pgtap | public | pg_all_foreign_keys | pk_table_oid - pgtap | public | tap_funky | args - pgtap | public | tap_funky | is_definer - pgtap | public | tap_funky | is_strict - pgtap | public | tap_funky | is_visible - pgtap | public | tap_funky | kind - pgtap | public | tap_funky | langoid - pgtap | public | tap_funky | name - pgtap | public | tap_funky | oid - pgtap | public | tap_funky | owner - pgtap | public | tap_funky | returns - pgtap | public | tap_funky | returns_set - pgtap | public | tap_funky | schema - pgtap | public | tap_funky | volatility - postgis | public | geography_columns | coord_dimension - postgis | public | geography_columns | f_geography_column - postgis | public | geography_columns | f_table_catalog - postgis | public | geography_columns | f_table_name - postgis | public | geography_columns | f_table_schema - postgis | public | geography_columns | srid - postgis | public | geography_columns | type - postgis | public | geometry_columns | coord_dimension - postgis | public | geometry_columns | f_geometry_column - postgis | public | geometry_columns | f_table_catalog - postgis | public | geometry_columns | f_table_name - postgis | public | geometry_columns | f_table_schema - postgis | public | geometry_columns | srid - postgis | public | geometry_columns | type - postgis | public | spatial_ref_sys | auth_name - postgis | public | spatial_ref_sys | auth_srid - postgis | public | spatial_ref_sys | proj4text - postgis | public | spatial_ref_sys | srid - postgis | public | spatial_ref_sys | srtext - postgis_raster | public | raster_columns | blocksize_x - postgis_raster | public | raster_columns | blocksize_y - postgis_raster | public | raster_columns | extent - postgis_raster | public | raster_columns | nodata_values - postgis_raster | public | raster_columns | num_bands - postgis_raster | public | raster_columns | out_db - postgis_raster | public | raster_columns | pixel_types - postgis_raster | public | raster_columns | r_raster_column - postgis_raster | public | raster_columns | r_table_catalog - postgis_raster | public | raster_columns | r_table_name - postgis_raster | public | raster_columns | r_table_schema - postgis_raster | public | raster_columns | regular_blocking - postgis_raster | public | raster_columns | same_alignment - postgis_raster | public | raster_columns | scale_x - postgis_raster | public | raster_columns | scale_y - postgis_raster | public | raster_columns | spatial_index - postgis_raster | public | raster_columns | srid - postgis_raster | public | raster_overviews | o_raster_column - postgis_raster | public | raster_overviews | o_table_catalog - postgis_raster | public | raster_overviews | o_table_name - postgis_raster | public | raster_overviews | o_table_schema - postgis_raster | public | raster_overviews | overview_factor - postgis_raster | public | raster_overviews | r_raster_column - postgis_raster | public | raster_overviews | r_table_catalog - postgis_raster | public | raster_overviews | r_table_name - postgis_raster | public | raster_overviews | r_table_schema - postgis_topology | topology | layer | child_id - postgis_topology | topology | layer | feature_column - postgis_topology | topology | layer | feature_type - postgis_topology | topology | layer | layer_id - postgis_topology | topology | layer | level - postgis_topology | topology | layer | schema_name - postgis_topology | topology | layer | table_name - postgis_topology | topology | layer | topology_id - postgis_topology | topology | topology | hasz - postgis_topology | topology | topology | id - postgis_topology | topology | topology | name - postgis_topology | topology | topology | precision - postgis_topology | topology | topology | srid - supabase_vault | vault | decrypted_secrets | created_at - supabase_vault | vault | decrypted_secrets | decrypted_secret - supabase_vault | vault | decrypted_secrets | description - supabase_vault | vault | decrypted_secrets | id - supabase_vault | vault | decrypted_secrets | key_id - supabase_vault | vault | decrypted_secrets | name - supabase_vault | vault | decrypted_secrets | nonce - supabase_vault | vault | decrypted_secrets | secret - supabase_vault | vault | decrypted_secrets | updated_at - supabase_vault | vault | secrets | created_at - supabase_vault | vault | secrets | description - supabase_vault | vault | secrets | id - supabase_vault | vault | secrets | key_id - supabase_vault | vault | secrets | name - supabase_vault | vault | secrets | nonce - supabase_vault | vault | secrets | secret - supabase_vault | vault | secrets | updated_at - wrappers | public | wrappers_fdw_stats | bytes_in - wrappers | public | wrappers_fdw_stats | bytes_out - wrappers | public | wrappers_fdw_stats | create_times - wrappers | public | wrappers_fdw_stats | created_at - wrappers | public | wrappers_fdw_stats | fdw_name - wrappers | public | wrappers_fdw_stats | metadata - wrappers | public | wrappers_fdw_stats | rows_in - wrappers | public | wrappers_fdw_stats | rows_out - wrappers | public | wrappers_fdw_stats | updated_at -(389 rows) - +ERROR: current transaction is aborted, commands ignored until end of transaction block +-- Rollback to clean up all extensions created in this test +ROLLBACK; diff --git a/nix/tests/expected/z_orioledb-17_pg_stat_monitor.out b/nix/tests/expected/z_orioledb-17_pg_stat_monitor.out index 8b90c12fc..b6c7f680f 100644 --- a/nix/tests/expected/z_orioledb-17_pg_stat_monitor.out +++ b/nix/tests/expected/z_orioledb-17_pg_stat_monitor.out @@ -1,10 +1,15 @@ +BEGIN; +set client_min_messages = warning; +create schema if not exists extensions; +create extension if not exists pg_stat_monitor with schema extensions; select * from - pg_stat_monitor + extensions.pg_stat_monitor where false; bucket | bucket_start_time | userid | username | dbid | datname | client_ip | pgsm_query_id | queryid | toplevel | top_queryid | query | comments | planid | query_plan | top_query | application_name | relations | cmd_type | cmd_type_text | elevel | sqlcode | message | calls | total_exec_time | min_exec_time | max_exec_time | mean_exec_time | stddev_exec_time | rows | shared_blks_hit | shared_blks_read | shared_blks_dirtied | shared_blks_written | local_blks_hit | local_blks_read | local_blks_dirtied | local_blks_written | temp_blks_read | temp_blks_written | shared_blk_read_time | shared_blk_write_time | local_blk_read_time | local_blk_write_time | temp_blk_read_time | temp_blk_write_time | resp_calls | cpu_user_time | cpu_sys_time | wal_records | wal_fpi | wal_bytes | bucket_done | plans | total_plan_time | min_plan_time | max_plan_time | mean_plan_time | stddev_plan_time | jit_functions | jit_generation_time | jit_inlining_count | jit_inlining_time | jit_optimization_count | jit_optimization_time | jit_emission_count | jit_emission_time | jit_deform_count | jit_deform_time | stats_since | minmax_stats_since --------+-------------------+--------+----------+------+---------+-----------+---------------+---------+----------+-------------+-------+----------+--------+------------+-----------+------------------+-----------+----------+---------------+--------+---------+---------+-------+-----------------+---------------+---------------+----------------+------------------+------+-----------------+------------------+---------------------+---------------------+----------------+-----------------+--------------------+--------------------+----------------+-------------------+----------------------+-----------------------+---------------------+----------------------+--------------------+---------------------+------------+---------------+--------------+-------------+---------+-----------+-------------+-------+-----------------+---------------+---------------+----------------+------------------+---------------+---------------------+--------------------+-------------------+------------------------+-----------------------+--------------------+-------------------+------------------+-----------------+-------------+-------------------- (0 rows) +ROLLBACK; diff --git a/nix/tests/expected/z_orioledb-17_pgvector.out b/nix/tests/expected/z_orioledb-17_pgvector.out index 2c1cb1007..fbae83063 100644 --- a/nix/tests/expected/z_orioledb-17_pgvector.out +++ b/nix/tests/expected/z_orioledb-17_pgvector.out @@ -1,6 +1,10 @@ /* This test excludes indexes shipped with pgvector because orioledb doesn't support them yet */ +BEGIN; +set client_min_messages = warning; +create schema if not exists extensions; +create extension if not exists vector with schema extensions; create schema v; create table v.items( id serial primary key, @@ -56,4 +60,4 @@ from -- Cleanup drop schema v cascade; -NOTICE: drop cascades to table v.items +ROLLBACK; diff --git a/nix/tests/prime-production.sql b/nix/tests/prime-production.sql new file mode 100644 index 000000000..7de1cf839 --- /dev/null +++ b/nix/tests/prime-production.sql @@ -0,0 +1,30 @@ +-- Prime script for production-like setup (Phase 2: pg_regress tests) +-- This matches the initial state of a production Supabase instance +-- Only the default extensions that are enabled on project deployment are created here +-- All other extensions are created by individual test files within BEGIN/ROLLBACK blocks + +-- disable notice messages because they differ between 15 and 17 +set client_min_messages = warning; + +-- Production default extensions (enabled on every new Supabase project) +-- These match what customers see when their project is first deployed + +create extension if not exists "uuid-ossp" with schema extensions; +create extension if not exists pgcrypto with schema extensions; +create extension if not exists pg_graphql with schema graphql; +create extension if not exists pg_stat_statements with schema extensions; + +-- Additional extensions commonly used in production that need security vetting +-- These create SECURITY DEFINER functions that must be validated by the security test +create extension if not exists dblink with schema extensions; +create extension if not exists pgaudit with schema extensions; +create extension if not exists postgis with schema extensions; +create extension if not exists pg_repack with schema extensions; + +-- pgsodium is non-relocatable (schema = pgsodium) and creates SECURITY DEFINER functions +-- Note: vault 0.3.0+ removed pgsodium dependency, so migration only creates pgsodium for vault 0.2.8 +-- We create it here explicitly for testing pgsodium's SECURITY DEFINER functions +create extension if not exists pgsodium; + +-- Note: plpgsql is already installed by default in PostgreSQL (pg_catalog schema) +-- Note: supabase_vault is created by migrations (20221207154255_create_pgsodium_and_vault.sql) diff --git a/nix/tests/sql/evtrigs.sql b/nix/tests/sql/evtrigs.sql index cfbb201aa..78895693d 100644 --- a/nix/tests/sql/evtrigs.sql +++ b/nix/tests/sql/evtrigs.sql @@ -1,3 +1,7 @@ +BEGIN; + +set client_min_messages = warning; + select e.evtname, e.evtowner::regrole as evtowner, @@ -10,3 +14,4 @@ join pg_proc p join pg_namespace n_func on p.pronamespace = n_func.oid where p.prorettype = 'event_trigger'::regtype; +ROLLBACK; diff --git a/nix/tests/sql/extensions_schema.sql b/nix/tests/sql/extensions_schema.sql index f3d0b3528..d49d9c904 100644 --- a/nix/tests/sql/extensions_schema.sql +++ b/nix/tests/sql/extensions_schema.sql @@ -1,3 +1,7 @@ +BEGIN; + +set client_min_messages = warning; + -- all default extensions are installed in a schema "extensions" -- we don't include the version as that will break often, we only care about -- ensuring these extensions are present @@ -13,3 +17,4 @@ where n.nspname = 'extensions' and e.extname != 'pgjwt' order by e.extname; +ROLLBACK; diff --git a/nix/tests/sql/http.sql b/nix/tests/sql/http.sql index df80feb52..a384b405f 100644 --- a/nix/tests/sql/http.sql +++ b/nix/tests/sql/http.sql @@ -1,6 +1,11 @@ -- Test for http extension -- Basic HTTP functionality tests +BEGIN; + +set client_min_messages = warning; +create extension if not exists http with schema extensions; + -- Test basic HTTP GET request SELECT status FROM http_get('http://localhost:' || (SELECT value FROM test_config WHERE key = 'http_mock_port') || '/get'); @@ -63,3 +68,5 @@ SELECT status FROM http(( -- Test URL encoding SELECT status FROM http_get('http://localhost:' || (SELECT value FROM test_config WHERE key = 'http_mock_port') || '/anything?param=value%20with%20spaces&another=123'); + +ROLLBACK; diff --git a/nix/tests/sql/hypopg.sql b/nix/tests/sql/hypopg.sql index 6aabb6950..3be1912dc 100644 --- a/nix/tests/sql/hypopg.sql +++ b/nix/tests/sql/hypopg.sql @@ -1,3 +1,8 @@ +BEGIN; + +set client_min_messages = warning; +create extension if not exists hypopg with schema extensions; + create schema v; create table v.samp( @@ -10,4 +15,6 @@ $$); drop schema v cascade; +ROLLBACK; + diff --git a/nix/tests/sql/index_advisor.sql b/nix/tests/sql/index_advisor.sql index 3911d6eb5..40b15ce51 100644 --- a/nix/tests/sql/index_advisor.sql +++ b/nix/tests/sql/index_advisor.sql @@ -1,3 +1,9 @@ +BEGIN; + +set client_min_messages = warning; +create extension if not exists hypopg with schema extensions; +create extension if not exists index_advisor with schema extensions; + create schema v; create table v.book( @@ -11,3 +17,5 @@ from index_advisor('select id from v.book where title = $1'); drop schema v cascade; + +ROLLBACK; diff --git a/nix/tests/sql/pg_hashids.sql b/nix/tests/sql/pg_hashids.sql index 1b82eeead..1488f8704 100644 --- a/nix/tests/sql/pg_hashids.sql +++ b/nix/tests/sql/pg_hashids.sql @@ -1,6 +1,13 @@ +BEGIN; + +set client_min_messages = warning; +create extension if not exists pg_hashids with schema extensions; + select id_encode(1001); -- Result: jNl select id_encode(1234567, 'This is my salt'); -- Result: Pdzxp select id_encode(1234567, 'This is my salt', 10); -- Result: PlRPdzxpR7 select id_encode(1234567, 'This is my salt', 10, 'abcdefghijABCDxFGHIJ1234567890'); -- Result: 3GJ956J9B9 select id_decode('PlRPdzxpR7', 'This is my salt', 10); -- Result: 1234567 select id_decode('3GJ956J9B9', 'This is my salt', 10, 'abcdefghijABCDxFGHIJ1234567890'); -- Result: 1234567 + +ROLLBACK; diff --git a/nix/tests/sql/pg_jsonschema.sql b/nix/tests/sql/pg_jsonschema.sql index f5d7c8c77..67e70c18b 100644 --- a/nix/tests/sql/pg_jsonschema.sql +++ b/nix/tests/sql/pg_jsonschema.sql @@ -1,5 +1,8 @@ begin; +set client_min_messages = warning; +create extension if not exists pg_jsonschema with schema extensions; + -- Test json_matches_schema create table customer( id serial primary key, diff --git a/nix/tests/sql/pg_net.sql b/nix/tests/sql/pg_net.sql index bf44db5a3..339628018 100644 --- a/nix/tests/sql/pg_net.sql +++ b/nix/tests/sql/pg_net.sql @@ -1,3 +1,8 @@ +BEGIN; + +set client_min_messages = warning; +create extension if not exists pg_net with schema extensions; + -- This is a very basic test because you can't get the value returned -- by a pg_net request in the same transaction that created it; @@ -5,3 +10,5 @@ select net.http_get ( 'https://postman-echo.com/get?foo1=bar1&foo2=bar2' ) as request_id; + +ROLLBACK; diff --git a/nix/tests/sql/pg_tle.sql b/nix/tests/sql/pg_tle.sql index 2f6d71a05..6c4019e29 100644 --- a/nix/tests/sql/pg_tle.sql +++ b/nix/tests/sql/pg_tle.sql @@ -1,4 +1,8 @@ +BEGIN; + set client_min_messages = warning; +create schema if not exists pgtle; +create extension if not exists pg_tle with schema pgtle; select pgtle.install_extension( @@ -67,7 +71,4 @@ drop extension pg_distance; select pgtle.uninstall_extension('pg_distance'); --- Restore original state if any of the above fails -drop extension pg_tle cascade; - -create extension pg_tle; +ROLLBACK; diff --git a/nix/tests/sql/pgmq.sql b/nix/tests/sql/pgmq.sql index dffb108bf..57db8c791 100644 --- a/nix/tests/sql/pgmq.sql +++ b/nix/tests/sql/pgmq.sql @@ -1,3 +1,8 @@ +BEGIN; + +set client_min_messages = warning; +create extension if not exists pgmq; -- pgmq is non-relocatable (schema = 'pgmq') + -- Test the standard flow select pgmq.create('Foo'); @@ -81,9 +86,18 @@ select -- Make sure SQLI enabling characters are blocked +-- Use savepoints to test error conditions without aborting the transaction +SAVEPOINT test_invalid_names_1; select pgmq.create('F--oo'); +ROLLBACK TO SAVEPOINT test_invalid_names_1; + +SAVEPOINT test_invalid_names_2; select pgmq.create('F$oo'); +ROLLBACK TO SAVEPOINT test_invalid_names_2; + +SAVEPOINT test_invalid_names_3; select pgmq.create($$F'oo$$); +ROLLBACK TO SAVEPOINT test_invalid_names_3; \echo -- pgmq schema functions with owners (ownership is modified on ansible/files/postgresql_extension_custom_scripts/pgmq/after-create.sql) @@ -101,3 +115,4 @@ where n.nspname = 'pgmq' order by p.proname; +ROLLBACK; diff --git a/nix/tests/sql/pgrouting.sql b/nix/tests/sql/pgrouting.sql index e3af5621c..61052ff33 100644 --- a/nix/tests/sql/pgrouting.sql +++ b/nix/tests/sql/pgrouting.sql @@ -1,3 +1,9 @@ +BEGIN; + +set client_min_messages = warning; +create extension if not exists pgrouting with schema extensions; +create extension if not exists postgis with schema extensions; + create schema v; -- create the roads table @@ -24,4 +30,4 @@ select * from pgr_dijkstra( ); drop schema v cascade; - +ROLLBACK; diff --git a/nix/tests/sql/pgtap.sql b/nix/tests/sql/pgtap.sql index b99976a25..aecf00930 100644 --- a/nix/tests/sql/pgtap.sql +++ b/nix/tests/sql/pgtap.sql @@ -1,5 +1,8 @@ begin; +set client_min_messages = warning; +create extension if not exists pgtap with schema extensions; + select plan(1); -- Run the tests. diff --git a/nix/tests/sql/plpgsql-check.sql b/nix/tests/sql/plpgsql-check.sql index d54d2c45e..7c2bac76e 100644 --- a/nix/tests/sql/plpgsql-check.sql +++ b/nix/tests/sql/plpgsql-check.sql @@ -1,3 +1,8 @@ +BEGIN; + +set client_min_messages = warning; +create extension if not exists plpgsql_check with schema extensions; + create schema v; create table v.t1( @@ -24,3 +29,4 @@ select * from v.f1(); select * from plpgsql_check_function('v.f1()'); drop schema v cascade; +ROLLBACK; diff --git a/nix/tests/sql/z_15_ext_interface.sql b/nix/tests/sql/z_15_ext_interface.sql index 24ee03ea2..501745a32 100644 --- a/nix/tests/sql/z_15_ext_interface.sql +++ b/nix/tests/sql/z_15_ext_interface.sql @@ -6,21 +6,110 @@ that emerge as versions change. */ +-- Create all extensions within a transaction +-- This matches production behavior where users create extensions as needed +-- Supautils will automatically enforce schema rules and run after-create scripts + +BEGIN; + +-- disable notice messages because they differ between 15 and 17 +set client_min_messages = warning; + +-- Create required schemas for relocatable extensions +-- Non-relocatable extensions (pg_tle, pgsodium, supabase_vault, pg_graphql) +-- automatically create their own schemas +create schema if not exists extensions; +create schema if not exists topology; +create schema if not exists tiger; + +-- Privileged extensions -> extensions schema (enforced by supautils) +create extension if not exists address_standardizer with schema extensions; +create extension if not exists address_standardizer_data_us with schema extensions; +create extension if not exists autoinc with schema extensions; +create extension if not exists bloom with schema extensions; +create extension if not exists btree_gin with schema extensions; +create extension if not exists btree_gist with schema extensions; +create extension if not exists citext with schema extensions; +create extension if not exists cube with schema extensions; +create extension if not exists dblink with schema extensions; +create extension if not exists dict_int with schema extensions; +create extension if not exists dict_xsyn with schema extensions; +create extension if not exists earthdistance with schema extensions; +create extension if not exists fuzzystrmatch with schema extensions; +create extension if not exists http with schema extensions; +create extension if not exists hstore with schema extensions; +create extension if not exists hypopg with schema extensions; +create extension if not exists index_advisor with schema extensions; +create extension if not exists insert_username with schema extensions; +create extension if not exists intarray with schema extensions; +create extension if not exists isn with schema extensions; +create extension if not exists ltree with schema extensions; +create extension if not exists moddatetime with schema extensions; +create extension if not exists pg_buffercache with schema extensions; +create extension if not exists pg_net with schema extensions; +create extension if not exists pg_hashids with schema extensions; +create extension if not exists pg_prewarm with schema extensions; +create extension if not exists pg_jsonschema with schema extensions; +create extension if not exists pg_repack with schema extensions; +create extension if not exists pg_stat_monitor with schema extensions; +create extension if not exists pg_tle; +create extension if not exists pg_trgm with schema extensions; +create extension if not exists pg_walinspect with schema extensions; +create extension if not exists pgaudit with schema extensions; +create extension if not exists pgtap with schema extensions; +create extension if not exists pgroonga with schema extensions; +create extension if not exists pgroonga_database with schema extensions; +create extension if not exists pgsodium; +create extension if not exists pgrowlocks with schema extensions; +create extension if not exists pgstattuple with schema extensions; +create extension if not exists plpgsql_check with schema extensions; +create extension if not exists postgis with schema extensions; +create extension if not exists postgis_raster with schema extensions; +create extension if not exists postgis_sfcgal with schema extensions; +create extension if not exists postgis_topology with schema topology; +create extension if not exists pgrouting with schema extensions; +create extension if not exists postgres_fdw with schema extensions; +create extension if not exists rum with schema extensions; +create extension if not exists refint with schema extensions; +create extension if not exists seg with schema extensions; +create extension if not exists sslinfo with schema extensions; +create extension if not exists supabase_vault; +create extension if not exists tablefunc with schema extensions; +create extension if not exists tcn with schema extensions; +create extension if not exists tsm_system_rows with schema extensions; +create extension if not exists unaccent with schema extensions; +create extension if not exists vector with schema extensions; +create extension if not exists wrappers with schema extensions; + +-- Non-privileged extensions (use their natural default schemas) +create extension if not exists amcheck; +create extension if not exists file_fdw; +create extension if not exists intagg; +create extension if not exists lo; +create extension if not exists pageinspect; +create extension if not exists pg_freespacemap; +create extension if not exists pgmq; +create extension if not exists pg_surgery with schema pg_catalog; -- non-relocatable +create extension if not exists pg_visibility; +create extension if not exists xml2; + +-- PG15-specific extensions +create extension if not exists adminpack; +create extension if not exists plv8; -- plv8 is non-relocatable (schema = 'pg_catalog') +create extension if not exists plcoffee; -- plcoffee is non-relocatable (schema = 'pg_catalog') +create extension if not exists plls; -- plls is non-relocatable (schema = 'pg_catalog') +create extension if not exists old_snapshot; +create extension if not exists timescaledb with schema extensions; +create extension if not exists postgis_tiger_geocoder with schema tiger; +create extension if not exists pgjwt with schema extensions; /* List all extensions that are not enabled If a new entry shows up in this list, that means a new extension has been -added and you should `create extension ...` to enable it in ./nix/tests/prime +added and you should create extension above */ -create extension if not exists adminpack; -create extension if not exists plv8; -create extension if not exists plcoffee; -create extension if not exists plls; -create extension if not exists old_snapshot; -create extension if not exists timescaledb; -create extension if not exists postgis_tiger_geocoder; select @@ -120,3 +209,6 @@ order by n.nspname, pc.relname, pa.attname; + +-- Rollback to clean up all extensions created in this test +ROLLBACK; diff --git a/nix/tests/sql/z_15_pg_stat_monitor.sql b/nix/tests/sql/z_15_pg_stat_monitor.sql index 69d996be8..d2ce3f0d1 100644 --- a/nix/tests/sql/z_15_pg_stat_monitor.sql +++ b/nix/tests/sql/z_15_pg_stat_monitor.sql @@ -1,6 +1,14 @@ +BEGIN; + +set client_min_messages = warning; +create schema if not exists extensions; +create extension if not exists pg_stat_monitor with schema extensions; + select * from pg_stat_monitor where false; + +ROLLBACK; diff --git a/nix/tests/sql/z_15_pgjwt.sql b/nix/tests/sql/z_15_pgjwt.sql index d6b488635..43d84305f 100644 --- a/nix/tests/sql/z_15_pgjwt.sql +++ b/nix/tests/sql/z_15_pgjwt.sql @@ -1,3 +1,11 @@ +BEGIN; + +set client_min_messages = warning; +create schema if not exists extensions; + +-- pgjwt depends on pgcrypto for hmac functions +CREATE EXTENSION IF NOT EXISTS pgcrypto WITH SCHEMA extensions; + -- Install pgjwt in extensions schema CREATE EXTENSION IF NOT EXISTS pgjwt WITH SCHEMA extensions; @@ -17,3 +25,5 @@ select secret := 'secret', algorithm := 'HS256' ); + +ROLLBACK; diff --git a/nix/tests/sql/z_15_pgroonga.sql b/nix/tests/sql/z_15_pgroonga.sql index 503f2665c..9890cc893 100644 --- a/nix/tests/sql/z_15_pgroonga.sql +++ b/nix/tests/sql/z_15_pgroonga.sql @@ -1,3 +1,10 @@ +BEGIN; + +set client_min_messages = warning; +create schema if not exists extensions; +create extension if not exists pgroonga with schema extensions; +create extension if not exists pgroonga_database with schema extensions; + create schema v; create table v.roon( @@ -46,3 +53,5 @@ select * from v.roon where content &@~ 'supports'; drop schema v cascade; + +ROLLBACK; diff --git a/nix/tests/sql/z_15_pgvector.sql b/nix/tests/sql/z_15_pgvector.sql index f2de30572..4a2cbe100 100644 --- a/nix/tests/sql/z_15_pgvector.sql +++ b/nix/tests/sql/z_15_pgvector.sql @@ -1,3 +1,9 @@ +BEGIN; + +set client_min_messages = warning; +create schema if not exists extensions; +create extension if not exists vector with schema extensions; + create schema v; create table v.items( @@ -70,3 +76,5 @@ from -- Cleanup drop schema v cascade; + +ROLLBACK; diff --git a/nix/tests/sql/z_15_plv8.sql b/nix/tests/sql/z_15_plv8.sql index 044d69cf9..cf7743348 100644 --- a/nix/tests/sql/z_15_plv8.sql +++ b/nix/tests/sql/z_15_plv8.sql @@ -2,6 +2,9 @@ This test is excluded from the Postgres 17 suite because it does not ship with the Supabase PG17 image */ +BEGIN; + +set client_min_messages = warning; create extension if not exists plv8; create schema v; @@ -18,3 +21,5 @@ select v.multiply_numbers(3, 4); drop schema v cascade; + +ROLLBACK; diff --git a/nix/tests/sql/z_15_rum.sql b/nix/tests/sql/z_15_rum.sql index 6ae945975..94e930d3e 100644 --- a/nix/tests/sql/z_15_rum.sql +++ b/nix/tests/sql/z_15_rum.sql @@ -1,6 +1,12 @@ /* This extension is excluded from oriole-17 because it uses an unsupported index type */ +BEGIN; + +set client_min_messages = warning; +create schema if not exists extensions; +create extension if not exists rum with schema extensions; + create schema v; create table v.test_rum( @@ -38,3 +44,5 @@ order by drop schema v cascade; + +ROLLBACK; diff --git a/nix/tests/sql/z_15_timescale.sql b/nix/tests/sql/z_15_timescale.sql index fd29bb17c..be396d9e7 100644 --- a/nix/tests/sql/z_15_timescale.sql +++ b/nix/tests/sql/z_15_timescale.sql @@ -2,6 +2,9 @@ This test is excluded from the Postgres 17 suite because it does not ship with the Supabase PG17 image */ +BEGIN; + +set client_min_messages = warning; create extension if not exists timescaledb; -- Confirm we're running the apache version @@ -37,3 +40,5 @@ from -- Drop schema v and all its entities drop schema v cascade; +ROLLBACK; + diff --git a/nix/tests/sql/z_17_ext_interface.sql b/nix/tests/sql/z_17_ext_interface.sql index a9d44c2ab..65e6f7052 100644 --- a/nix/tests/sql/z_17_ext_interface.sql +++ b/nix/tests/sql/z_17_ext_interface.sql @@ -6,12 +6,97 @@ that emerge as versions change. */ +-- Create all extensions within a transaction +-- This matches production behavior where users create extensions as needed +-- Supautils will automatically enforce schema rules and run after-create scripts + +BEGIN; + +-- disable notice messages because they differ between 15 and 17 +set client_min_messages = warning; + +-- Create required schemas for relocatable extensions +-- Non-relocatable extensions (pg_tle, pgsodium, supabase_vault, pg_graphql) +-- automatically create their own schemas +create schema if not exists extensions; +create schema if not exists topology; + +-- Privileged extensions -> extensions schema (enforced by supautils) +create extension if not exists address_standardizer with schema extensions; +create extension if not exists address_standardizer_data_us with schema extensions; +create extension if not exists autoinc with schema extensions; +create extension if not exists bloom with schema extensions; +create extension if not exists btree_gin with schema extensions; +create extension if not exists btree_gist with schema extensions; +create extension if not exists citext with schema extensions; +create extension if not exists cube with schema extensions; +create extension if not exists dblink with schema extensions; +create extension if not exists dict_int with schema extensions; +create extension if not exists dict_xsyn with schema extensions; +create extension if not exists earthdistance with schema extensions; +create extension if not exists fuzzystrmatch with schema extensions; +create extension if not exists http with schema extensions; +create extension if not exists hstore with schema extensions; +create extension if not exists hypopg with schema extensions; +create extension if not exists index_advisor with schema extensions; +create extension if not exists insert_username with schema extensions; +create extension if not exists intarray with schema extensions; +create extension if not exists isn with schema extensions; +create extension if not exists ltree with schema extensions; +create extension if not exists moddatetime with schema extensions; +create extension if not exists pg_buffercache with schema extensions; +create extension if not exists pg_net with schema extensions; +create extension if not exists pg_hashids with schema extensions; +create extension if not exists pg_prewarm with schema extensions; +create extension if not exists pg_jsonschema with schema extensions; +create extension if not exists pg_repack with schema extensions; +create extension if not exists pg_stat_monitor with schema extensions; +create extension if not exists pg_tle; +create extension if not exists pg_trgm with schema extensions; +create extension if not exists pg_walinspect with schema extensions; +create extension if not exists pgaudit with schema extensions; +create extension if not exists pgtap with schema extensions; +create extension if not exists pgroonga with schema extensions; +create extension if not exists pgroonga_database with schema extensions; +create extension if not exists pgsodium; +create extension if not exists pgrowlocks with schema extensions; +create extension if not exists pgstattuple with schema extensions; +create extension if not exists plpgsql_check with schema extensions; +create extension if not exists postgis with schema extensions; +create extension if not exists postgis_raster with schema extensions; +create extension if not exists postgis_sfcgal with schema extensions; +create extension if not exists postgis_topology with schema topology; +create extension if not exists pgrouting with schema extensions; +create extension if not exists postgres_fdw with schema extensions; +create extension if not exists rum with schema extensions; +create extension if not exists refint with schema extensions; +create extension if not exists seg with schema extensions; +create extension if not exists sslinfo with schema extensions; +create extension if not exists supabase_vault; +create extension if not exists tablefunc with schema extensions; +create extension if not exists tcn with schema extensions; +create extension if not exists tsm_system_rows with schema extensions; +create extension if not exists unaccent with schema extensions; +create extension if not exists vector with schema extensions; +create extension if not exists wrappers with schema extensions; + +-- Non-privileged extensions (use their natural default schemas) +create extension if not exists amcheck; +create extension if not exists file_fdw; +create extension if not exists intagg; +create extension if not exists lo; +create extension if not exists pageinspect; +create extension if not exists pg_freespacemap; +create extension if not exists pgmq; +create extension if not exists pg_surgery with schema pg_catalog; -- non-relocatable +create extension if not exists pg_visibility; +create extension if not exists xml2; /* List all extensions that are not enabled If a new entry shows up in this list, that means a new extension has been -added and you should `create extension ...` to enable it in ./nix/tests/prime +added and you should create extension above */ @@ -112,3 +197,6 @@ order by n.nspname, pc.relname, pa.attname; + +-- Rollback to clean up all extensions created in this test +ROLLBACK; diff --git a/nix/tests/sql/z_17_pg_stat_monitor.sql b/nix/tests/sql/z_17_pg_stat_monitor.sql index 69d996be8..0bc926e56 100644 --- a/nix/tests/sql/z_17_pg_stat_monitor.sql +++ b/nix/tests/sql/z_17_pg_stat_monitor.sql @@ -1,6 +1,14 @@ +BEGIN; + +set client_min_messages = warning; +create schema if not exists extensions; +create extension if not exists pg_stat_monitor with schema extensions; + select * from - pg_stat_monitor + extensions.pg_stat_monitor where false; + +ROLLBACK; diff --git a/nix/tests/sql/z_17_pgvector.sql b/nix/tests/sql/z_17_pgvector.sql index c90219ca5..2aeebaf42 100644 --- a/nix/tests/sql/z_17_pgvector.sql +++ b/nix/tests/sql/z_17_pgvector.sql @@ -1,6 +1,12 @@ /* This test excludes indexes shipped with pgvector because orioledb doesn't support them yet */ +BEGIN; + +set client_min_messages = warning; +create schema if not exists extensions; +create extension if not exists vector with schema extensions; + create schema v; create table v.items( @@ -50,3 +56,5 @@ from -- Cleanup drop schema v cascade; + +ROLLBACK; diff --git a/nix/tests/sql/z_17_roles.sql b/nix/tests/sql/z_17_roles.sql index ae14f5718..ee4b9e5a9 100644 --- a/nix/tests/sql/z_17_roles.sql +++ b/nix/tests/sql/z_17_roles.sql @@ -1,3 +1,12 @@ +-- Create pg_tle to ensure pgtle_admin role exists +-- This matches production where users can create pg_tle extension +BEGIN; + +set client_min_messages = warning; +create schema if not exists extensions; +-- pg_tle is non-relocatable and automatically creates the pgtle schema +create extension if not exists pg_tle; + -- version-specific roles and attributes select rolname, @@ -72,3 +81,6 @@ where r.rolname not in ('pg_create_subscription', 'pg_maintain', 'pg_use_reserve and g.rolname not in ('pg_create_subscription', 'pg_maintain', 'pg_use_reserved_connections') order by r.rolname, g.rolname; + +-- Rollback to clean up pg_tle extension +ROLLBACK; diff --git a/nix/tests/sql/z_17_rum.sql b/nix/tests/sql/z_17_rum.sql index 6ae945975..94e930d3e 100644 --- a/nix/tests/sql/z_17_rum.sql +++ b/nix/tests/sql/z_17_rum.sql @@ -1,6 +1,12 @@ /* This extension is excluded from oriole-17 because it uses an unsupported index type */ +BEGIN; + +set client_min_messages = warning; +create schema if not exists extensions; +create extension if not exists rum with schema extensions; + create schema v; create table v.test_rum( @@ -38,3 +44,5 @@ order by drop schema v cascade; + +ROLLBACK; diff --git a/nix/tests/sql/z_orioledb-17_ext_interface.sql b/nix/tests/sql/z_orioledb-17_ext_interface.sql index a9d44c2ab..65e6f7052 100644 --- a/nix/tests/sql/z_orioledb-17_ext_interface.sql +++ b/nix/tests/sql/z_orioledb-17_ext_interface.sql @@ -6,12 +6,97 @@ that emerge as versions change. */ +-- Create all extensions within a transaction +-- This matches production behavior where users create extensions as needed +-- Supautils will automatically enforce schema rules and run after-create scripts + +BEGIN; + +-- disable notice messages because they differ between 15 and 17 +set client_min_messages = warning; + +-- Create required schemas for relocatable extensions +-- Non-relocatable extensions (pg_tle, pgsodium, supabase_vault, pg_graphql) +-- automatically create their own schemas +create schema if not exists extensions; +create schema if not exists topology; + +-- Privileged extensions -> extensions schema (enforced by supautils) +create extension if not exists address_standardizer with schema extensions; +create extension if not exists address_standardizer_data_us with schema extensions; +create extension if not exists autoinc with schema extensions; +create extension if not exists bloom with schema extensions; +create extension if not exists btree_gin with schema extensions; +create extension if not exists btree_gist with schema extensions; +create extension if not exists citext with schema extensions; +create extension if not exists cube with schema extensions; +create extension if not exists dblink with schema extensions; +create extension if not exists dict_int with schema extensions; +create extension if not exists dict_xsyn with schema extensions; +create extension if not exists earthdistance with schema extensions; +create extension if not exists fuzzystrmatch with schema extensions; +create extension if not exists http with schema extensions; +create extension if not exists hstore with schema extensions; +create extension if not exists hypopg with schema extensions; +create extension if not exists index_advisor with schema extensions; +create extension if not exists insert_username with schema extensions; +create extension if not exists intarray with schema extensions; +create extension if not exists isn with schema extensions; +create extension if not exists ltree with schema extensions; +create extension if not exists moddatetime with schema extensions; +create extension if not exists pg_buffercache with schema extensions; +create extension if not exists pg_net with schema extensions; +create extension if not exists pg_hashids with schema extensions; +create extension if not exists pg_prewarm with schema extensions; +create extension if not exists pg_jsonschema with schema extensions; +create extension if not exists pg_repack with schema extensions; +create extension if not exists pg_stat_monitor with schema extensions; +create extension if not exists pg_tle; +create extension if not exists pg_trgm with schema extensions; +create extension if not exists pg_walinspect with schema extensions; +create extension if not exists pgaudit with schema extensions; +create extension if not exists pgtap with schema extensions; +create extension if not exists pgroonga with schema extensions; +create extension if not exists pgroonga_database with schema extensions; +create extension if not exists pgsodium; +create extension if not exists pgrowlocks with schema extensions; +create extension if not exists pgstattuple with schema extensions; +create extension if not exists plpgsql_check with schema extensions; +create extension if not exists postgis with schema extensions; +create extension if not exists postgis_raster with schema extensions; +create extension if not exists postgis_sfcgal with schema extensions; +create extension if not exists postgis_topology with schema topology; +create extension if not exists pgrouting with schema extensions; +create extension if not exists postgres_fdw with schema extensions; +create extension if not exists rum with schema extensions; +create extension if not exists refint with schema extensions; +create extension if not exists seg with schema extensions; +create extension if not exists sslinfo with schema extensions; +create extension if not exists supabase_vault; +create extension if not exists tablefunc with schema extensions; +create extension if not exists tcn with schema extensions; +create extension if not exists tsm_system_rows with schema extensions; +create extension if not exists unaccent with schema extensions; +create extension if not exists vector with schema extensions; +create extension if not exists wrappers with schema extensions; + +-- Non-privileged extensions (use their natural default schemas) +create extension if not exists amcheck; +create extension if not exists file_fdw; +create extension if not exists intagg; +create extension if not exists lo; +create extension if not exists pageinspect; +create extension if not exists pg_freespacemap; +create extension if not exists pgmq; +create extension if not exists pg_surgery with schema pg_catalog; -- non-relocatable +create extension if not exists pg_visibility; +create extension if not exists xml2; /* List all extensions that are not enabled If a new entry shows up in this list, that means a new extension has been -added and you should `create extension ...` to enable it in ./nix/tests/prime +added and you should create extension above */ @@ -112,3 +197,6 @@ order by n.nspname, pc.relname, pa.attname; + +-- Rollback to clean up all extensions created in this test +ROLLBACK; diff --git a/nix/tests/sql/z_orioledb-17_pg_stat_monitor.sql b/nix/tests/sql/z_orioledb-17_pg_stat_monitor.sql index 69d996be8..0bc926e56 100644 --- a/nix/tests/sql/z_orioledb-17_pg_stat_monitor.sql +++ b/nix/tests/sql/z_orioledb-17_pg_stat_monitor.sql @@ -1,6 +1,14 @@ +BEGIN; + +set client_min_messages = warning; +create schema if not exists extensions; +create extension if not exists pg_stat_monitor with schema extensions; + select * from - pg_stat_monitor + extensions.pg_stat_monitor where false; + +ROLLBACK; diff --git a/nix/tests/sql/z_orioledb-17_pgvector.sql b/nix/tests/sql/z_orioledb-17_pgvector.sql index c90219ca5..2aeebaf42 100644 --- a/nix/tests/sql/z_orioledb-17_pgvector.sql +++ b/nix/tests/sql/z_orioledb-17_pgvector.sql @@ -1,6 +1,12 @@ /* This test excludes indexes shipped with pgvector because orioledb doesn't support them yet */ +BEGIN; + +set client_min_messages = warning; +create schema if not exists extensions; +create extension if not exists vector with schema extensions; + create schema v; create table v.items( @@ -50,3 +56,5 @@ from -- Cleanup drop schema v cascade; + +ROLLBACK; diff --git a/nix/tools/run-server.sh.in b/nix/tools/run-server.sh.in index 3ee99c3c2..9828498e4 100644 --- a/nix/tools/run-server.sh.in +++ b/nix/tools/run-server.sh.in @@ -163,9 +163,6 @@ export PATH=$BINDIR/bin:$PATH PGSQL_SUPERUSER=@PGSQL_SUPERUSER@ PSQL_CONF_FILE=@PSQL_CONF_FILE@ PORTNO="${PORTNO:-@PGSQL_DEFAULT_PORT@}" -SUPAUTILS_CONFIG_FILE=@SUPAUTILS_CONF_FILE@ -LOGGING_CONFIG_FILE=@LOGGING_CONF_FILE@ -READREPL_CONFIG_FILE=@READREPL_CONF_FILE@ PG_HBA_FILE=@PG_HBA@ PG_IDENT_FILE=@PG_IDENT@ EXTENSION_CUSTOM_SCRIPTS=@EXTENSION_CUSTOM_SCRIPTS_DIR@ @@ -215,18 +212,36 @@ fi echo "NOTE: patching postgresql.conf files" cp "$PG_HBA_FILE" "$DATDIR/pg_hba.conf" cp "$PG_IDENT_FILE" "$DATDIR/pg_ident.conf" -mkdir -p "$DATDIR/conf.d" -cp "$READREPL_CONFIG_FILE" "$DATDIR/conf.d/read-replica.conf" + +# Copy entire conf.d directory from postgresql_config +POSTGRESQL_CONFIG_DIR="@POSTGRESQL_CONFIG_DIR@" +cp -r "$POSTGRESQL_CONFIG_DIR/conf.d" "$DATDIR/" + +# Make conf.d files writable (they're read-only from Nix store) +chmod -R u+w "$DATDIR/conf.d" + mkdir -p "$DATDIR/extension-custom-scripts" cp -r "$EXTENSION_CUSTOM_SCRIPTS"/* "$DATDIR/extension-custom-scripts" -# Configure supautils -sed "s|supautils.extension_custom_scripts_path = '/etc/postgresql-custom/extension-custom-scripts'|supautils.extension_custom_scripts_path = '$DATDIR/extension-custom-scripts'|" "$SUPAUTILS_CONFIG_FILE" > "$DATDIR/conf.d/supautils.conf" +# Update the supautils.conf to point to the correct extension custom scripts path +# AND temporarily comment out reserved_roles to allow role creation during migrations +if [[ "$CURRENT_SYSTEM" = "aarch64-darwin" ]]; then + # macOS requires a backup extension for -i + sed -i.bak \ + -e "s|supautils.extension_custom_scripts_path = '/etc/postgresql-custom/extension-custom-scripts'|supautils.extension_custom_scripts_path = '$DATDIR/extension-custom-scripts'|" \ + -e "s|^supautils.reserved_roles|#supautils.reserved_roles|" \ + "$DATDIR/conf.d/supautils.conf" + rm -f "$DATDIR/conf.d/supautils.conf.bak" +else + # Linux doesn't require a backup extension + sed -i \ + -e "s|supautils.extension_custom_scripts_path = '/etc/postgresql-custom/extension-custom-scripts'|supautils.extension_custom_scripts_path = '$DATDIR/extension-custom-scripts'|" \ + -e "s|^supautils.reserved_roles|#supautils.reserved_roles|" \ + "$DATDIR/conf.d/supautils.conf" +fi # Configure PostgreSQL -sed -e "1i\\ -include = '$DATDIR/conf.d/supautils.conf'" \ --e "\$a\\ +sed -e "\$a\\ pgsodium.getkey_script = '$PGSODIUM_GETKEY_SCRIPT'" \ -e "\$a\\ vault.getkey_script = '$PGSODIUM_GETKEY_SCRIPT'" \ @@ -354,6 +369,27 @@ EOSQL fi fi fi + +# Restore full supautils configuration now that migrations are complete +# Uncomment reserved_roles that was disabled during migrations +echo "Restoring full supautils configuration after migrations" +if [[ "$CURRENT_SYSTEM" = "aarch64-darwin" ]]; then + # macOS requires a backup extension for -i + sed -i.bak "s|^#supautils.reserved_roles|supautils.reserved_roles|" "$DATDIR/conf.d/supautils.conf" + rm -f "$DATDIR/conf.d/supautils.conf.bak" +else + # Linux doesn't require a backup extension + sed -i "s|^#supautils.reserved_roles|supautils.reserved_roles|" "$DATDIR/conf.d/supautils.conf" +fi + +# Run after-create scripts for extensions that are not managed by supautils privileged_extensions +# pgmq is not in the privileged_extensions list, so we need to run its after-create script manually +echo "Running after-create scripts for non-privileged extensions" +if psql -v ON_ERROR_STOP=0 --no-password --no-psqlrc -U "$PGSQL_SUPERUSER" -p "$PORTNO" -h localhost -d postgres -c "SELECT 1 FROM pg_extension WHERE extname = 'pgmq'" | grep -q 1; then + echo "Running pgmq after-create script" + psql -v ON_ERROR_STOP=1 --no-password --no-psqlrc -U "$PGSQL_SUPERUSER" -p "$PORTNO" -h localhost -d postgres -f "$DATDIR/extension-custom-scripts/pgmq/after-create.sql" +fi + echo "Shutting down PostgreSQL..." stop_postgres @@ -361,6 +397,6 @@ stop_postgres # Step 4: Restart PostgreSQL in the foreground (with log output visible) or as a daemon if [ "$DAEMONIZE" = true ]; then start_postgres "daemon" -else +else start_postgres "foreground" fi