summaryrefslogtreecommitdiffstats
path: root/yql/essentials/udfs/common/yson2/test/cases/MutView.sql
blob: 637b7c9eee1294975fffa763c8a8f58eab79c291 (plain) (blame)
1
2
3
4
5
6
7
8
SELECT 
    Block(($x)->{
        $m = Udf(Yson::MutCreate, $x as Depends)();
        $m, $v1 = Yson::MutView($m);
        $m = Yson::MutUpsert($m, 'foo'y);
        $m, $v2 = Yson::MutView($m);
        return LinearDestroy([$v1, $v2], $m);
    });