[chore](be) format reader parameter settings (#22964)

This commit is contained in:
Xiaocc
2023-11-18 00:11:46 +08:00
committed by GitHub
parent 4b6330cb93
commit 0aec436ef8
2 changed files with 1 additions and 1 deletions

View File

@ -255,6 +255,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();
}

View File

@ -131,7 +131,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) {