RamanGrover29@gmail.com | 58cf330 | 2012-11-09 00:27:45 +0000 | [diff] [blame] | 1 | /* |
2 | * Description : Create UDF and invoke UDF in return clause of FLWOR expression | ||||
3 | * Expected Res : Success | ||||
4 | * Date : 31st Aug 2012 | ||||
5 | */ | ||||
6 | |||||
7 | drop dataverse testdv1 if exists; | ||||
8 | create dataverse testdv1; | ||||
9 | |||||
10 | write output to nc1:"rttest/cross-dataverse_cross-dv14.adm"; | ||||
11 | |||||
12 | create function testdv1.fun01(){ | ||||
13 | 100 | ||||
14 | } | ||||
15 | |||||
16 | let $a := true | ||||
17 | return testdv1.fun01(); |