blob: d0da4e1ea83cb44c131a2d1e16c1d8a54adf6015 [file] [log] [blame]
RamanGrover29@gmail.com58cf3302012-11-09 00:27:45 +00001/*
2 * Description : Create UDF and pass an unordered list as input and return that list.
3 * Expected Res : Success
4 * Date : 4th September 2012
5 */
6
7drop dataverse test if exists;
8create dataverse test;
9
RamanGrover29@gmail.com24710392012-11-11 18:57:42 +000010write output to nc1:"rttest/user-defined-functions_udf10.adm";
RamanGrover29@gmail.com58cf3302012-11-09 00:27:45 +000011
12create function test.echo($uolist){
13$uolist
14}
15
16let $a:={{"this is optional data","this is extra data","open types are good"}}
17return test.echo($a)