blob: c5b752a56aa682b3eac497f85f7dcb27788de734 [file] [log] [blame]
ilovesoupc9fef1d2012-07-08 19:30:42 +00001drop dataverse test if exists;
2create dataverse test;
3use dataverse test;
4
5write output to nc1:"rttest/numeric_round3.adm";
6
7
8let $c0 := double("20.1")
9let $c1 := double("-20.56e-30")
10let $c2 := double("NaN")
11let $c3 := double("INF")
12let $c4 := double("-INF")
13let $c5 := double("-0.0")
14let $c6 := double("0.0")
jarodwenf5cd0a72013-03-17 02:08:33 +000015let $c7 := double("-6223372036854775807.89239")
ilovesoupc9fef1d2012-07-08 19:30:42 +000016return {"d0": numeric-round($c0), "d1": numeric-round($c1),"d2": numeric-round($c2),
jarodwenf5cd0a72013-03-17 02:08:33 +000017 "d3": numeric-round($c3),"d4": numeric-round($c4),"d5": numeric-round($c5), "d6": numeric-round($c6), "d7": numeric-round($c7)}