blob: 37887e58aa3173730f4b23511227c9d55707f9ea [file] [log] [blame]
drop dataverse test if exists;
create dataverse test;
use dataverse test;
write output to nc1:"rttest/numeric_round0.adm";
let $c0 := int8("-0")
let $c1 := int16("-0")
let $c2 := int32("-0")
let $c3 := int64("-0")
let $c4 := int8("0")
let $c5 := int16("0")
let $c6 := int32("0")
let $c7 := int64("0")
return {"f0": numeric-round($c0), "f1": numeric-round($c1),"f2": numeric-round($c2), "f3": numeric-round($c3),
"f4": numeric-round($c4),"f5": numeric-round($c5) ,"f6": numeric-round($c6), "f7": numeric-round($c7)}