blob: e9f074241a55d67fd2a6a110ff9ea20ade43c36d [file] [log] [blame]
/*
* Description : Create UDF that returns string
* : compute the string lenght of the string
* Expected Res : Success
* Date : Sep 5th 2012
*/
drop dataverse test if exists;
create dataverse test;
write output to nc1:"rttest/user-defined-functions_udf16.adm";
create function test.fn02(){
"Welcome to the world of Asterix"
}
let $str := test.fn02()
return string-length($str)