git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@698800 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2008-09-25 02:46:57 +00:00
parent c6e0a61d73
commit ddd2fa687b
1 changed files with 2 additions and 1 deletions

View File

@ -94,7 +94,8 @@ public class Statements {
public String[] getDropSchemaStatements() {
if (dropSchemaStatements == null) {
dropSchemaStatements = new String[] {"DROP TABLE " + getFullAckTableName() + "",
"DROP TABLE " + getFullMessageTableName() + ""};
"DROP TABLE " + getFullMessageTableName() + "",
"DROP TABLE " + getFullLockTableName() + ""};
}
return dropSchemaStatements;
}