mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
Add a test
This commit is contained in:
parent
e4c1d17219
commit
e03196b3d3
@ -0,0 +1,4 @@
|
||||
['Hello','world','42" TV']
|
||||
['Hello','world','42" TV']
|
||||
['Hello','world','42" TV']
|
||||
['Hello','world','42" TV']
|
27
tests/queries/0_stateless/01607_arrays_as_nested_csv.sh
Executable file
27
tests/queries/0_stateless/01607_arrays_as_nested_csv.sh
Executable file
@ -0,0 +1,27 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
||||
. "$CURDIR"/../shell_config.sh
|
||||
|
||||
${CLICKHOUSE_CLIENT} --multiquery --query "
|
||||
DROP TABLE IF EXISTS test;
|
||||
CREATE TABLE test (a Array(String)) ENGINE = Memory;
|
||||
"
|
||||
|
||||
${CLICKHOUSE_CLIENT} --query "INSERT INTO test FORMAT CSV" <<END
|
||||
"['Hello', 'world', '42"" TV']"
|
||||
END
|
||||
|
||||
${CLICKHOUSE_CLIENT} --format_csv_allow_single_quotes 0 --query "INSERT INTO test FORMAT CSV" <<END
|
||||
"'Hello', 'world', '42"" TV'"
|
||||
END
|
||||
|
||||
${CLICKHOUSE_CLIENT} --input_format_csv_arrays_as_nested_csv 1 --query "INSERT INTO test FORMAT CSV" <<END
|
||||
"[""Hello"", ""world"", ""42"""" TV""]"
|
||||
"""Hello"", ""world"", ""42"""" TV"""
|
||||
END
|
||||
|
||||
${CLICKHOUSE_CLIENT} --multiquery --query "
|
||||
SELECT * FROM test;
|
||||
DROP TABLE IF EXISTS test;
|
||||
"
|
Loading…
Reference in New Issue
Block a user