Add a test for clickhouse-client --param w/o value

This commit is contained in:
Azat Khuzhin 2021-06-23 02:50:25 +03:00
parent 7739fcc295
commit f9b3a8770c
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,2 @@
foo
foo

View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
CUR_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
# shellcheck source=../shell_config.sh
. "$CUR_DIR"/../shell_config.sh
$CLICKHOUSE_CLIENT --param_foo |& grep -q -x 'Code: 36. DB::Exception: Parameter requires value'
$CLICKHOUSE_CLIENT --param_foo foo -q 'select {foo:String}'
$CLICKHOUSE_CLIENT -q 'select {foo:String}' --param_foo foo