mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
21 lines
729 B
Bash
Executable File
21 lines
729 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Tags: no-fasttest
|
|
# Tag no-fasttest: depends on Go
|
|
|
|
CUR_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
# shellcheck source=../shell_config.sh
|
|
. "$CUR_DIR"/../shell_config.sh
|
|
|
|
DATA_FILE=$CUR_DIR/data_zlib/02013_zlib_read_after_eof_data
|
|
|
|
$CLICKHOUSE_CLIENT -q "DROP TABLE IF EXISTS graphite;"
|
|
|
|
$CLICKHOUSE_CLIENT -q "CREATE TABLE graphite(\`Path\` String, \`Value\` Float64, \`Time\` UInt32, \`Date\` Date, \`Timestamp\` UInt32) \
|
|
ENGINE = MergeTree PARTITION BY toYYYYMM(Date) ORDER BY (Path, Time) SETTINGS index_granularity = 8192;"
|
|
|
|
cat "$DATA_FILE" | go run $CUR_DIR/02013_zlib_read_after_eof.go
|
|
|
|
$CLICKHOUSE_CLIENT -q "SELECT count() FROM graphite;"
|
|
|
|
$CLICKHOUSE_CLIENT -q "drop table graphite;"
|