Merge pull request #3632 from actiontech/inner-2144

[inner-2144] fix:sql_log's view with conditional query error
This commit is contained in:
wenyh
2023-03-21 13:15:04 +08:00
committed by GitHub

View File

@@ -239,7 +239,7 @@ public class MySQLPlanNodeVisitor {
ManagerBaseView view = ManagerSchemaInfo.getInstance().getView(tableName);
if (view != null) {
this.tableNode = view.getViewNode();
this.tableNode = view.getViewNode().copy();
return true;
}