blob: 1e393f3198e881f01830e66296f6969863b2c302 [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/cross-dataverse_udf05.adm";
create function test.echo($a){
$a
}
let $b:=1234
return test.echo($b)