blob: e82a139d2ed9fd74c3a6b318a2ed6b8f3a6a3649 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* syntax version 1 */
/* postgres can not */
/* custom check: len(yt_res_yson[0]['Write'][0]['Data']) < 16 */
USE plato;
$udf = YQL::@@
(lambda '(key stream)
(PartitionByKey stream
(lambda '(item) (Way item))
(Void)
(Void)
(lambda '(listOfPairs)
(FlatMap listOfPairs
(lambda '(pair) (Just (AsStruct '('key key) '('src (Nth pair '0)) '('cnt (Length (ForwardList (Nth pair '1)))))))
)
)
)
)
@@;
$r = (REDUCE Input SAMPLE(0.1), Input SAMPLE(0.1) ON key USING $udf(TableRow()));
SELECT key, src, cnt FROM $r ORDER BY key, src, cnt;
|