aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/in/in_with_opt_tuple.sql
blob: 98735c8eadddff0577400148518e0f8561b8e643 (plain) (blame)
1
2
3
4
5
6
7
8
/* postgres can not */
SELECT *
FROM plato.Input
WHERE AsTuple(cast(key as int32), cast(subkey as int32)) in (
    AsTuple(42, 5),
    AsTuple(75, 1),
    AsTuple(20, 3),
);