mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
26 lines
623 B
Bash
Executable File
26 lines
623 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Tags: no-fasttest, no-parallel
|
|
|
|
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
|
|
|