huge_in.sql 268 B

1234567891011121314
  1. /* syntax version 1 */
  2. /* postgres can not */
  3. /* yt can not */
  4. pragma warning("disable", "4510");
  5. pragma warning("disable", "1108");
  6. select YQL::RangeComputeFor(
  7. Struct<x:Int32>,
  8. ($row) -> ($row.x IN ListFromRange(100000000, 0, -1)),
  9. AsTuple(AsAtom("x"))
  10. );