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