2017-10-23 14:37:46 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
2020-12-28 11:46:53 +00:00
|
|
|
# shellcheck source=../shell_config.sh
|
2020-08-01 00:51:12 +00:00
|
|
|
. "$CURDIR"/../shell_config.sh
|
2017-10-23 14:37:46 +00:00
|
|
|
|
2019-04-16 14:13:13 +00:00
|
|
|
$CLICKHOUSE_CLIENT -q "DROP TABLE IF EXISTS foo;"
|
2017-10-23 14:37:46 +00:00
|
|
|
# Missing arguments for array, table not created
|
2019-04-16 14:13:13 +00:00
|
|
|
$CLICKHOUSE_CLIENT -q "CREATE TABLE foo (a Array) Engine=Memory;" 2&>/dev/null
|
2017-10-23 14:37:46 +00:00
|
|
|
$CLICKHOUSE_CLIENT -q "SELECT 'Still alive';"
|