fix:ignore knowledge_management databases

This commit is contained in:
aries_ckt 2023-07-13 16:39:02 +08:00
parent 6404bfe63a
commit 4e33e6ec2e

View File

@ -344,7 +344,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):