blob: 62d09649cc857f74530181c5d54781e65cd61795 [file] [log] [blame]
RamanGrover29@gmail.com58cf3302012-11-09 00:27:45 +00001/*
2 * Description : Create functions and drop that function and query metadata
3 * : to verify entries in Function dataset for the dropped UDF.
4 * Expected Res : Success
5 * Date : Sep 17 2012
6 */
7
8// this test returns NPE today
9
10drop dataverse test if exists;
11create dataverse test;
12
13write output to nc1:"rttest/meta13.adm";
14
15create function test.foo(){
16"drop this function"
17}
18
19drop function test.foo@0;
20
21for $l in dataset('Metadata.Function')
22return $l;
23