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

$count = SELECT COUNT(*) FROM Input; -- $count = 10

$var = SELECT * FROM Input;

SELECT * FROM $var TABLESAMPLE BERNOULLI(5 * $count);