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

(cherry picked from commit c7f61c1a89)
This commit is contained in:
wenyh1
2023-03-15 11:31:14 +08:00
parent ec12585893
commit c1bb1238d2

View File

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