mirror of https://github.com/citusdata/citus.git
Merge pull request #5574 from citusdata/fix_metadata_sync_fails_on_multi_function_evaluation
Fix metadata sync fails on multi_function_evaluationpull/5549/head^2
commit
e3d1a42f81
|
@ -131,4 +131,5 @@ SELECT master_copy_shard_placement(
|
||||||
transfer_mode := 'block_writes');
|
transfer_mode := 'block_writes');
|
||||||
ERROR: Table 'mx_table' is streaming replicated. Shards of streaming replicated tables cannot be copied
|
ERROR: Table 'mx_table' is streaming replicated. Shards of streaming replicated tables cannot be copied
|
||||||
SET client_min_messages TO ERROR;
|
SET client_min_messages TO ERROR;
|
||||||
|
DROP TABLE mcsp.history;
|
||||||
DROP SCHEMA mcsp CASCADE;
|
DROP SCHEMA mcsp CASCADE;
|
||||||
|
|
|
@ -242,13 +242,13 @@ test: multi_schema_support
|
||||||
# ----------
|
# ----------
|
||||||
# multi_function_evaluation tests edge-cases in master-side function pre-evaluation
|
# multi_function_evaluation tests edge-cases in master-side function pre-evaluation
|
||||||
# ----------
|
# ----------
|
||||||
test: check_mx
|
|
||||||
test: turn_mx_off
|
|
||||||
test: multi_function_evaluation
|
test: multi_function_evaluation
|
||||||
|
|
||||||
# ----------
|
# ----------
|
||||||
# multi_truncate tests truncate functionality for distributed tables
|
# multi_truncate tests truncate functionality for distributed tables
|
||||||
# ----------
|
# ----------
|
||||||
|
test: check_mx
|
||||||
|
test: turn_mx_off
|
||||||
test: multi_truncate
|
test: multi_truncate
|
||||||
|
|
||||||
# ----------
|
# ----------
|
||||||
|
|
|
@ -106,4 +106,5 @@ SELECT master_copy_shard_placement(
|
||||||
transfer_mode := 'block_writes');
|
transfer_mode := 'block_writes');
|
||||||
|
|
||||||
SET client_min_messages TO ERROR;
|
SET client_min_messages TO ERROR;
|
||||||
|
DROP TABLE mcsp.history;
|
||||||
DROP SCHEMA mcsp CASCADE;
|
DROP SCHEMA mcsp CASCADE;
|
||||||
|
|
Loading…
Reference in New Issue