mirror of https://github.com/citusdata/citus.git
Test disabling for upgrade
parent
ca12d09b8c
commit
afe8ce50c3
|
@ -38,6 +38,7 @@ SELECT dist_node_check.matches AND dist_placement_check.matches
|
||||||
FROM dist_node_check CROSS JOIN dist_placement_check
|
FROM dist_node_check CROSS JOIN dist_placement_check
|
||||||
$$;
|
$$;
|
||||||
-- partition_task_list_results tests the internal PartitionTasklistResults function
|
-- partition_task_list_results tests the internal PartitionTasklistResults function
|
||||||
|
SET citus.enable_metadata_sync TO OFF;
|
||||||
CREATE OR REPLACE FUNCTION pg_catalog.partition_task_list_results(resultIdPrefix text,
|
CREATE OR REPLACE FUNCTION pg_catalog.partition_task_list_results(resultIdPrefix text,
|
||||||
query text,
|
query text,
|
||||||
target_table regclass,
|
target_table regclass,
|
||||||
|
@ -63,3 +64,4 @@ BEGIN
|
||||||
PERFORM public.wait_until_metadata_sync(30000);
|
PERFORM public.wait_until_metadata_sync(30000);
|
||||||
END;
|
END;
|
||||||
$function$;
|
$function$;
|
||||||
|
RESET citus.enable_metadata_sync;
|
||||||
|
|
|
@ -37,6 +37,7 @@ $$;
|
||||||
|
|
||||||
|
|
||||||
-- partition_task_list_results tests the internal PartitionTasklistResults function
|
-- partition_task_list_results tests the internal PartitionTasklistResults function
|
||||||
|
SET citus.enable_metadata_sync TO OFF;
|
||||||
CREATE OR REPLACE FUNCTION pg_catalog.partition_task_list_results(resultIdPrefix text,
|
CREATE OR REPLACE FUNCTION pg_catalog.partition_task_list_results(resultIdPrefix text,
|
||||||
query text,
|
query text,
|
||||||
target_table regclass,
|
target_table regclass,
|
||||||
|
@ -49,7 +50,6 @@ CREATE OR REPLACE FUNCTION pg_catalog.partition_task_list_results(resultIdPrefix
|
||||||
LANGUAGE C STRICT VOLATILE
|
LANGUAGE C STRICT VOLATILE
|
||||||
AS 'citus', $$partition_task_list_results$$;
|
AS 'citus', $$partition_task_list_results$$;
|
||||||
|
|
||||||
|
|
||||||
-- get size of TopTransactionContext
|
-- get size of TopTransactionContext
|
||||||
CREATE OR REPLACE FUNCTION top_transaction_context_size() RETURNS BIGINT
|
CREATE OR REPLACE FUNCTION top_transaction_context_size() RETURNS BIGINT
|
||||||
LANGUAGE C STRICT VOLATILE
|
LANGUAGE C STRICT VOLATILE
|
||||||
|
@ -65,3 +65,4 @@ BEGIN
|
||||||
PERFORM public.wait_until_metadata_sync(30000);
|
PERFORM public.wait_until_metadata_sync(30000);
|
||||||
END;
|
END;
|
||||||
$function$;
|
$function$;
|
||||||
|
RESET citus.enable_metadata_sync;
|
||||||
|
|
Loading…
Reference in New Issue