summaryrefslogtreecommitdiffstats
path: root/yt/yql/tests/sql/suites/blocks/block_input_per_cluster.sql
blob: 9526c972eb5e4877e97fdba132f7b1f976911098 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* postgres can not */
/* yt can not */
USE plato;

PRAGMA plato.JobBlockInput;

SELECT
    key,
    subkey,
    "value: " || value AS value,
FROM plato.PInput
WHERE key < "100"
ORDER BY key;

SELECT
    key,
    subkey,
    "value: " || value AS value,
FROM banach.BInput
WHERE key < "100"
ORDER BY key;