summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/produce/process_row.yql
blob: cd8458819a92b85485b7ecd2013da74053e837c2 (plain) (blame)
1
2
3
4
5
6
7
$input = select 1 as key, 'foo' as value;

$f = ($row)->{
    return <|key:$row.key + 1,value:$row.value|>;
};

PROCESS $input USING $f(TableRow());