ClickHouse/tests/queries/0_stateless/02015_async_inserts_2.sh

29 lines
939 B
Bash
Raw Normal View History

2021-09-01 23:18:09 +00:00
#!/usr/bin/env bash
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
# shellcheck source=../shell_config.sh
. "$CURDIR"/../shell_config.sh
2021-09-16 17:18:34 +00:00
url="${CLICKHOUSE_URL}&async_insert=1&wait_for_async_insert=1"
2021-09-01 23:18:09 +00:00
${CLICKHOUSE_CLIENT} -q "DROP TABLE IF EXISTS async_inserts"
2021-09-03 17:31:29 +00:00
${CLICKHOUSE_CLIENT} -q "CREATE TABLE async_inserts (id UInt32, s String) ENGINE = MergeTree ORDER BY id"
2021-09-01 23:18:09 +00:00
${CLICKHOUSE_CURL} -sS "$url" -d 'INSERT INTO async_inserts FORMAT CSV
1,"a"
2,"b"' &
${CLICKHOUSE_CURL} -sS "$url" -d 'INSERT INTO async_inserts FORMAT CSV
2021-09-04 00:57:05 +00:00
qqqqqqqqqqq' 2>&1 | grep -o "Code: 27" &
2021-09-01 23:18:09 +00:00
2021-09-03 17:31:29 +00:00
${CLICKHOUSE_CURL} -sS "$url" -d 'INSERT INTO async_inserts FORMAT CSV
4,"c"
3,"d"' &
2021-09-01 23:18:09 +00:00
wait
${CLICKHOUSE_CLIENT} -q "SELECT * FROM async_inserts ORDER BY id"
2021-09-03 17:31:29 +00:00
${CLICKHOUSE_CLIENT} -q "SELECT name, rows, level FROM system.parts WHERE table = 'async_inserts' AND database = '$CLICKHOUSE_DATABASE' ORDER BY name"
2021-09-01 23:18:09 +00:00
${CLICKHOUSE_CLIENT} -q "DROP TABLE async_inserts"