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

(let list (AsList (String 'a) (String 'b) (String 'c)))
(let s (String '""))
(let data (Fold list '(s)
   (lambda '(item state) (block '(
      (let state (Concat (Nth state '0) item))
      (return '(state)))))))
(let res_sink (DataSink 'result))
(let world (Write! world res_sink
    (Key)
    data '()))

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