Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 3d8fc8c

Browse files
committed
Schema-qualify some references to regprocedure.
Andreas Karlsson, per a gripe from Tom Lane.
1 parent bf9a60e commit 3d8fc8c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

contrib/citext/citext--1.1--1.2.sql

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ ALTER FUNCTION split_part(citext, citext, int) PARALLEL SAFE;
4242
ALTER FUNCTION translate(citext, citext, text) PARALLEL SAFE;
4343

4444
UPDATE pg_proc SET proparallel = 's'
45-
WHERE oid = 'min(citext)'::regprocedure;
45+
WHERE oid = 'min(citext)'::pg_catalog.regprocedure;
4646

4747
UPDATE pg_proc SET proparallel = 's'
48-
WHERE oid = 'max(citext)'::regprocedure;
48+
WHERE oid = 'max(citext)'::pg_catalog.regprocedure;
4949

5050
UPDATE pg_aggregate SET aggcombinefn = 'citext_smaller'
51-
WHERE aggfnoid = 'max(citext)'::regprocedure;
51+
WHERE aggfnoid = 'max(citext)'::pg_catalog.regprocedure;
5252

5353
UPDATE pg_aggregate SET aggcombinefn = 'citext_larger'
54-
WHERE aggfnoid = 'max(citext)'::regprocedure;
54+
WHERE aggfnoid = 'max(citext)'::pg_catalog.regprocedure;

contrib/intagg/intagg--1.0--1.1.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ ALTER FUNCTION int_agg_final_array(internal) PARALLEL SAFE;
88
ALTER FUNCTION int_array_enum(int4[]) PARALLEL SAFE;
99

1010
UPDATE pg_proc SET proparallel = 's'
11-
WHERE oid = 'int_array_aggregate(int4)'::regprocedure;
11+
WHERE oid = 'int_array_aggregate(int4)'::pg_catalog.regprocedure;

0 commit comments

Comments
 (0)