blob: 46ed133672da4ca7988944f13c6a971b2a41b38d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
use plato;
pragma Engine = "ytflow";
pragma Ytflow.Cluster = "plato";
pragma Ytflow.PipelinePath = "pipelines/test";
insert into Output
select
FromMutDict(FromDynamicLinear(Unwrap(Opaque([
ToDynamicLinear(ToMutDict({string_field: int64_field}, 1))
])[0]))) as dict_field
from Input;
|