aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/limit/empty_input_after_limit.sql
blob: 3a15ab796f42179ff4b29ac4a410332947475d5c (plain) (blame)
1
2
3
4
5
6
7
8
/* postgres can not */
$in = (
    select * from plato.Input where key = "150"
    union all
    select * from plato.Input where key = "075"
);

select * from $in order by key limit 100 offset 90;