mirror of https://github.com/apache/activemq.git
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@698800 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c6e0a61d73
commit
ddd2fa687b
|
@ -94,7 +94,8 @@ public class Statements {
|
||||||
public String[] getDropSchemaStatements() {
|
public String[] getDropSchemaStatements() {
|
||||||
if (dropSchemaStatements == null) {
|
if (dropSchemaStatements == null) {
|
||||||
dropSchemaStatements = new String[] {"DROP TABLE " + getFullAckTableName() + "",
|
dropSchemaStatements = new String[] {"DROP TABLE " + getFullAckTableName() + "",
|
||||||
"DROP TABLE " + getFullMessageTableName() + ""};
|
"DROP TABLE " + getFullMessageTableName() + "",
|
||||||
|
"DROP TABLE " + getFullLockTableName() + ""};
|
||||||
}
|
}
|
||||||
return dropSchemaStatements;
|
return dropSchemaStatements;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue