mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
16 lines
369 B
Bash
Executable File
16 lines
369 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
|
|
|
|
${CLICKHOUSE_LOCAL} --query "create table test engine Log as select 1 a"
|
|
|
|
# Should not see the table created by the previous instance
|
|
if ${CLICKHOUSE_LOCAL} --query "select * from test" 2>/dev/null
|
|
then
|
|
exit 1
|
|
fi
|
|
|