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

(let res_sink (DataSink 'result))
(let world (Write! world res_sink (Key) (Inc (Double '3.3)) '('('type))))
(let world (Write! world res_sink (Key) (Inc (Float '-7.5)) '('('type))))
(let world (Write! world res_sink (Key) (Dec (Double '-0.3)) '('('type))))
(let world (Write! world res_sink (Key) (Dec (Float '4.75)) '('('type))))

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