aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/sampling/system_sampling.sql
blob: edc203865333cffd70ebe33ca46c111a1e885059 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/* postgres can not */
/* custom check: len(yt_res_yson[0]['Write'][0]['Data']) < 100 */
/* syntax version 1 */
USE plato;

EVALUATE FOR $_i IN ListFromRange(0, 10)  DO BEGIN
    INSERT INTO Output
    SELECT * FROM Input;
    COMMIT;
END DO;

SELECT * FROM Output TABLESAMPLE SYSTEM(10);