mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-12 18:34:36 +08:00
Schema-qualify some references to regprocedure.
Andreas Karlsson, per a gripe from Tom Lane.
This commit is contained in:
parent
bf9a60ee33
commit
3d8fc8c68c
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user