blob: 5c25bf89cb1a3b389d02e24d8fb4cb3d813bf026 [file] [log] [blame]
drop dataverse test if exists;
create dataverse test;
use dataverse test;
write output to nc1:"rttest/numeric_round1.adm";
let $c0 := int8("-20")
let $c1 := int16("-23")
let $c2 := int32("-29")
let $c3 := int64("-21")
let $c4 := int8("20")
let $c5 := int16("22")
let $c6 := int32("23")
let $c7 := int64("27")
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)}