/**
* @return True if protect mode attribute of the partition indicate
* that it is OK to drop the table
*/
public boolean canDrop() {
ProtectMode mode = getProtectMode();
ProtectMode parentMode = table.getProtectMode();
return (!mode.noDrop && !mode.offline && !mode.readOnly && !parentMode.noDropCascade);
}