aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/compute_range/huge_in.sql
blob: 188a77494ddc60503b74ca5ba7a47f805ade7e65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* syntax version 1 */
/* postgres can not */
/* yt can not */

pragma warning("disable", "4510");
pragma warning("disable", "1108");

select YQL::RangeComputeFor(
  Struct<x:Int32>,
  ($row) -> ($row.x IN ListFromRange(100000000, 0, -1)),
  AsTuple(AsAtom("x"))
);