mirror of https://github.com/citusdata/citus.git
Add objects table manually to tests
parent
09cfb24b16
commit
09764d6db3
|
@ -497,8 +497,10 @@ SELECT shardid, nodename, nodeport
|
|||
WHERE logicalrelid = 'numbers_append'::regclass order by placementid;
|
||||
|
||||
-- add the node back
|
||||
set citus.log_remote_commands to true;
|
||||
set citus.worker_min_messages to debug4;
|
||||
-- before adding the node, add the pg_dist_object entry for objects table
|
||||
-- manually. Since that table was created with master_create_distributed_table
|
||||
-- we don't have the entry for it.
|
||||
INSERT INTO citus.pg_dist_object(classid, objid, objsubid) values('pg_class'::regclass::oid, 'objects'::regclass::oid, 0);
|
||||
SELECT 1 FROM master_activate_node('localhost', :worker_1_port);
|
||||
RESET client_min_messages;
|
||||
RESET citus.shard_replication_factor;
|
||||
|
|
Loading…
Reference in New Issue