fix: update + filter meta db.

This commit is contained in:
csunny 2023-07-24 19:25:13 +08:00
parent 632aee3149
commit 51df0ee022

View File

@ -345,7 +345,7 @@ class Database:
return [
d[0]
for d in results
if d[0] not in ["information_schema", "performance_schema", "sys", "mysql"]
if d[0] not in ["information_schema", "performance_schema", "sys", "mysql", "knowledge_management"]
]
def convert_sql_write_to_select(self, write_sql):