Skip to content

Commit b5f7633

Browse files
committed
Fix migration script
1 parent fc4463e commit b5f7633

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pg_pathman--1.4--1.5.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -698,8 +698,8 @@ LANGUAGE sql STRICT;
698698
/*
699699
* Merge RANGE partitions.
700700
*/
701-
DROP FUNCTION public.merge_range_partitions(regclass[]);
702-
DROP FUNCTION public.merge_range_partitions(regclass, regclass);
701+
DROP FUNCTION @extschema@.merge_range_partitions(regclass[]);
702+
DROP FUNCTION @extschema@.merge_range_partitions(regclass, regclass);
703703

704704
CREATE OR REPLACE FUNCTION @[email protected]_range_partitions(
705705
variadic partitions REGCLASS[])
@@ -776,7 +776,7 @@ GRANT SELECT ON @[email protected]_concurrent_part_tasks TO PUBLIC;
776776
/*
777777
* Split RANGE partition in two using a pivot.
778778
*/
779-
DROP FUNCTION public.split_range_partition(regclass, anyelement, text, text, OUT anyarray);
779+
DROP FUNCTION @extschema@.split_range_partition(regclass, anyelement, text, text, OUT anyarray);
780780
CREATE OR REPLACE FUNCTION @[email protected]_range_partition(
781781
partition_relid REGCLASS,
782782
split_value ANYELEMENT,

0 commit comments

Comments
 (0)