mirror of https://github.com/postgres/postgres
All functions provided by this extension are PARALLEL SAFE. Andreas Karlssonpull/31/head
parent
496899ccc2
commit
a8501ba119
@ -0,0 +1,13 @@ |
||||
/* contrib/pgstattuple/pgstattuple--1.3--1.4.sql */ |
||||
|
||||
-- complain if script is sourced in psql, rather than via ALTER EXTENSION |
||||
\echo Use "ALTER EXTENSION pgstattuple UPDATE TO '1.4'" to load this file. \quit |
||||
|
||||
ALTER FUNCTION pgstattuple(text) PARALLEL SAFE; |
||||
ALTER FUNCTION pgstatindex(text) PARALLEL SAFE; |
||||
ALTER FUNCTION pg_relpages(text) PARALLEL SAFE; |
||||
ALTER FUNCTION pgstatginindex(regclass) PARALLEL SAFE; |
||||
ALTER FUNCTION pgstattuple(regclass) PARALLEL SAFE; |
||||
ALTER FUNCTION pgstatindex(regclass) PARALLEL SAFE; |
||||
ALTER FUNCTION pg_relpages(regclass) PARALLEL SAFE; |
||||
ALTER FUNCTION pgstattuple_approx(regclass) PARALLEL SAFE; |
@ -1,5 +1,5 @@ |
||||
# pgstattuple extension |
||||
comment = 'show tuple-level statistics' |
||||
default_version = '1.3' |
||||
default_version = '1.4' |
||||
module_pathname = '$libdir/pgstattuple' |
||||
relocatable = true |
||||
|
Loading…
Reference in new issue