Update 01818_input_format_with_names_use_header.sh

This commit is contained in:
Nikita Mikhaylov 2021-04-19 14:44:23 +03:00 committed by GitHub
parent 7a23d8292f
commit 1ead618895
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,12 +4,12 @@ CUR_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
# shellcheck source=../shell_config.sh
. "$CUR_DIR"/../shell_config.sh
${CLICKHOUSE_CLIENT_BINARY} -q "DROP TABLE IF EXISTS 01818_with_names;"
${CLICKHOUSE_CLIENT} -q "DROP TABLE IF EXISTS 01818_with_names;"
${CLICKHOUSE_CLIENT_BINARY} -q "CREATE TABLE 01818_with_names (t String) ENGINE = MergeTree ORDER BY t;"
${CLICKHOUSE_CLIENT} -q "CREATE TABLE 01818_with_names (t String) ENGINE = MergeTree ORDER BY t;"
echo -ne "t\ntestdata1\ntestdata2" | ${CLICKHOUSE_CLIENT_BINARY} --input_format_with_names_use_header 0 --query "INSERT INTO 01818_with_names FORMAT CSVWithNames"
echo -ne "t\ntestdata1\ntestdata2" | ${CLICKHOUSE_CLIENT} --input_format_with_names_use_header 0 --query "INSERT INTO 01818_with_names FORMAT CSVWithNames"
${CLICKHOUSE_CLIENT_BINARY} -q "SELECT * FROM 01818_with_names;"
${CLICKHOUSE_CLIENT} -q "SELECT * FROM 01818_with_names;"
${CLICKHOUSE_CLIENT_BINARY} -q "DROP TABLE IF EXISTS 01818_with_names;"
${CLICKHOUSE_CLIENT} -q "DROP TABLE IF EXISTS 01818_with_names;"