ClickHouse/tests/queries/0_stateless/02211_shcema_inference_from_stdin.sh

18 lines
521 B
Bash
Executable File

#!/usr/bin/env bash
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"
echo -e "1\t2\t3" | $CLICKHOUSE_LOCAL -q "select * from table"