Skip to content

Commit

Permalink
[BugFix] Fix BE crash on bitmap index filter (StarRocks#29938)
Browse files Browse the repository at this point in the history
StarRocks#26246 adds tablet_schema in SegmentReadOptions and tablet_schema is not set when creating cloud native table segment iterator.

Signed-off-by: wyb <wybb86@gmail.com>
  • Loading branch information
wyb authored Aug 25, 2023
1 parent efa30ed commit c23dcf7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions be/src/storage/lake/rowset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ StatusOr<std::vector<ChunkIteratorPtr>> Rowset::read(const Schema& schema, const
seg_options.global_dictmaps = options.global_dictmaps;
seg_options.unused_output_column_ids = options.unused_output_column_ids;
seg_options.runtime_range_pruner = options.runtime_range_pruner;
seg_options.tablet_schema = options.tablet_schema;
seg_options.fill_data_cache = options.fill_data_cache;
if (options.is_primary_keys) {
seg_options.is_primary_keys = true;
Expand Down

0 comments on commit c23dcf7

Please sign in to comment.