blob: f3df16100201a741f6e3f4f7baa3e8e2717bd5ab [file] [log] [blame]
/*
* Test case name : primitive-03.aql
* Description : Test primitive integer type int32 constructor function with boundary values
* Success : Yes
* Date : May 7th 2012
*
*/
write output to nc1:"rttest/constructor_primitive-03.adm";
//Boundary value tests int32().
//with MIN and MAX supported values.
let $a:=int32("-2147483647")
let $b:=int32("2147483647")
let $c:=int32("0")
let $d:=int32("1")
let $e:=int32("-1")
let $f:=int32("1073741828")
let $g:=int32("-1073741828")
return {"$a":$a,"$b":$b,"$c":$c,"$d":$d,"$e":$e,"$f":$f,"$g":$g}