blob: 55cc519812882e21c94d0193e1e5f1440f696096 [file] [log] [blame]
RamanGrover29@gmail.com58cf3302012-11-09 00:27:45 +00001/*
2 * Description : Create UDF that returns a heterogeneous ordered list
3 * : invoke the UDF in the FOR expression of FLWOR
4 * Expected Res : Success
5 * Date : Sep 5th 2012
6 * Ignored : Not part of current tests because of Issue 200
7 */
8
9// this test resturns NPE
10
11drop dataverse test if exists;
12create dataverse test;
13
14write output to nc1:"rttest/cross-dataverse_udf15.adm";
15
16create function test.OList2(){
17[[1,2,3,4,5,6,7,8,9,10],["a","b","c","d","e","f","g","h","y"]]
18}
19
20for $a in test.OList2()
21return $a