RamanGrover29@gmail.com | 58cf330 | 2012-11-09 00:27:45 +0000 | [diff] [blame] | 1 | /* |
2 | * Description : Create UDF and invoke the UDF from with in asterix built-in function | ||||
3 | * Expected Res : Success | ||||
4 | * Date : Sep 5th 2012 | ||||
5 | */ | ||||
6 | |||||
7 | drop dataverse test if exists; | ||||
8 | create dataverse test; | ||||
9 | |||||
10 | write output to nc1:"rttest/cross-dataverse_udf18.adm"; | ||||
11 | |||||
12 | create function test.fn06(){ | ||||
13 | false | ||||
14 | } | ||||
15 | |||||
16 | let $val := not(test.fn06()) | ||||
17 | return $val |