blob: 0d67d7dbeb17a9b63fd4a8ece021f8b3cbbe0a53 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/* postgres can not */
/* custom check: len(yt_res_yson[0]['Write'][0]['Data']) < 10 */
USE plato;
INSERT INTO @tmp
SELECT * FROM Input TABLESAMPLE BERNOULLI(30) REPEATABLE(1);
COMMIT;
SELECT * FROM @tmp;
|