blob: aa6a57b11255530a000ce94d003b261579af4b7f [file] [log] [blame]
RamanGrover29@gmail.com58cf3302012-11-09 00:27:45 +00001/*
2 * Description : Create UDF and invoke the UDF from with in asterix built-in function
3 * Expected Res : Success
4 * Date : Sep 5th 2012
5 */
6
7drop dataverse test if exists;
8create dataverse test;
9
RamanGrover29@gmail.com24710392012-11-11 18:57:42 +000010write output to nc1:"rttest/user-defined-functions_udf18.adm";
RamanGrover29@gmail.com58cf3302012-11-09 00:27:45 +000011
12create function test.fn06(){
13false
14}
15
16let $val := not(test.fn06())
17return $val