Fix data race in Avro format

This commit is contained in:
avogar 2022-07-22 14:23:05 +00:00
parent bed2206ae9
commit c6d0ca2940
3 changed files with 25 additions and 1 deletions

2
contrib/avro vendored

@ -1 +1 @@
Subproject commit e43c46e87fd32eafdc09471e95344555454c5ef8
Subproject commit aac4e605f070f2abd9a5f02ae70c17e4011588e8

View File

@ -0,0 +1,24 @@
#!/usr/bin/env bash
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
# shellcheck source=../shell_config.sh
. "$CURDIR"/../shell_config.sh
for i in $(seq 1 10);
do
$CLICKHOUSE_CLIENT -q "drop table if exists t_avro_$i"
$CLICKHOUSE_CLIENT -q "create table t_avro_$i (x UInt32, s String) engine=File(Avro)"
done
for i in $(seq 1 10);
do
$CLICKHOUSE_CLIENT -q "insert into t_avro_$i select number, 'str' from numbers(1000) settings engine_file_truncate_on_insert=1" > /dev/null &
done
sleep 5
for i in $(seq 1 10);
do
$CLICKHOUSE_CLIENT-q "drop table t_avro_$i"
done