blob: 2429f1ce060975bf326ea3f17f6f30b842e4e47d [file] [log] [blame]
/*
* Description : Create UDF and bind its return value to a variable and return that variable
* Expected Res : Success
* Date : Sep 4th 2012
*/
drop dataverse test if exists;
create dataverse test;
write output to nc1:"rttest/user-defined-functions_udf05.adm";
create function test.echo($a){
$a
}
let $b:=1234
return test.echo($b)