blob: 656b6887563ee1196e00025ac8c2d7d7978adf6c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
SELECT
Block(($x)->{
$m = Udf(Yson::MutCreate, $x as Depends)();
$m = Yson::MutUpsert($m, '1'y);
$m = Yson::MutUpdate($m, '2'y);
return Yson::MutFreeze($m);
}),
Block(($x)->{
$m = Udf(Yson::MutCreate, $x as Depends)();
$m = Yson::MutUpdate($m, '1'y);
$m = Yson::MutInsert($m, '2'y);
return Yson::MutFreeze($m);
});
|