aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/view/standalone_view_lambda.txt
blob: bf1503890996c90c4b1c93e7bcba0b39367d3b16 (plain) (blame)
1
2
3
4
5
6
7
8
$concat = ($row) -> {
    return AddMember(
        $row, "foo",
        $row.key || "|" || $row.subkey || "|" || $row.value
    );
};

process `Input` using $concat(TableRow());