diff --git a/src/query/sql/src/planner/binder/bind_query/bind.rs b/src/query/sql/src/planner/binder/bind_query/bind.rs index 5b8cf9f82580a..62ac440ffb9a4 100644 --- a/src/query/sql/src/planner/binder/bind_query/bind.rs +++ b/src/query/sql/src/planner/binder/bind_query/bind.rs @@ -208,6 +208,9 @@ impl Binder { } else { return Err(ErrorCode::Internal("Binder's Subquery executor is not set")); }; + + // Todo: clear the table with the same name in table cache + Ok(()) } }