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 10, 2022
1 parent c555b7d commit ea7c833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/vec/exec/vjson_scanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ Status VJsonScanner::get_next(vectorized::Block* output_block, bool* eof) {
// Read empty row, just continue
continue;
}
COUNTER_UPDATE(_rows_read_counter, 1);
}

COUNTER_UPDATE(_rows_read_counter, columns[0]->size());
SCOPED_TIMER(_materialize_timer);
RETURN_IF_ERROR(BaseScanner::fill_dest_block(output_block, columns));

Expand Down

0 comments on commit ea7c833

Please sign in to comment.