Adjust tests for release-10.0

pull/5978/head
Sait Talha Nisanci 2021-11-08 12:51:23 +03:00
parent 0f1f55c287
commit 83585e32f9
2 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@ SELECT stop_metadata_sync_to_node('localhost',:worker_2_port);
-- create a distributed table, drop a column and sync the metadata
SET citus.shard_replication_factor TO 1;
SET citus.replication_model to 'streaming';
CREATE TABLE t1 (a int, b int, c int UNIQUE);
SELECT create_distributed_table('t1', 'c');
create_distributed_table

View File

@ -12,6 +12,7 @@ SELECT stop_metadata_sync_to_node('localhost',:worker_2_port);
-- create a distributed table, drop a column and sync the metadata
SET citus.shard_replication_factor TO 1;
SET citus.replication_model to 'streaming';
CREATE TABLE t1 (a int, b int, c int UNIQUE);
SELECT create_distributed_table('t1', 'c');
ALTER TABLE t1 DROP COLUMN b;