mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
18 lines
571 B
Bash
Executable File
18 lines
571 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Tags: no-fasttest, no-parallel
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
# shellcheck source=../shell_config.sh
|
|
. "$CURDIR"/../shell_config.sh
|
|
|
|
|
|
$CLICKHOUSE_LOCAL -q "select toUInt32(number) as x from numbers(10) format JSONEachRow" > data.jsoneachrow
|
|
|
|
$CLICKHOUSE_LOCAL -q "desc table table" < data.jsoneachrow
|
|
$CLICKHOUSE_LOCAL -q "select * from table" < data.jsoneachrow
|
|
|
|
rm data.jsoneachrow
|
|
|
|
echo -e "1\t2\t3" | $CLICKHOUSE_LOCAL -q "desc table table" --file=-
|
|
echo -e "1\t2\t3" | $CLICKHOUSE_LOCAL -q "select * from table" --file=-
|
|
|