yql-10737_lost_passthrough.sql 306 B

123456789101112131415
  1. /* postgres can not */
  2. /* multirun can not */
  3. /* syntax version 1 */
  4. /* kikimr can not - table truncate */
  5. USE plato;
  6. insert into @a
  7. select "1" as Text, ["a", "b"] as Attachments;
  8. commit;
  9. SELECT x.*, "" AS Text, ListCreate(TypeOf(Attachments)) AS Attachments
  10. WITHOUT x.Text, x.Attachments
  11. FROM @a AS x
  12. ;