diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-06-10 10:41:58 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-06-10 10:41:58 -0400 |
commit | 3d8fc8c68c063d52ca678e569f0ecd9385f846e6 (patch) | |
tree | c44889cae68401f88968e02af3b565d3c3197886 | |
parent | bf9a60ee3349a2f2dc5fe6d571a8d39cfc634371 (diff) | |
download | postgresql-3d8fc8c68c063d52ca678e569f0ecd9385f846e6.tar.gz postgresql-3d8fc8c68c063d52ca678e569f0ecd9385f846e6.zip |
Schema-qualify some references to regprocedure.
Andreas Karlsson, per a gripe from Tom Lane.
-rw-r--r-- | contrib/citext/citext--1.1--1.2.sql | 8 | ||||
-rw-r--r-- | contrib/intagg/intagg--1.0--1.1.sql | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/contrib/citext/citext--1.1--1.2.sql b/contrib/citext/citext--1.1--1.2.sql index 60dd15bbb38..4f0e4bc7195 100644 --- a/contrib/citext/citext--1.1--1.2.sql +++ b/contrib/citext/citext--1.1--1.2.sql @@ -42,13 +42,13 @@ ALTER FUNCTION split_part(citext, citext, int) PARALLEL SAFE; ALTER FUNCTION translate(citext, citext, text) PARALLEL SAFE; UPDATE pg_proc SET proparallel = 's' -WHERE oid = 'min(citext)'::regprocedure; +WHERE oid = 'min(citext)'::pg_catalog.regprocedure; UPDATE pg_proc SET proparallel = 's' -WHERE oid = 'max(citext)'::regprocedure; +WHERE oid = 'max(citext)'::pg_catalog.regprocedure; UPDATE pg_aggregate SET aggcombinefn = 'citext_smaller' -WHERE aggfnoid = 'max(citext)'::regprocedure; +WHERE aggfnoid = 'max(citext)'::pg_catalog.regprocedure; UPDATE pg_aggregate SET aggcombinefn = 'citext_larger' -WHERE aggfnoid = 'max(citext)'::regprocedure; +WHERE aggfnoid = 'max(citext)'::pg_catalog.regprocedure; diff --git a/contrib/intagg/intagg--1.0--1.1.sql b/contrib/intagg/intagg--1.0--1.1.sql index 2ec95b6080b..b2a2820b0ca 100644 --- a/contrib/intagg/intagg--1.0--1.1.sql +++ b/contrib/intagg/intagg--1.0--1.1.sql @@ -8,4 +8,4 @@ ALTER FUNCTION int_agg_final_array(internal) PARALLEL SAFE; ALTER FUNCTION int_array_enum(int4[]) PARALLEL SAFE; UPDATE pg_proc SET proparallel = 's' -WHERE oid = 'int_array_aggregate(int4)'::regprocedure; +WHERE oid = 'int_array_aggregate(int4)'::pg_catalog.regprocedure; |