blob: fc3447d1eeee31411ceb3e8daeb9ad8d488e2582 [file] [log] [blame]
jarodwencbbab142013-02-01 07:56:46 +00001/*
2 * Description : Create UDF to multiply two integers
3 * Expected Res : Success
4 * Date : 4th September 2012
5 */
6
7drop dataverse test if exists;
8create dataverse test;
9
10write output to nc1:"rttest/user-defined-functions_udf14.adm";
11
12create function test.foo($a,$b) {
13$a*$b
14}
15
16test.foo(400,200)