Added failing test #11539

This commit is contained in:
Alexey Milovidov 2020-06-09 03:38:47 +03:00
parent 91d06c7e4f
commit 6ee6b751be
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1 @@
Loaded 1 queries.

View File

@ -0,0 +1,16 @@
#!/usr/bin/env bash
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
. $CURDIR/../shell_config.sh
$CLICKHOUSE_CLIENT --multiquery --query "
DROP TABLE IF EXISTS bug;
CREATE TABLE bug (UserID UInt64, Date Date) ENGINE = MergeTree ORDER BY Date;
INSERT INTO bug SELECT rand64(), '2020-06-07' FROM numbers(50000000);
OPTIMIZE TABLE bug FINAL;"
$CLICKHOUSE_BENCHMARK --database $CLICKHOUSE_DATABASE --iterations 10 --max_threads 100 --min_bytes_to_use_direct_io 1 <<< "SELECT sum(UserID) FROM bug PREWHERE NOT ignore(Date)" >/dev/null 2>$CLICKHOUSE_TMP/err
cat $CLICKHOUSE_TMP/err
$CLICKHOUSE_CLIENT --multiquery --query "
DROP TABLE bug;"