Skip to content

Commit

Permalink
fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
xtcyclist committed Nov 17, 2022
1 parent 5339c2a commit 2a7c53e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graph/visitor/PrunePropertiesVisitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void PrunePropertiesVisitor::visitCurrent(Project *node) {
rootNode_ = false;
return;
}
DCHECK(columns.size(), colNames.size());
DCHECK_EQ(columns.size(), colNames.size());
for (auto i = 0u; i < columns.size() && i < colNames.size(); ++i) {
auto *col = DCHECK_NOTNULL(columns[i]);
auto *expr = col->expr();
Expand Down

0 comments on commit 2a7c53e

Please sign in to comment.