[inner-2144] fix:sql_log's view with conditional query error

This commit is contained in:
wenyh1
2023-03-15 11:31:14 +08:00
parent 9cc10e088b
commit c7f61c1a89

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;
}