aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/s-expressions/suites/ImplictCasts/InsideOptLiteral.yql
blob: 52b4d2872a07c40016046453cc23edea941f5d60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
(
(let config (DataSource 'config))
(let world (Configure! world config 'PureDataSource 'yt))

(let res_sink (DataSink 'result))
(let data (AsList (Just (Uint32 '12))))
(let data (Append data (Just (Int64 '34))))
(let world (Write! world res_sink (Key) data '('('type))))
(let world (Commit! world res_sink))
(return world)
)