aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/pg/sublink_where_in.sql
blob: 6fdb415b7726139be2b8722f47b75f37ce1ef980 (plain) (blame)
1
2
3
4
--!syntax_pg
select * from (select 10 as x) a where x in (values (1),(2));
select * from (select 2 as x) a where x in (values (1),(2));
select * from (select 1 as x) a where x in (select 1 limit 0);