mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Add a test for #15540
This commit is contained in:
parent
f573aeb97e
commit
b767efd889
10
tests/queries/0_stateless/01538_fuzz_aggregate.sql
Normal file
10
tests/queries/0_stateless/01538_fuzz_aggregate.sql
Normal file
@ -0,0 +1,10 @@
|
||||
SELECT
|
||||
count(),
|
||||
sum(ns)
|
||||
FROM
|
||||
(
|
||||
SELECT intDiv(number, NULL) AS k
|
||||
FROM system.numbers_mt
|
||||
GROUP BY k
|
||||
)
|
||||
ARRAY JOIN ns; -- { serverError 47 }
|
Loading…
Reference in New Issue
Block a user