blob: b9db17fa196c0e13305496f0154606e79fd85f2d [file] [log] [blame]
jarodwencbbab142013-02-01 07:56:46 +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/user-defined-functions_udf27.adm";
14
15create function test.f1(){
16100
17}
18
19let $a := true
20return some $i in [100,200] satisfies test.f1()