Skip to content

Commit

Permalink
r
Browse files Browse the repository at this point in the history
  • Loading branch information
mymeiyi committed Sep 30, 2024
1 parent 274fa59 commit c466bbc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion be/src/vec/exec/scan/new_olap_scanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,9 @@ Status NewOlapScanner::_init_tablet_reader_params(
!(_state->skip_delete_bitmap() || _state->query_mow_in_mor())) {
_tablet_reader_params.delete_bitmap = &tablet->tablet_meta()->delete_bitmap();
}
_tablet_reader_params.query_mow_in_mor = _state->query_mow_in_mor();
if (tablet->enable_unique_key_merge_on_write()) {
_tablet_reader_params.query_mow_in_mor = _state->query_mow_in_mor();
}
/*LOG(INFO) << "sout: skip merge=" << _state->skip_storage_engine_merge()
<< ", query_id=" << print_id(_state->query_id())
<< ", tablet_id=" << tablet->tablet_id() << ", tablet=" << tablet;*/
Expand Down

0 comments on commit c466bbc

Please sign in to comment.