blob: 95420b709b5a04f95d313e26747fcf4480199263 [file] [log] [blame]
RamanGrover29@gmail.com58cf3302012-11-09 00:27:45 +00001/*
2 * Description : Create UDF and define with missing references.
3 * Expected Res : Failure
4 * Date : Sep 6th 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_udf26.adm";
RamanGrover29@gmail.com58cf3302012-11-09 00:27:45 +000011
12create function test.needs_f1($x){
13 $x + f1()
14}
15
16test.needs_f1(12345)