assertEquals(partMarkEvent.getTable().getTableName(), "tmptbl");
driver.run(String.format("alter table %s drop partition (b='2011')", tblName));
listSize++;
assertEquals(notifyList.size(), listSize);
DropPartitionEvent dropPart = (DropPartitionEvent)notifyList.get(listSize - 1);
assert dropPart.getStatus();
assertEquals(part.getValues(), dropPart.getPartition().getValues());
assertEquals(part.getDbName(), dropPart.getPartition().getDbName());
assertEquals(part.getTableName(), dropPart.getPartition().getTableName());
driver.run("drop table " + tblName);
listSize++;
assertEquals(notifyList.size(), listSize);
DropTableEvent dropTbl = (DropTableEvent)notifyList.get(listSize-1);