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