blob: c0fcc0137492ead79a23c265240b9497f625bcd9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
PRAGMA DisableSimpleColumns;
/* postgres can not */
/* kikimr can not */
/* ignore yt detailed plan diff */
use plato;
pragma yt.MapJoinLimit="10M";
$sizes = (
SELECT
0 AS id
FROM Input
);
SELECT d.key FROM Input as d CROSS JOIN $sizes as s ORDER BY d.key;
|