mirror of https://github.com/citusdata/citus.git
Fix broken test
parent
f5f352c620
commit
7eafc95fd3
|
@ -46,8 +46,6 @@ CREATE FUNCTION pg_catalog.worker_repartition_cleanup(bigint)
|
|||
STRICT
|
||||
AS 'MODULE_PATHNAME', $function$worker_repartition_cleanup$function$;
|
||||
|
||||
DROP TYPE citus.split_mode;
|
||||
DROP TYPE citus.split_copy_info;
|
||||
DROP FUNCTION pg_catalog.citus_split_shard_by_split_points(
|
||||
shard_id bigint,
|
||||
split_points text[],
|
||||
|
@ -56,6 +54,8 @@ DROP FUNCTION pg_catalog.citus_split_shard_by_split_points(
|
|||
DROP FUNCTION pg_catalog.worker_split_copy(
|
||||
source_shard_id bigint,
|
||||
splitCopyInfos citus.split_copy_info[]);
|
||||
DROP TYPE citus.split_mode;
|
||||
DROP TYPE citus.split_copy_info;
|
||||
|
||||
#include "../../../columnar/sql/downgrades/columnar--11.1-1--11.0-3.sql"
|
||||
|
||||
|
|
|
@ -113,6 +113,7 @@ ORDER BY 1;
|
|||
function citus_shard_indexes_on_worker()
|
||||
function citus_shard_sizes()
|
||||
function citus_shards_on_worker()
|
||||
function citus_split_shard_by_split_points(bigint,text[],integer[],citus.split_mode)
|
||||
function citus_stat_activity()
|
||||
function citus_stat_statements()
|
||||
function citus_stat_statements_reset()
|
||||
|
@ -241,6 +242,7 @@ ORDER BY 1;
|
|||
function worker_partitioned_table_size(regclass)
|
||||
function worker_record_sequence_dependency(regclass,regclass,name)
|
||||
function worker_save_query_explain_analyze(text,jsonb)
|
||||
function worker_split_copy(bigint,citus.split_copy_info[])
|
||||
schema citus
|
||||
schema citus_internal
|
||||
schema columnar
|
||||
|
@ -269,6 +271,8 @@ ORDER BY 1;
|
|||
table pg_dist_transaction
|
||||
type citus.distribution_type
|
||||
type citus.shard_transfer_mode
|
||||
type citus.split_copy_info
|
||||
type citus.split_mode
|
||||
type citus_copy_format
|
||||
type noderole
|
||||
view citus_dist_stat_activity
|
||||
|
|
Loading…
Reference in New Issue