2018-08-08 00:10:01 +00:00
|
|
|
#!/usr/bin/env bash
|
2021-09-12 12:35:27 +00:00
|
|
|
# Tags: no-fasttest
|
2018-08-08 00:10:01 +00:00
|
|
|
|
|
|
|
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
|
2018-08-08 00:10:01 +00:00
|
|
|
|
2020-12-28 11:46:53 +00:00
|
|
|
# shellcheck source=./mergetree_mutations.lib
|
2020-08-01 00:52:41 +00:00
|
|
|
. "$CURDIR"/mergetree_mutations.lib
|
2018-08-08 00:10:01 +00:00
|
|
|
|
2019-04-16 14:13:13 +00:00
|
|
|
echo "INSERT INTO test FORMAT CSV" | ${CLICKHOUSE_CLIENT} -n 2>/dev/null
|
2018-08-08 00:10:01 +00:00
|
|
|
echo $?
|