mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 01:22:04 +00:00
32 lines
811 B
Bash
Executable File
32 lines
811 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Tags: long, no-asan, no-msan, no-tsan, no-ubsan, no-debug
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
# shellcheck source=../shell_config.sh
|
|
. "$CURDIR"/../shell_config.sh
|
|
|
|
# This query should return empty result
|
|
$CLICKHOUSE_CLIENT --compile_aggregate_expressions 1 --min_count_to_compile_aggregate_expression=0 --query "
|
|
SELECT
|
|
COUNT() AS c,
|
|
group_key,
|
|
anyIf(r, key = 0) AS x0,
|
|
anyIf(r, key = 1) AS x1,
|
|
anyIf(r, key = 2) AS x2
|
|
FROM
|
|
(
|
|
SELECT
|
|
CRC32(toString(number)) % 1000000 AS group_key,
|
|
number % 3 AS key,
|
|
number AS r
|
|
FROM numbers(10000000)
|
|
)
|
|
GROUP BY group_key
|
|
HAVING (c = 2) AND (x0 > 0) AND (x1 > 0) AND (x2 > 0)
|
|
ORDER BY group_key ASC
|
|
LIMIT 10
|
|
SETTINGS max_bytes_before_external_group_by = 200000
|
|
" && echo -n '.'
|
|
|
|
echo
|