in_literal_nulls.sql 296 B

12345678910111213
  1. /* syntax version 1 */
  2. /* postgres can not */
  3. /* dq can not */
  4. /* dqfile can not */
  5. /* yt can not */
  6. pragma warning("disable", "4510");
  7. pragma warning("disable", "1108");
  8. select YQL::RangeComputeFor(
  9. Struct<x:Int32?>,
  10. ($row) -> (($row.x IN (1,2,5,null)) ?? false),
  11. AsTuple(AsAtom("x"))
  12. );