Merge pull request #68713 from ClickHouse/vdimir/02150_index_hypothesis_race_long

Speedup test 02150_index_hypothesis_race_long
This commit is contained in:
vdimir 2024-08-27 17:03:07 +00:00 committed by GitHub
commit d2c1dd017f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,13 +11,21 @@ $CLICKHOUSE_CLIENT -q "CREATE TABLE t_index_hypothesis (a UInt32, b UInt32, INDE
$CLICKHOUSE_CLIENT -q "INSERT INTO t_index_hypothesis SELECT number, number + 1 FROM numbers(10000000)"
for _ in {0..30}; do
run_query() {
output=`$CLICKHOUSE_CLIENT -q "SELECT count() FROM t_index_hypothesis WHERE a = b"`
if [[ $output != "0" ]]; then
echo "output: $output, expected: 0"
exit 1
fi
done
}
export -f run_query
parallel -j 8 run_query ::: {0..30}
if [ $? -ne 0 ]; then
echo FAILED
exit 1
fi
echo OK