literal_complex.sql 240 B

123456789
  1. /* postgres can not */
  2. /* hybridfile can not YQL-17743 */
  3. use plato;
  4. $list = AsList(AsStruct(1 as a, "2" as b, "3" as c), AsStruct(4 as a, "5" as b, "6" as c));
  5. insert into Output
  6. select * from as_table($list)
  7. order by a desc, b, c desc;