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

(let list (AsList (String 'a) (String 'b) (String 'c)))
(let data (Fold list '() (lambda '(item state) state)))
(let res_sink (DataSink 'result))
(let world (Write! world res_sink
    (Key)
    data '()))

(let world (Commit! world res_sink))
(return world)
)