2018-02-12 14:57:25 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2018-02-15 15:48:26 +00:00
|
|
|
[ -z "$CLICKHOUSE_CLIENT" ] && CLICKHOUSE_CLIENT="clickhouse-client"
|
|
|
|
|
2018-06-08 19:50:15 +00:00
|
|
|
SETTINGS="--compile=1 --min_count_to_compile=0 --max_threads=1 --max_memory_usage=8000000 --server_logs_file=/dev/null"
|
2018-02-15 15:48:26 +00:00
|
|
|
output=$($CLICKHOUSE_CLIENT -q "SELECT length(groupArray(number)) FROM (SELECT * FROM system.numbers LIMIT 1000000)" $SETTINGS 2>&1)
|
|
|
|
|
|
|
|
[[ $? -eq 0 ]] && echo "Expected non-zero RC"
|
2018-02-21 14:12:49 +00:00
|
|
|
if ! echo "$output" | grep -Fc -e 'Memory limit (for query) exceeded' -e 'Cannot compile code' ; then
|
|
|
|
echo -e 'There is no expected exception "Memory limit (for query) exceeded: would use..." or "Cannot compile code..."' "Whereas got:\n$output"
|
2018-02-12 14:57:25 +00:00
|
|
|
fi
|
2018-02-15 15:48:26 +00:00
|
|
|
|
2018-02-12 14:57:25 +00:00
|
|
|
$CLICKHOUSE_CLIENT -q "SELECT 1"
|