Styling and UDF parameter fix

velioglu/expire_old_time_partitions
Burak Velioglu 2021-09-01 16:47:07 +03:00
parent 690c8d96b1
commit f25c434147
No known key found for this signature in database
GPG Key ID: F6827E620F6549C6
4 changed files with 5 additions and 4 deletions

View File

@ -17,7 +17,7 @@ DROP FUNCTION pg_catalog.citus_internal_add_placement_metadata(bigint, integer,
DROP FUNCTION pg_catalog.citus_internal_update_placement_metadata(bigint, integer, integer);
DROP FUNCTION pg_catalog.citus_internal_delete_shard_metadata(bigint);
DROP FUNCTION pg_catalog.citus_internal_update_relation_colocation(oid, integer);
DROP PROCEDURE pg_catalog.expire_old_time_partitions(oid, timestamptz);
DROP PROCEDURE pg_catalog.expire_old_time_partitions(regclass, timestamptz);
REVOKE ALL ON FUNCTION pg_catalog.worker_record_sequence_dependency(regclass,regclass,name) FROM PUBLIC;
ALTER TABLE pg_catalog.pg_dist_placement DROP CONSTRAINT placement_shardid_groupid_unique_index;

View File

@ -36,4 +36,4 @@ $$;
COMMENT ON PROCEDURE pg_catalog.expire_old_time_partitions(
parent_table_name regclass,
older_than timestamptz)
IS 'drop old partitions of a time-partitioned table';
IS 'drop old partitions of a time-partitioned table';

View File

@ -36,4 +36,4 @@ $$;
COMMENT ON PROCEDURE pg_catalog.expire_old_time_partitions(
parent_table_name regclass,
older_than timestamptz)
IS 'drop old partitions of a time-partitioned table';
IS 'drop old partitions of a time-partitioned table';

View File

@ -804,8 +804,9 @@ SELECT * FROM multi_extension.print_extension_changes();
| function citus_internal_delete_shard_metadata(bigint) void
| function citus_internal_update_placement_metadata(bigint,integer,integer) void
| function citus_internal_update_relation_colocation(oid,integer) void
| function expire_old_time_partitions(regclass,timestamp with time zone)
| function stop_metadata_sync_to_node(text,integer,boolean) void
(10 rows)
(11 rows)
DROP TABLE multi_extension.prev_objects, multi_extension.extension_diff;
-- show running version