mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
27 lines
1.7 KiB
Bash
Executable File
27 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
# shellcheck source=../shell_config.sh
|
|
. "$CURDIR"/../shell_config.sh
|
|
|
|
$CLICKHOUSE_CLIENT -q "drop table if exists test_lc"
|
|
$CLICKHOUSE_CLIENT -q "drop table if exists test"
|
|
$CLICKHOUSE_CLIENT -q "create table test (a String) Engine = MergeTree order by tuple()"
|
|
$CLICKHOUSE_CLIENT -q "create table test_lc (a LowCardinality(String)) Engine = MergeTree order by tuple()"
|
|
$CLICKHOUSE_CLIENT -q "select 'abc' as a format Parquet" | $CLICKHOUSE_CLIENT -q "insert into test_lc format Parquet"
|
|
$CLICKHOUSE_CLIENT -q "select a from test_lc format Parquet" | $CLICKHOUSE_CLIENT -q "insert into test format Parquet"
|
|
$CLICKHOUSE_CLIENT -q "select a from test order by a"
|
|
$CLICKHOUSE_CLIENT -q "drop table if exists test_lc"
|
|
$CLICKHOUSE_CLIENT -q "drop table if exists test"
|
|
|
|
$CLICKHOUSE_CLIENT -q "drop table if exists test_lc"
|
|
$CLICKHOUSE_CLIENT -q "drop table if exists test"
|
|
$CLICKHOUSE_CLIENT -q "create table test (a Nullable(String)) Engine = MergeTree order by tuple()"
|
|
$CLICKHOUSE_CLIENT -q "create table test_lc (a LowCardinality(Nullable(String))) Engine = MergeTree order by tuple()"
|
|
$CLICKHOUSE_CLIENT -q "select 'ghi' as a format Parquet" | $CLICKHOUSE_CLIENT -q "insert into test_lc format Parquet"
|
|
$CLICKHOUSE_CLIENT -q "select cast(Null as Nullable(String)) as a format Parquet" | $CLICKHOUSE_CLIENT -q "insert into test_lc format Parquet"
|
|
$CLICKHOUSE_CLIENT -q "select a from test_lc format Parquet" | $CLICKHOUSE_CLIENT -q "insert into test format Parquet"
|
|
$CLICKHOUSE_CLIENT -q "select a from test order by a"
|
|
$CLICKHOUSE_CLIENT -q "drop table if exists test_lc"
|
|
$CLICKHOUSE_CLIENT -q "drop table if exists test"
|