blob: c50b3dc9a50fa0759d09d1935ea10bcc7353e0e8 [file] [log] [blame]
RamanGrover29@gmail.com58cf3302012-11-09 00:27:45 +00001/*
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
10drop dataverse test if exists;
11create dataverse test;
12
13write output to nc1:"rttest/cross-dataverse_udf27.adm";
14
15create function test.f1(){
16100
17}
18
19let $a := true
20return some $i in [100,200] satisfies test.f1()