Merge pull request #25250 from ClickHouse/add-test-11535

Add test for #11535
This commit is contained in:
alexey-milovidov 2021-06-15 00:25:05 +03:00 committed by GitHub
commit 15f3ac9787
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,3 @@
1
1
1

View File

@ -0,0 +1,30 @@
select a
from (
with a+1 as aa,
sumIf(aa, b > 0) as aaif
select a, aaif
FROM (select 1 as a, 2 as b)
GROUP BY a
) as V;
select a
from (
with a+1 as aa
-- , sumIf(c, b > 0) as aaif
, sum(if(b>0,c,0)) as aaif2
select a, aaif2
FROM
(select 1 as a, 2 as b, 3 as c)
GROUP BY a
) as V;
select a
from (
with a+1 as aa
-- , sumIf(c, b > 0) as aaif
-- , sum(if(b>0,c,0)) as aaif2
select a, sumIf(c, b > 0) as aaif3
FROM
(select 1 as a, 2 as b, 3 as c)
GROUP BY a
) as V;