mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
45 lines
2.2 KiB
Bash
Executable File
45 lines
2.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Tags: long, zookeeper
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
# shellcheck source=../shell_config.sh
|
|
. "$CURDIR"/../shell_config.sh
|
|
|
|
$CLICKHOUSE_CLIENT -q "drop table if exists projection_broken_parts_1 sync;"
|
|
$CLICKHOUSE_CLIENT -q "drop table if exists projection_broken_parts_1 sync;"
|
|
|
|
$CLICKHOUSE_CLIENT -q "create table projection_broken_parts_1 (a int, b int, projection ab (select a, sum(b) group by a))
|
|
engine = ReplicatedMergeTree('/test/02254/$CLICKHOUSE_TEST_ZOOKEEPER_PREFIX/rmt', 'r1')
|
|
order by a settings index_granularity = 1;"
|
|
|
|
$CLICKHOUSE_CLIENT -q "create table projection_broken_parts_2 (a int, b int, projection ab (select a, sum(b) group by a))
|
|
engine = ReplicatedMergeTree('/test/02254/$CLICKHOUSE_TEST_ZOOKEEPER_PREFIX/rmt', 'r2')
|
|
order by a settings index_granularity = 1;"
|
|
|
|
$CLICKHOUSE_CLIENT --insert_keeper_fault_injection_probability=0 -q "insert into projection_broken_parts_1 values (1, 1), (1, 2), (1, 3);"
|
|
$CLICKHOUSE_CLIENT -q "system sync replica projection_broken_parts_2;"
|
|
$CLICKHOUSE_CLIENT -q "select 1, *, _part from projection_broken_parts_2 order by b;"
|
|
$CLICKHOUSE_CLIENT -q "select 2, sum(b) from projection_broken_parts_2 group by a;"
|
|
|
|
path=$($CLICKHOUSE_CLIENT -q "select path from system.parts where database='$CLICKHOUSE_DATABASE' and table='projection_broken_parts_1' and name='all_0_0_0'")
|
|
# ensure that path is absolute before removing
|
|
$CLICKHOUSE_CLIENT -q "select throwIf(substring('$path', 1, 1) != '/', 'Path is relative: $path')" || exit
|
|
rm -f "$path/ab.proj/data.bin"
|
|
|
|
$CLICKHOUSE_CLIENT -q "select 3, sum(b) from projection_broken_parts_1 group by a format Null;" 2>/dev/null
|
|
|
|
num_tries=0
|
|
while ! $CLICKHOUSE_CLIENT -q "select 4, sum(b) from projection_broken_parts_1 group by a format Null;" 2>/dev/null; do
|
|
sleep 1;
|
|
num_tries=$((num_tries+1))
|
|
if [ $num_tries -eq 60 ]; then
|
|
break
|
|
fi
|
|
done
|
|
|
|
$CLICKHOUSE_CLIENT -q "system sync replica projection_broken_parts_1;"
|
|
$CLICKHOUSE_CLIENT -q "select 5, sum(b) from projection_broken_parts_1 group by a;"
|
|
|
|
$CLICKHOUSE_CLIENT -q "drop table if exists projection_broken_parts_1 sync;"
|
|
$CLICKHOUSE_CLIENT -q "drop table if exists projection_broken_parts_1 sync;"
|