Add test for #69598

This commit is contained in:
Dmitry Novik 2024-09-19 17:33:46 +02:00
parent 993e10dc26
commit 08438c5659
2 changed files with 4 additions and 0 deletions

View File

@ -6,3 +6,4 @@ CAST(dummy, \'Int\') Int32
CAST(dummy, \'String\') String
0
55
45

View File

@ -17,3 +17,6 @@ describe (SELECT * FROM p3(t = 'Int64') union all SELECT * FROM p3(t = 'UInt64')
SELECT * FROM p3(t = 'String');
select arrayReduce('sum', (select groupArray(number) from paramview(top=10)));
create view test_pv as select number from numbers({limit:UInt64});
with (select sum(number) from test_pv(limit=10)) as sm select sm;