mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Merge branch 'return-not-nullable-from-count-distinct-2' of github.com:yandex/ClickHouse into return-not-nullable-from-count-distinct-2
This commit is contained in:
commit
634829bccb
@ -7,13 +7,11 @@ SELECT uniqExact(number >= 5 ? number : NULL) FROM numbers(10);
|
||||
SELECT count(DISTINCT number >= 5 ? number : NULL) FROM numbers(10);
|
||||
|
||||
SELECT '---';
|
||||
|
||||
SELECT count(NULL);
|
||||
SELECT uniq(NULL);
|
||||
SELECT count(DISTINCT NULL);
|
||||
|
||||
SELECT '---';
|
||||
|
||||
SELECT avg(NULL);
|
||||
SELECT sum(NULL);
|
||||
SELECT corr(NULL, NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user