/* | |
* Description : Create functions and drop that function and query metadata | |
* : to verify entries in Function dataset for the dropped UDF. | |
* Expected Res : Success | |
* Date : Sep 17 2012 | |
*/ | |
// this test returns NPE today | |
drop dataverse test if exists; | |
create dataverse test; | |
write output to nc1:"rttest/meta13.adm"; | |
create function test.foo(){ | |
"drop this function" | |
} | |
drop function test.foo@0; | |
for $l in dataset('Metadata.Function') | |
return $l; | |