aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/view/standalone_view_lambda.sql
blob: 7edb28296d70c56058272e418fd28799ec27c207 (plain) (blame)
1
2
3
4
5
6
7
8
use plato;

$stream = process InputView;
$type = EvaluateType(TypeHandle(ListItemType(TypeOf($stream))));

$lambda = ($row) -> (Cast($row as $type));

process InputView using $lambda(TableRow());