mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
19 lines
582 B
Bash
Executable File
19 lines
582 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
CUR_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
# shellcheck source=../shell_config.sh
|
|
. "$CUR_DIR"/../shell_config.sh
|
|
|
|
echo "create table test (x UInt64) engine=Memory;
|
|
insert into test from infile 'data'; -- {clientError BAD_ARGUMENTS}" | $CLICKHOUSE_LOCAL -nm
|
|
|
|
echo "create table test (x UInt64) engine=Memory;
|
|
insert into test from infile 'data';" | $CLICKHOUSE_LOCAL -nm --ignore-error
|
|
|
|
echo "create table test (x UInt64) engine=Memory;
|
|
insert into test from infile 'data'; -- {clientError BAD_ARGUMENTS}
|
|
select 1" | $CLICKHOUSE_LOCAL -nm
|
|
|