mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-07 16:14:52 +00:00
31 lines
908 B
Bash
Executable File
31 lines
908 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
. "$CURDIR"/../shell_config.sh
|
|
|
|
|
|
R1=table_1013_1
|
|
R2=table_1013_2
|
|
|
|
${CLICKHOUSE_CLIENT} -n -q "
|
|
DROP TABLE IF EXISTS $R1;
|
|
DROP TABLE IF EXISTS $R2;
|
|
|
|
CREATE TABLE $R1 (x UInt32) ENGINE ReplicatedMergeTree('/clickhouse/tables/${CLICKHOUSE_DATABASE}.table_1013', 'r1') ORDER BY x;
|
|
CREATE TABLE $R2 (x UInt32) ENGINE ReplicatedMergeTree('/clickhouse/tables/${CLICKHOUSE_DATABASE}.table_1013', 'r2') ORDER BY x;
|
|
|
|
SYSTEM STOP FETCHES $R2;
|
|
INSERT INTO $R1 VALUES (1)
|
|
"
|
|
|
|
timeout 10s ${CLICKHOUSE_CLIENT} -n -q "
|
|
SET receive_timeout=1;
|
|
SYSTEM SYNC REPLICA $R2
|
|
" 2>&1 | grep -F -q "Code: 159. DB::Exception" && echo 'OK' || echo 'Failed!'
|
|
|
|
# By dropping tables all related SYNC REPLICA queries would be terminated as well
|
|
${CLICKHOUSE_CLIENT} -n -q "
|
|
DROP TABLE IF EXISTS $R2;
|
|
DROP TABLE IF EXISTS $R1;
|
|
"
|