summaryrefslogtreecommitdiffstats
path: root/yql/essentials/udfs/common/yson2/test/cases/MutUpsert.sql
blob: 0a46befa3863ad5d5b488ffa85a9cf8d9cd56848 (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::MutUpsert($m, '1'y);
        return Yson::MutFreeze($m);
    }),
    Block(($x)->{
        $m = Udf(Yson::MutCreate, $x as Depends)();
        $m = Yson::MutUpsert($m, '1'y);
        $m = Yson::MutUpsert($m, '2'y);
        return Yson::MutFreeze($m);
    });