Test shadow lambda recovery

Be a good citizen and leave a test checking for the recovery
after the lambda function has been processed
This commit is contained in:
Raúl Marín 2021-08-05 19:03:42 +02:00
parent 8b9778ebb6
commit fd76966715
2 changed files with 3 additions and 2 deletions

View File

@ -1,3 +1,3 @@
1000 [2,3,4]
1000 [2,3,4] 1010
1
1

View File

@ -1,6 +1,7 @@
SELECT
1000 AS a,
arrayMap(a -> (a + 1), [1, 2, 3]);
arrayMap(a -> (a + 1), [1, 2, 3]),
a + 10 as c;
-- https://github.com/ClickHouse/ClickHouse/issues/5046