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