aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/s-expressions/suites/InMem/StreamDiscard.yqls
blob: b5a18c981fb486c6132cd38fb236d849beb3f918 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
(
#comment
(let config (DataSource 'config))

(let res_sink (DataSink 'result))
(let list1 (AsList (Uint32 '1) (Uint32 '2) (Uint32 '3)))
(let world (Write! world res_sink (Key) (Collect (Discard (Iterator list1))) '('('type))))
(let world (Commit! world res_sink))
(return world)
)