blob: d0da4e1ea83cb44c131a2d1e16c1d8a54adf6015 [file] [log] [blame]
/*
* Description : Create UDF and pass an unordered list as input and return that list.
* Expected Res : Success
* Date : 4th September 2012
*/
drop dataverse test if exists;
create dataverse test;
write output to nc1:"rttest/user-defined-functions_udf10.adm";
create function test.echo($uolist){
$uolist
}
let $a:={{"this is optional data","this is extra data","open types are good"}}
return test.echo($a)