blob: 54f45dd7ff92db19bbd8a3284728db614e992c22 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
use plato;
pragma Engine = "ytflow";
pragma Ytflow.Cluster = "plato";
pragma Ytflow.PipelinePath = "pipelines/test";
insert into Output
select
nested_struct_field,
int64_field * 100 as int64_field
from Input;
|