Skip to content

Commit

Permalink
add vectorized vjson_scanner and apply vexpr
Browse files Browse the repository at this point in the history
  • Loading branch information
hucheng01 committed May 7, 2022
1 parent 69529c1 commit e3df45f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions be/src/vec/exec/vjson_scanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,12 @@ Status VJsonScanner::get_next(vectorized::Block& output_block, bool* eof) {

// filter src tuple by preceding filter first
if (!_vpre_filter_ctxs.empty()) {
auto old_rows = output_block.rows();
for (auto _vpre_filter_ctx : _vpre_filter_ctxs) {
auto old_rows = output_block.rows();
RETURN_IF_ERROR(
VExprContext::filter_block(_vpre_filter_ctx, &output_block, slot_num));
_counter->num_rows_unselected += old_rows - output_block.rows();
}
_counter->num_rows_unselected += old_rows - output_block.rows();
}
}
}
Expand Down

0 comments on commit e3df45f

Please sign in to comment.