RamanGrover29@gmail.com | 58cf330 | 2012-11-09 00:27:45 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Description : Create UDF and invoke UDF from a quantified expression |
| 3 | * Expected Res : Success |
| 4 | * Date : Sep 6th 2012 |
| 5 | */ |
| 6 | |
| 7 | // this test is not giving expected results. |
| 8 | // issue 194 reported to track this |
| 9 | |
| 10 | drop dataverse test if exists; |
| 11 | create dataverse test; |
| 12 | |
RamanGrover29@gmail.com | 2471039 | 2012-11-11 18:57:42 +0000 | [diff] [blame] | 13 | write output to nc1:"rttest/user-defined-functions_udf27.adm"; |
RamanGrover29@gmail.com | 58cf330 | 2012-11-09 00:27:45 +0000 | [diff] [blame] | 14 | |
| 15 | create function test.f1(){ |
| 16 | 100 |
| 17 | } |
| 18 | |
| 19 | let $a := true |
| 20 | return some $i in [100,200] satisfies test.f1() |