blob: 589b74ccc81ec8efc5154cb163ddf1fc5515ee16 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* postgres can not */
/* syntax version 1 */
USE plato;
PRAGMA OrderedColumns;
PRAGMA yt.UseNativeYtTypes;
INSERT INTO Output WITH TRUNCATE
SELECT
aggr_list(subkey) as subkey,
key,
FROM Input AS a
GROUP BY a.key as key;
|