aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/blocks/and_scalar.sql
blob: a02d79ffae3d1690190e66f799f9b3aaec10ec21 (plain) (blame)
1
2
3
4
5
6
7
8
9
$data = [
    <|x:false,y:false|>,
    <|x:false,y:true|>,
    <|x:true,y:false|>,
    <|x:true,y:true|>,
];

select x,y,x and Opaque(false),x and Opaque(true) from as_table($data);
select x,y,Opaque(false) and y,Opaque(true) and y from as_table($data);