mirror of https://github.com/citusdata/citus.git
Adjust tests for release-10.0
parent
0f1f55c287
commit
83585e32f9
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue