coalesce_propagate.sql 228 B

12345678910111213
  1. /* syntax version 1 */
  2. $src = [
  3. <|x:1/0, y:2/0|>,
  4. <|x:1/0, y:1|>,
  5. <|x:1, y:1/0|>,
  6. <|x:2, y:2|>,
  7. <|x:3, y:3|>,
  8. <|x:4, y:4|>,
  9. <|x:5, y:5|>,
  10. ];
  11. select * from as_table($src) where not (x < 3 or y > 3);