mirror of https://github.com/citusdata/citus.git
multi_copy
parent
d0b5434280
commit
de5d477211
|
@ -608,9 +608,6 @@ SELECT shardid, shardstate, nodename, nodeport
|
||||||
|
|
||||||
-- try to insert into a reference table copy should fail
|
-- try to insert into a reference table copy should fail
|
||||||
COPY numbers_reference FROM STDIN WITH (FORMAT 'csv');
|
COPY numbers_reference FROM STDIN WITH (FORMAT 'csv');
|
||||||
3,1
|
|
||||||
4,2
|
|
||||||
\.
|
|
||||||
|
|
||||||
-- verify shards for reference table are still valid
|
-- verify shards for reference table are still valid
|
||||||
SELECT shardid, shardstate, nodename, nodeport
|
SELECT shardid, shardstate, nodename, nodeport
|
||||||
|
|
|
@ -225,11 +225,7 @@ test: citus_local_dist_joins
|
||||||
# multi_copy creates hash and range-partitioned tables and performs COPY
|
# multi_copy creates hash and range-partitioned tables and performs COPY
|
||||||
# multi_router_planner creates hash partitioned tables.
|
# multi_router_planner creates hash partitioned tables.
|
||||||
# ---------
|
# ---------
|
||||||
test: fast_path_router_modify pg_dump
|
test: multi_copy fast_path_router_modify pg_dump
|
||||||
test: check_mx
|
|
||||||
test: turn_mx_off
|
|
||||||
test: multi_copy
|
|
||||||
test: turn_mx_on
|
|
||||||
test: multi_router_planner
|
test: multi_router_planner
|
||||||
# These 2 tests have prepared statements which sometimes get invalidated by concurrent tests,
|
# These 2 tests have prepared statements which sometimes get invalidated by concurrent tests,
|
||||||
# changing the debug output. We should not run them in parallel with others
|
# changing the debug output. We should not run them in parallel with others
|
||||||
|
|
|
@ -811,7 +811,6 @@ SELECT shardid, shardstate, nodename, nodeport
|
||||||
-- try to insert into a reference table copy should fail
|
-- try to insert into a reference table copy should fail
|
||||||
COPY numbers_reference FROM STDIN WITH (FORMAT 'csv');
|
COPY numbers_reference FROM STDIN WITH (FORMAT 'csv');
|
||||||
ERROR: connection to the remote node localhost:57637 failed with the following error: FATAL: role "test_user" is not permitted to log in
|
ERROR: connection to the remote node localhost:57637 failed with the following error: FATAL: role "test_user" is not permitted to log in
|
||||||
CONTEXT: COPY numbers_reference, line 1: "3,1"
|
|
||||||
-- verify shards for reference table are still valid
|
-- verify shards for reference table are still valid
|
||||||
SELECT shardid, shardstate, nodename, nodeport
|
SELECT shardid, shardstate, nodename, nodeport
|
||||||
FROM pg_dist_shard_placement join pg_dist_shard using(shardid)
|
FROM pg_dist_shard_placement join pg_dist_shard using(shardid)
|
||||||
|
|
Loading…
Reference in New Issue