blob: 03b84a71ba2d35a8ba8863e5799f02f5aa4ac16f [file] [log] [blame]
RamanGrover29@gmail.com58cf3302012-11-09 00:27:45 +00001/*
2 * Description : Create two UDFs in two different dataverses
3 * : Invoke one UDF from the body of the other UDF.
4 * Expected Res : Success
5 * Date : 31st Aug 2012
6 */
7
8drop dataverse testdv1 if exists;
9drop dataverse testdv2 if exists;
10create dataverse testdv1;
11create dataverse testdv2;
12
13write output to nc1:"rttest/cross-dataverse_cross-dv11.adm";
14
15create function testdv1.fun01(){
16testdv2.fun02()
17}
18
19create function testdv2.fun02(){
20"function 02"
21}
22
23testdv1.fun01()