summaryrefslogtreecommitdiffstats
path: root/yql/essentials/udfs/common/yson2/test/cases/MutInsert.sql
blob: 685d0bd9cdaf99748f7b5941872e90bb48d8f074 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
SELECT 
    Block(($x)->{
        $m = Udf(Yson::MutCreate, $x as Depends)();
        $m = Yson::MutInsert($m, '1'y);
        return Yson::MutFreeze($m);
    }),
    Block(($x)->{
        $m = Udf(Yson::MutCreate, $x as Depends)();
        $m = Yson::MutInsert($m, '1'y);
        $m = Yson::MutInsert($m, '2'y);
        return Yson::MutFreeze($m);
    });