yql-6008_limit_after_map.sql 204 B

1234567891011
  1. /* postgres can not */
  2. /* multirun can not */
  3. USE plato;
  4. insert into Output
  5. select * from plato.Input where value != "111" limit 3;
  6. commit;
  7. insert into Output
  8. select * from plato.Input order by value;