blob: 83e19e6b989363fe827a7c638ee6a2064c726bc3 [file] [log] [blame]
/*
* Description : Create UDF to concatenate two input strings.
* Expected Res : Success
* Date : Sep 5th 2012
*/
drop dataverse test if exists;
create dataverse test;
write output to nc1:"rttest/user-defined-functions_udf22.adm";
create function test.getFullName($fname,$lname){
string-concat([$fname,$lname])
}
let $fn := "Bob"
let $ln := "Harbus"
return test.getFullName($fn,$ln)