/* | |
* 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) |