aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/s-expressions/suites/Result/SeveralWritesAndCommits.yql
blob: 4780768ff4e544aee2f6930ad3359ecf6735738d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(
(let config (DataSource 'config))
(let world (Configure! world config 'PureDataSource 'yt))

(let res_sink (DataSink 'result))
(let world (Write! world res_sink (Key) (Int32 '1) '()))
(let world (Write! world res_sink (Key) (Int32 '2) '()))
(let world (Write! world res_sink (Key) (Int32 '3) '()))
(let world (Commit! world res_sink))
(let world (Write! world res_sink (Key) (Int32 '4) '()))
(let world (Write! world res_sink (Key) (Int32 '5) '()))
(let world (Write! world res_sink (Key) (Int32 '6) '()))
(let world (Commit! world res_sink))
(return world)
)