mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-05 14:02:21 +00:00
50 lines
2.4 KiB
Bash
Executable File
50 lines
2.4 KiB
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
|
|
|
|
function run_format()
|
|
{
|
|
local q="$1" && shift
|
|
|
|
echo "[multi] $q"
|
|
$CLICKHOUSE_FORMAT "$@" <<<"$q"
|
|
}
|
|
function run_format_both()
|
|
{
|
|
local q="$1" && shift
|
|
|
|
echo "[multi] $q"
|
|
$CLICKHOUSE_FORMAT "$@" <<<"$q"
|
|
echo "[oneline] $q"
|
|
$CLICKHOUSE_FORMAT --oneline "$@" <<<"$q"
|
|
}
|
|
|
|
# NOTE: that those queries may work slow, due to stack trace obtaining
|
|
run_format 'insert into foo settings max_threads=1' |& grep --max-count 2 --only-matching -e "Syntax error (query): failed at position .* (end of query):" -e '^\[.*$'
|
|
|
|
# compatibility
|
|
run_format 'insert into foo format tsv settings max_threads=1' |& grep --max-count 2 --only-matching -e "NOT_IMPLEMENTED" -e '^\[.*$'
|
|
run_format_both 'insert into foo format tsv settings max_threads=1' --allow_settings_after_format_in_insert
|
|
run_format 'insert into foo settings max_threads=1 format tsv settings max_threads=1' --allow_settings_after_format_in_insert |& grep --max-count 2 --only-matching -e "You have SETTINGS before and after FORMAT" -e '^\[.*$'
|
|
|
|
# and via server (since this is a separate code path)
|
|
$CLICKHOUSE_CLIENT -q 'drop table if exists data_02263'
|
|
$CLICKHOUSE_CLIENT -q 'create table data_02263 (key Int) engine=Memory()'
|
|
$CLICKHOUSE_CLIENT -q 'insert into data_02263 format TSV settings max_threads=1 1' |& grep --max-count 1 -F --only-matching "Cannot parse input: expected '\n' before: 'settings max_threads=1 1'"
|
|
$CLICKHOUSE_CLIENT --allow_settings_after_format_in_insert=1 -q 'insert into data_02263 format TSV settings max_threads=1 1'
|
|
$CLICKHOUSE_CLIENT -q 'select * from data_02263'
|
|
$CLICKHOUSE_CLIENT --allow_settings_after_format_in_insert=1 -q 'insert into data_02263 settings max_threads=1 format tsv settings max_threads=1' |& grep --max-count 1 -F --only-matching "You have SETTINGS before and after FORMAT"
|
|
$CLICKHOUSE_CLIENT -q 'drop table data_02263'
|
|
|
|
run_format_both 'insert into foo values'
|
|
run_format_both 'insert into foo select 1'
|
|
run_format_both 'insert into foo format tsv'
|
|
|
|
run_format_both 'insert into foo settings max_threads=1 values'
|
|
run_format_both 'insert into foo settings max_threads=1 select 1'
|
|
run_format_both 'insert into foo settings max_threads=1 format tsv'
|
|
run_format_both 'insert into foo select 1 settings max_threads=1'
|
|
run_format_both 'insert into foo settings max_threads=1 select 1 settings max_threads=1'
|