summaryrefslogtreecommitdiffstats
path: root/yt/yql/tests/sql/suites/select/sample_limit_recordindex.yql
blob: 220fbfa0600b17f029215caf0b71c3927910aa3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/* custom check: len(yt_res_yson[0][b'Write'][0][b'Data']) <= 5 */
USE plato;

SELECT
    key,
    subkey,
    TableRecordIndex() AS index
FROM
    Input
SAMPLE 1.0 / 5
LIMIT 5
;