From: Peter Eisentraut Date: Tue, 20 Jun 2017 14:03:35 +0000 (-0400) Subject: Change pg_get_publication_tables to prosecdef false X-Git-Tag: REL_10_BETA2~111 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=20d7d68b098dde6106e6c382e787c8b10c4403df;p=postgresql Change pg_get_publication_tables to prosecdef false This was apparently a mistake in the original commit. Reported-by: Tom Lane --- diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index 374c86311e..93992edc36 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -53,6 +53,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 201706161 +#define CATALOG_VERSION_NO 201706201 #endif diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h index 6c44def6e6..73ce026d89 100644 --- a/src/include/catalog/pg_proc.h +++ b/src/include/catalog/pg_proc.h @@ -5434,7 +5434,7 @@ DATA(insert OID = 6014 ( pg_show_replication_origin_status PGNSP PGUID 12 1 100 DESCR("get progress for all replication origins"); /* publications */ -DATA(insert OID = 6119 ( pg_get_publication_tables PGNSP PGUID 12 1 1000 0 0 f f t f t t s s 1 0 26 "25" "{25,26}" "{i,o}" "{pubname,relid}" _null_ _null_ pg_get_publication_tables _null_ _null_ _null_ )); +DATA(insert OID = 6119 ( pg_get_publication_tables PGNSP PGUID 12 1 1000 0 0 f f f f t t s s 1 0 26 "25" "{25,26}" "{i,o}" "{pubname,relid}" _null_ _null_ pg_get_publication_tables _null_ _null_ _null_ )); DESCR("get OIDs of tables in a publication"); /* rls */