blob: 9ad3034570714ecd9039a4a6465681533695cd10 [file] [log] [blame]
====
---- QUERY: primitive_orderby_bigint
-- Description : Scan a fact table and sort 50Million rows.
-- Target test case : Order by bigint column without returning all
-- rows to the client.
SELECT *
FROM (SELECT Rank()
OVER(
ORDER BY l_orderkey) AS rank
FROM lineitem
WHERE l_shipdate < '1992-05-09') a
WHERE rank < 10;
---- RESULTS
---- TYPES
====