Commit 1762e363 authored by 黎博's avatar 黎博

数据库列表里去掉myusql库

parent 216e2f89
......@@ -586,7 +586,7 @@ public class DatabaseSyncServiceImpl implements DatabaseSyncService {
ResultSet dbListResultSet = preparedStatement.executeQuery();
while (dbListResultSet.next()) {
String database = dbListResultSet.getString(1);
if (!database.equals("information_schema") && !database.equals("sys")) {
if (!database.equals("information_schema") && !database.equals("sys") && !database.equals("mysql")) {
databaseList.add(database);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment