Remove PLUGIN table from export target

This commit is contained in:
Naoki Takezoe
2016-04-17 12:26:52 +09:00
parent c9de8dd323
commit 11700f4cb4

View File

@@ -125,7 +125,7 @@ object JDBCUtil {
val tableNames = new ListBuffer[String]
while (rs.next) {
val name = rs.getString("TABLE_NAME").toUpperCase
if (name != "VERSIONS") {
if (name != "VERSIONS" && name != "PLUGIN") {
tableNames += name
}
}