summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/blocks/xor_opt.yql
blob: 086e8b963ef51b37c198fc3355a2c913126475a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
$data = [
    <|x:false,y:false|>,
    <|x:false,y:true|>,
    <|x:false,y:null|>,
    <|x:true,y:false|>,
    <|x:true,y:true|>,
    <|x:true,y:null|>,
    <|x:null,y:false|>,
    <|x:null,y:true|>,
    <|x:null,y:null|>,
];

select x xor y from as_table($data);