mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 12:14:18 +00:00
17 lines
634 B
Bash
Executable File
17 lines
634 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CUR_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
# shellcheck source=../shell_config.sh
|
|
. "$CUR_DIR"/../shell_config.sh
|
|
|
|
set -e
|
|
|
|
format="$CLICKHOUSE_FORMAT"
|
|
|
|
echo "select 1 format CSV settings max_execution_time = 0.001" | $format
|
|
echo "select 1 settings max_execution_time = 0.001 format CSV" | $format
|
|
echo "select 1 UNION ALL Select 2 format CSV settings max_execution_time = 0.001" | $format
|
|
|
|
# I don't think having multiple settings makes sense, but it's supported so test that it still works
|
|
echo "select 1 settings max_threads=1 UNION ALL select 2 settings max_execution_time=2 format Null" | $format
|