Check that totals correctly calculated in 01865_aggregator_overflow_row

Change aggregation function to uniqCombined() to check this.
This commit is contained in:
Azat Khuzhin 2021-05-08 20:43:01 +03:00
parent 4cecc238d6
commit f1aebbe927
2 changed files with 2 additions and 2 deletions

View File

@ -9,4 +9,4 @@
1
1
10000
10020

View File

@ -1,4 +1,4 @@
SELECT count()
SELECT uniqCombined(number)
FROM numbers(10000)
GROUP BY number
WITH TOTALS