summaryrefslogtreecommitdiffstats
path: root/yt/yql/tests/sql/suites/sampling/orderedjoin_right_sample.yql
blob: 8104b64e5d71bb51278fe03160ee5aa040746de4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/* postgres can not */
/* custom check: len(yt_res_yson[0][b'Write'][0][b'Data']) < 10 */
/* ignore plan diff */
/* syntax version 1 */
use plato;
pragma yt.JoinMergeTablesLimit="2";
pragma DisableSimpleColumns;

select * from plato.Input as a
inner join plato.Input as b SAMPLE 0.3
on a.key = b.key;