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:
Alexey Milovidov 2020-06-17 02:01:49 +03:00
commit 634829bccb

View File

@ -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);