blob: 0280e92bd0f6aea73006cd6d0c1b1af363e920c2 [file] [log] [blame]
/*
* Description : Pass value of type float to UDF
* Expected Res : Success
* Date : Sep 4th 2012
*/
drop dataverse test if exists;
create dataverse test;
write output to nc1:"rttest/user-defined-functions_udf07.adm";
create function test.echo($a){
$a
}
let $b:=1234.1f
return test.echo($b)