/* | |
* Description : Create user defined funs. in two different dataverses | |
* : and invoke one of them. | |
* : In this test we use fully qualified names to access and create the UDFs. | |
* Expected Res : Success | |
* Date : 31st Aug 2012 | |
*/ | |
drop dataverse testdv1 if exists; | |
drop dataverse testdv2 if exists; | |
create dataverse testdv1; | |
create dataverse testdv2; | |
write output to nc1:"rttest/cross-dataverse_cross-dv09.adm"; | |
create function testdv1.fun01(){ | |
"function 01" | |
} | |
create function testdv2.fun02(){ | |
"function 02" | |
} | |
testdv1.fun01() |