blob: 95420b709b5a04f95d313e26747fcf4480199263 [file] [log] [blame]
/*
* Description : Create UDF and define with missing references.
* Expected Res : Failure
* Date : Sep 6th 2012
*/
drop dataverse test if exists;
create dataverse test;
write output to nc1:"rttest/user-defined-functions_udf26.adm";
create function test.needs_f1($x){
$x + f1()
}
test.needs_f1(12345)