mirror of https://github.com/citusdata/citus.git
Styling and UDF parameter fix
parent
690c8d96b1
commit
f25c434147
|
@ -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;
|
||||
|
|
|
@ -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';
|
||||
|
|
|
@ -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';
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue