ClickHouse/tests/queries/0_stateless/01099_parallel_distributed_insert_select.reference
Azat Khuzhin 50a312534c Extend parallel_distributed_insert_select to run INSERT into local table
Before this patch there was:

- parallel_distributed_insert_select=1, that executes:

    INSERT INTO dist_out SELECT ... FROM underlying_dist_in

After this patch there will be:

- parallel_distributed_insert_select=2, that executes:

    INSERT INTO underlying_dist_out SELECT ... FROM underlying_dist_in

And cover the behaviour w/o integration test, by using the following
techincs:
- SYSTEM STOP DISTRIBUTED SENDS
- prefer_localhost_replica=0
2020-08-25 22:49:13 +03:00

38 lines
364 B
Plaintext

parallel_distributed_insert_select=1
test_shard_localhost
0
1
2
test_cluster_two_shards_localhost
0 2
1 2
2 2
test_cluster_two_shards
distributed
local
0 2
1 2
2 2
distributed
0 4
1 4
2 4
parallel_distributed_insert_select=2
test_shard_localhost
0
1
2
test_cluster_two_shards_localhost
0 2
1 2
2 2
test_cluster_two_shards
distributed
0 4
1 4
2 4
local
0 2
1 2
2 2