blob: ad710eb3a4f11162283496b2f578a1c5edb4f3b4 [file] [log] [blame]
/*
* Description : Create UDF to add two integers
* Expected Res : Success
* Date : 4th September 2012
*/
drop dataverse test if exists;
create dataverse test;
write output to nc1:"rttest/cross-dataverse_udf12.adm";
create function test.foo($a,$b) {
$a+$b
}
test.foo(100,200)