blob: 37887e58aa3173730f4b23511227c9d55707f9ea [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_round0.adm";
6
7
8let $c0 := int8("-0")
9let $c1 := int16("-0")
10let $c2 := int32("-0")
11let $c3 := int64("-0")
12let $c4 := int8("0")
13let $c5 := int16("0")
14let $c6 := int32("0")
15let $c7 := int64("0")
16return {"f0": numeric-round($c0), "f1": numeric-round($c1),"f2": numeric-round($c2), "f3": numeric-round($c3),
17 "f4": numeric-round($c4),"f5": numeric-round($c5) ,"f6": numeric-round($c6), "f7": numeric-round($c7)}