Skip to content

Commit

Permalink
[chore](be) format reader parameter settings #22964 (#26855)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiaoccer authored Dec 22, 2023
1 parent f28e2f6 commit 615a6e1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions be/src/olap/reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ Status TabletReader::_capture_rs_readers(const ReaderParams& read_params) {
_reader_context.remaining_conjunct_roots = read_params.remaining_conjunct_roots;
_reader_context.common_expr_ctxs_push_down = read_params.common_expr_ctxs_push_down;
_reader_context.output_columns = &read_params.output_columns;
_reader_context.push_down_agg_type_opt = read_params.push_down_agg_type_opt;

return Status::OK();
}
Expand Down
1 change: 0 additions & 1 deletion be/src/vec/olap/block_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ Status BlockReader::_init_collect_iter(const ReaderParams& read_params) {
_vcollect_iter.init(this, _is_rowsets_overlapping, read_params.read_orderby_key,
read_params.read_orderby_key_reverse);

_reader_context.push_down_agg_type_opt = read_params.push_down_agg_type_opt;
std::vector<RowsetReaderSharedPtr> valid_rs_readers;

for (int i = 0; i < read_params.rs_splits.size(); ++i) {
Expand Down

0 comments on commit 615a6e1

Please sign in to comment.