summaryrefslogtreecommitdiff
path: root/contrib/citext
diff options
context:
space:
mode:
authorRobert Haas2016-06-10 14:41:58 +0000
committerRobert Haas2016-06-10 14:41:58 +0000
commit3d8fc8c68c063d52ca678e569f0ecd9385f846e6 (patch)
treec44889cae68401f88968e02af3b565d3c3197886 /contrib/citext
parentbf9a60ee3349a2f2dc5fe6d571a8d39cfc634371 (diff)
Schema-qualify some references to regprocedure.
Andreas Karlsson, per a gripe from Tom Lane.
Diffstat (limited to 'contrib/citext')
-rw-r--r--contrib/citext/citext--1.1--1.2.sql8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/citext/citext--1.1--1.2.sql b/contrib/citext/citext--1.1--1.2.sql
index 60dd15bbb3..4f0e4bc719 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;