blob: bf024c76d4303230910c50f05f8ad09d8bde7635 [file] [log] [blame]
RamanGrover29@gmail.com58cf3302012-11-09 00:27:45 +00001/*
2 * Description : Create UDF and invoke in the WHERE clause of FLWOR expression
3 * Expected Res : Success
4 * Date : Sep 5th 2012
5 */
6
7drop dataverse test if exists;
8create dataverse test;
9
10write output to nc1:"rttest/cross-dataverse_udf19.adm";
11
12create function test.pie(){
133.14
14}
15
16create function test.area($radius){
17test.pie() * $radius * $radius
18}
19
20for $a in [2,4,6,8,10,12]
21where test.area($a) > 100
22return test.area($a)
23