aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/optimizers/yql-10737_lost_passthrough.sql
blob: 92271a89b1d9367c12defb62bf86d0319bae922a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* postgres can not */
/* multirun can not */
/* syntax version 1 */
/* kikimr can not - table truncate */
USE plato;

insert into @a
select "1" as Text, ["a", "b"] as Attachments;

commit;

SELECT x.*, "" AS Text, ListCreate(TypeOf(Attachments)) AS Attachments
WITHOUT x.Text, x.Attachments
FROM @a AS x
;