/* | |
* 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/cross-dataverse_udf26.adm"; | |
create function test.needs_f1($x){ | |
$x + f1() | |
} | |
test.needs_f1(12345) |