Skip to content
This repository was archived by the owner on Sep 27, 2019. It is now read-only.

Commit 2f9bb9d

Browse files
committed
Remove debugging log
1 parent 9061a48 commit 2f9bb9d

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/optimizer/plan_generator.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,6 @@ void PlanGenerator::Visit(const PhysicalInnerNLJoin *op) {
186186
expression::ExpressionUtil::JoinAnnotatedExprs(op->join_predicates);
187187
expression::ExpressionUtil::EvaluateExpression(children_expr_map_,
188188
join_predicate.get());
189-
if (join_predicate != nullptr) {
190-
LOG_DEBUG("NLJoin predicate : %s", join_predicate->GetInfo().c_str());
191-
}
192189
expression::ExpressionUtil::ConvertToTvExpr(join_predicate.get(),
193190
children_expr_map_);
194191

@@ -230,9 +227,6 @@ void PlanGenerator::Visit(const PhysicalInnerHashJoin *op) {
230227
expression::ExpressionUtil::JoinAnnotatedExprs(op->join_predicates);
231228
expression::ExpressionUtil::EvaluateExpression(children_expr_map_,
232229
join_predicate.get());
233-
if (join_predicate != nullptr) {
234-
LOG_DEBUG("Hash Join predicate : %s", join_predicate->GetInfo().c_str());
235-
}
236230
expression::ExpressionUtil::ConvertToTvExpr(join_predicate.get(),
237231
children_expr_map_);
238232

0 commit comments

Comments
 (0)