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_update_placement_metadata(bigint, integer, integer);
|
||||||
DROP FUNCTION pg_catalog.citus_internal_delete_shard_metadata(bigint);
|
DROP FUNCTION pg_catalog.citus_internal_delete_shard_metadata(bigint);
|
||||||
DROP FUNCTION pg_catalog.citus_internal_update_relation_colocation(oid, integer);
|
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;
|
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;
|
ALTER TABLE pg_catalog.pg_dist_placement DROP CONSTRAINT placement_shardid_groupid_unique_index;
|
||||||
|
|
|
@ -804,8 +804,9 @@ SELECT * FROM multi_extension.print_extension_changes();
|
||||||
| function citus_internal_delete_shard_metadata(bigint) void
|
| function citus_internal_delete_shard_metadata(bigint) void
|
||||||
| function citus_internal_update_placement_metadata(bigint,integer,integer) void
|
| function citus_internal_update_placement_metadata(bigint,integer,integer) void
|
||||||
| function citus_internal_update_relation_colocation(oid,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
|
| function stop_metadata_sync_to_node(text,integer,boolean) void
|
||||||
(10 rows)
|
(11 rows)
|
||||||
|
|
||||||
DROP TABLE multi_extension.prev_objects, multi_extension.extension_diff;
|
DROP TABLE multi_extension.prev_objects, multi_extension.extension_diff;
|
||||||
-- show running version
|
-- show running version
|
||||||
|
|
Loading…
Reference in New Issue