blob: 5b874eeeab3c82b16b2ca0c2bc9739e753b2bb88 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
pragma warning("disable","4510");
$input = select 1 as key, 'foo' as value;
$f = ($rows)->{
return Yql::Map($rows, ($row)->(<|key:$row.key + 1,value:$row.value|>));
};
PROCESS $input USING $f(TableRows());
|