and_scalar.sql 254 B

123456789
  1. $data = [
  2. <|x:false,y:false|>,
  3. <|x:false,y:true|>,
  4. <|x:true,y:false|>,
  5. <|x:true,y:true|>,
  6. ];
  7. select x,y,x and Opaque(false),x and Opaque(true) from as_table($data);
  8. select x,y,Opaque(false) and y,Opaque(true) and y from as_table($data);