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