blob: b9db17fa196c0e13305496f0154606e79fd85f2d [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
RamanGrover29@gmail.com24710392012-11-11 18:57:42 +000013write output to nc1:"rttest/user-defined-functions_udf27.adm";
RamanGrover29@gmail.com58cf3302012-11-09 00:27:45 +000014
15create function test.f1(){
16100
17}
18
19let $a := true
20return some $i in [100,200] satisfies test.f1()