Skip to content

Commit

Permalink
fix: do not close in ExplainPhysicalOperator
Browse files Browse the repository at this point in the history
  • Loading branch information
stevelee477 committed Oct 20, 2023
1 parent e1019fa commit 869b145
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/observer/sql/operator/explain_physical_operator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ RC ExplainPhysicalOperator::open(Trx *)

RC ExplainPhysicalOperator::close()
{
for (std::unique_ptr<PhysicalOperator> &child_oper : children_) {
child_oper->close();
}
return RC::SUCCESS;
}

Expand Down

0 comments on commit 869b145

Please sign in to comment.