ClickHouse/tests/queries/0_stateless/01848_http_insert_segfault.sh

10 lines
834 B
Bash
Raw Normal View History

2021-04-26 15:50:40 +00:00
#!/usr/bin/env bash
2022-07-02 17:48:42 +00:00
# Tags: no-tsan
# Sometimes is takes longer than 60 seconds under TSan.
2021-04-26 15:50:40 +00:00
2022-07-02 17:48:42 +00:00
CUR_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
# shellcheck source=../shell_config.sh
. "$CUR_DIR"/../shell_config.sh
2021-04-26 15:50:40 +00:00
2022-07-02 17:48:42 +00:00
${CLICKHOUSE_LOCAL} --query "select col1, initializeAggregation('argMaxState', col2, insertTime) as col2, now() as insertTime FROM generateRandom('col1 String, col2 Array(Float64)') LIMIT 1000000 FORMAT CSV" | ${CLICKHOUSE_CURL} -s 'http://localhost:8123/?query=INSERT%20INTO%20non_existing_table%20SELECT%20col1%2C%20initializeAggregation(%27argMaxState%27%2C%20col2%2C%20insertTime)%20as%20col2%2C%20now()%20as%20insertTime%20FROM%20input(%27col1%20String%2C%20col2%20Array(Float64)%27)%20FORMAT%20CSV' --data-binary @- | grep -q "Table default.non_existing_table doesn't exist" && echo 'Ok.' || echo 'FAIL' ||: