blob: fc3447d1eeee31411ceb3e8daeb9ad8d488e2582 [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/user-defined-functions_udf14.adm";
create function test.foo($a,$b) {
$a*$b
}
test.foo(400,200)