blob: 5c25bf89cb1a3b389d02e24d8fb4cb3d813bf026 [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_round1.adm";
6
7
8let $c0 := int8("-20")
9let $c1 := int16("-23")
10let $c2 := int32("-29")
11let $c3 := int64("-21")
12let $c4 := int8("20")
13let $c5 := int16("22")
14let $c6 := int32("23")
15let $c7 := int64("27")
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)}