Add a test

This commit is contained in:
Alexey Milovidov 2021-12-23 02:20:11 +03:00
parent df0e7d9ed3
commit 10d48f1203
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1 @@
1

View File

@ -0,0 +1,11 @@
#!/usr/bin/env bash
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
# shellcheck source=../shell_config.sh
. "$CURDIR"/../shell_config.sh
# Should correctly handle error.
${CLICKHOUSE_LOCAL} --query "SELECT toString(number) AS a, toString(number) AS a FROM numbers(10)" --output-format Native |
${CLICKHOUSE_LOCAL} --query "SELECT * FROM table" --input-format Native --structure 'a LowCardinality(String)' 2>&1 |
grep -c -F Exception