lds_empty_cast.sql 469 B

1234567891011121314
  1. /* syntax version 1 */
  2. /* postgres can not */
  3. select
  4. Yql::Append(AsList(ListCreate(Int32)), []),
  5. Yql::Append(AsList(DictCreate(Int32, String)), {}),
  6. cast([] as List<Int32>),
  7. cast({} as Dict<Int32, String>),
  8. cast({} as Set<Int32>),
  9. AsList(ListCreate(Int32),[]),
  10. AsList([],ListCreate(Int32)),
  11. AsList(DictCreate(Int32, String),{}),
  12. AsList({},DictCreate(Int32, String)),
  13. AsList(SetCreate(Int32),{}),
  14. AsList({},SetCreate(Int32));