mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Better
This commit is contained in:
parent
69d2a6080b
commit
4a12a5fe91
@ -396,6 +396,9 @@ function run_tests
|
||||
|
||||
# needs s3
|
||||
01944_insert_partition_by
|
||||
|
||||
# depends on Go
|
||||
02013_zlib_read_after_eof
|
||||
)
|
||||
|
||||
time clickhouse-test --hung-check -j 8 --order=random --use-skip-list \
|
||||
|
@ -4,13 +4,14 @@ 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_zlib/02013_zlib_read_after_eof_data | go run 02013_zlib_read_after_eof.go
|
||||
cat "$DATA_FILE" | go run 02013_zlib_read_after_eof.go
|
||||
|
||||
$CLICKHOUSE_CLIENT -q "SELECT count() FROM graphite;"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user