Coverage Report

Created: 2026-09-18 19:52

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/storage/segment/segment_iterator.h
Line
Count
Source
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
18
#pragma once
19
20
#include <gen_cpp/Exprs_types.h>
21
22
#include <cstddef>
23
#include <cstdint>
24
#include <map>
25
#include <memory>
26
#include <roaring/roaring.hh>
27
#include <set>
28
#include <string>
29
#include <unordered_map>
30
#include <utility>
31
#include <vector>
32
33
#include "common/status.h"
34
#include "core/block/adaptive_block_size_predictor.h"
35
#include "core/block/block.h"
36
#include "core/block/column_with_type_and_name.h"
37
#include "core/block/columns_with_type_and_name.h"
38
#include "core/column/column.h"
39
#include "core/data_type/data_type.h"
40
#include "core/data_type/primitive_type.h"
41
#include "core/field.h"
42
#include "exec/common/variant_util.h"
43
#include "exprs/score_runtime.h"
44
#include "exprs/vexpr_fwd.h"
45
#include "io/fs/file_reader_writer_fwd.h"
46
#include "runtime/runtime_profile.h"
47
#include "storage/index/ann/ann_topn_runtime.h"
48
#include "storage/index/index_iterator.h"
49
#include "storage/iterators.h"
50
#include "storage/olap_common.h"
51
#include "storage/predicate/block_column_predicate.h"
52
#include "storage/predicate/column_predicate.h"
53
#include "storage/row_cursor.h"
54
#include "storage/schema.h"
55
#include "storage/segment/common.h"
56
#include "storage/segment/segment.h"
57
#include "util/json/path_in_data.h"
58
#include "util/slice.h"
59
60
namespace doris {
61
62
class VExpr;
63
class VExprContext;
64
struct RowLocation;
65
66
namespace segment_v2 {
67
68
class ColumnIterator;
69
class RowRanges;
70
class IndexIterator;
71
72
class SegmentIterator : public RowwiseIterator {
73
public:
74
    // Within SegmentIterator, ColumnId means an ordinal in the read schema.
75
    // Storage UIDs and caller-visible Block positions are named explicitly.
76
    SegmentIterator(std::shared_ptr<Segment> segment, ReadSchemaSPtr schema);
77
    ~SegmentIterator() override;
78
79
    [[nodiscard]] Status init_iterators();
80
    [[nodiscard]] Status init(const StorageReadOptions& opts) override;
81
    [[nodiscard]] Status next_batch(Block* block) override;
82
83
    // Get current block row locations. This function should be called
84
    // after the `next_batch` function.
85
    // Only vectorized version is supported.
86
    [[nodiscard]] Status current_block_row_locations(
87
            std::vector<RowLocation>* block_row_locations) override;
88
89
269
    const ReadSchema& schema() const override { return *_schema; }
90
17
    uint64_t data_id() const override { return _segment->id(); }
91
92
0
    void update_profile(RuntimeProfile* profile) override {
93
0
        _update_profile(profile, _short_cir_eval_predicate, "ShortCircuitPredicates");
94
0
        _update_profile(profile, _pre_eval_block_predicate, "PreEvaluatePredicates");
95
96
0
        if (_opts.delete_condition_predicates != nullptr) {
97
0
            std::set<std::shared_ptr<const ColumnPredicate>> delete_predicate_set;
98
0
            _opts.delete_condition_predicates->get_all_column_predicate(delete_predicate_set);
99
0
            _update_profile(profile, delete_predicate_set, "DeleteConditionPredicates");
100
0
        }
101
0
    }
102
103
217
    bool has_index_in_iterators() const {
104
217
        return std::any_of(_index_iterators.begin(), _index_iterators.end(),
105
400
                           [](const auto& iterator) { return iterator != nullptr; });
106
217
    }
107
108
private:
109
    Status _next_batch_internal(Block* block);
110
111
    Status _check_output_block(Block* block);
112
113
    template <typename Container>
114
    void _update_profile(RuntimeProfile* profile, const Container& predicates,
115
0
                         const std::string& title) {
116
0
        if (predicates.empty()) {
117
0
            return;
118
0
        }
119
0
        std::string info;
120
0
        for (auto pred : predicates) {
121
0
            info += "\n" + pred->debug_string();
122
0
        }
123
0
        profile->add_info_string(title, info);
124
0
    }
Unexecuted instantiation: _ZN5doris10segment_v215SegmentIterator15_update_profileISt6vectorISt10shared_ptrINS_15ColumnPredicateEESaIS6_EEEEvPNS_14RuntimeProfileERKT_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
Unexecuted instantiation: _ZN5doris10segment_v215SegmentIterator15_update_profileISt3setISt10shared_ptrIKNS_15ColumnPredicateEESt4lessIS7_ESaIS7_EEEEvPNS_14RuntimeProfileERKT_RKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
125
126
    [[nodiscard]] Status _lazy_init(Block* block);
127
    [[nodiscard]] Status _init_impl(const StorageReadOptions& opts);
128
    [[nodiscard]] Status _init_column_iterators();
129
    [[nodiscard]] Status _init_index_iterators();
130
131
    // calculate row ranges that fall into requested key ranges using short key index
132
    [[nodiscard]] Status _get_row_ranges_by_keys();
133
    [[nodiscard]] Status _prepare_seek(const StorageReadOptions::KeyRange& key_range);
134
    [[nodiscard]] Status _lookup_ordinal(const RowCursor& key, bool is_include, rowid_t upper_bound,
135
                                         rowid_t* rowid);
136
    // lookup the ordinal of given key from short key index
137
    // the returned rowid is rowid in primary index, not the rowid encoded in primary key
138
    [[nodiscard]] Status _lookup_ordinal_from_sk_index(const RowCursor& key, bool is_include,
139
                                                       rowid_t upper_bound, rowid_t* rowid);
140
    // lookup the ordinal of given key from primary key index
141
    [[nodiscard]] Status _lookup_ordinal_from_pk_index(const RowCursor& key, bool is_include,
142
                                                       rowid_t* rowid);
143
    [[nodiscard]] Status _seek_and_peek(rowid_t rowid);
144
145
    // calculate row ranges that satisfy requested column conditions using various column index
146
    [[nodiscard]] Status _get_row_ranges_by_column_conditions();
147
    [[nodiscard]] Status _get_row_ranges_from_conditions(RowRanges* condition_row_ranges);
148
    [[nodiscard]] Status _apply_expr_zonemap_to_row_ranges(const VExprContextSPtrs& conjuncts,
149
                                                           rowid_t min_rowid,
150
                                                           RowRanges* row_ranges);
151
    [[nodiscard]] Status _apply_inverted_index();
152
    [[nodiscard]] Status _apply_inverted_index_on_column_predicate(
153
            std::shared_ptr<ColumnPredicate> pred,
154
            std::vector<std::shared_ptr<ColumnPredicate>>& remaining_predicates,
155
            bool* continue_apply);
156
    [[nodiscard]] Status _apply_ann_topn_predicate();
157
    [[nodiscard]] Status _apply_index_expr();
158
    // Publish _row_bitmap as IndexQueryContext::candidate_rows when it is
159
    // below the configured engage ratio; refreshed at conjunct boundaries as
160
    // earlier index conjuncts shrink the bitmap. No-op once engaged.
161
    void _refresh_candidate_pushdown();
162
    // G02: true iff answering the single pushed-down MATCH predicate by its
163
    // match COUNT alone is indistinguishable from the row-accurate bitmap for
164
    // this COUNT_ON_INDEX scan (no deletes, no other filters, full row bitmap,
165
    // no row-id consumers). Gates IndexQueryContext::count_on_index_fastpath;
166
    // the decision predicate itself lives in count_on_index_fastpath.h.
167
    bool _count_on_index_fastpath_safe() const;
168
    // G03: teardown of the G02 handshake. Captures whether the reader answered
169
    // with a fabricated count bitmap into _count_fastpath_hit and clears both
170
    // context flags so no later read_from_index call can observe or forge
171
    // them. Runs on every exit of the index-apply scope.
172
    void _capture_count_fastpath_hit();
173
    // G03: true iff the per-batch defaults fill of _read_columns_by_index
174
    // would apply to `cid` (the _no_need_read_key_data or _prune_column
175
    // branch) AND the block column needs no storage->schema cast, i.e. the
176
    // emission shortcut can reproduce the column's batch content exactly.
177
    bool _column_emits_defaults_for_count(ColumnId cid);
178
    // G03: fills CountEmitShortcutFacts from live iterator state at the end of
179
    // _lazy_init and returns the pure-guard verdict; the decision predicate
180
    // itself lives in count_on_index_fastpath.h.
181
    bool _should_engage_count_emit_shortcut(const Block* block);
182
    // G03: one emission-shortcut batch: min(remaining, kCountEmitBatchRows)
183
    // default rows filled straight into the block (NOT-NULL defaults for
184
    // nullable columns, mirroring _prune_column), then EOF once the countdown
185
    // reaches zero. Replaces the whole per-rowid _next_batch_internal body for
186
    // engaged scans.
187
    Status _emit_count_shortcut_batch(Block* block);
188
189
    bool _column_has_fulltext_index(int32_t cid);
190
    bool _column_has_ann_index(int32_t cid);
191
    bool _downgrade_without_index(Status res, bool need_remaining = false);
192
    inline bool _inverted_index_not_support_pred_type(const PredicateType& type);
193
194
    void _init_column_states();
195
    void _rebuild_scan_predicate_states();
196
    void _mark_common_expr_states(const VExprSPtr& expr);
197
    Status _vec_init_lazy_materialization();
198
199
11.9k
    uint32_t segment_id() const { return _segment->id(); }
200
15.1k
    uint32_t num_rows() const { return _segment->num_rows(); }
201
202
    [[nodiscard]] Status _read_columns_by_index(const std::vector<ColumnId>& read_ordinals,
203
                                                uint32_t nrows_read_limit, uint16_t& nrows_read);
204
    void _replace_version_col_if_needed(const std::vector<ColumnId>& ordinals, size_t num_rows);
205
    void _update_tso_col_if_needed(const std::vector<ColumnId>& ordinals, size_t num_rows);
206
    Status _init_current_block(Block* block, std::vector<MutableColumnPtr>& non_pred_vector,
207
                               uint32_t nrows_read_limit);
208
    uint16_t _evaluate_vectorization_predicate(uint16_t* sel_rowid_idx, uint16_t selected_size);
209
    uint16_t _evaluate_short_circuit_predicate(uint16_t* sel_rowid_idx, uint16_t selected_size);
210
    Status _apply_read_limit_to_selected_rows(Block* block, uint16_t& selected_size);
211
    Status _output_columns_to_block(Block* block);
212
    [[nodiscard]] Status _read_columns_by_rowids(const std::vector<ColumnId>& read_ordinals,
213
                                                 std::vector<rowid_t>& rowid_vector,
214
                                                 uint16_t* sel_rowid_idx, size_t select_size,
215
                                                 MutableColumns* mutable_columns,
216
                                                 bool init_condition_cache = false,
217
                                                 bool read_for_predicate = false);
218
    [[nodiscard]] Status _read_lazy_pruned_columns(Block* block);
219
220
    Status copy_column_data_by_selector(IColumn* input_col_ptr, MutableColumnPtr& output_col,
221
                                        uint16_t* sel_rowid_idx, uint16_t select_size,
222
                                        size_t batch_size);
223
224
    template <class Container>
225
    [[nodiscard]] Status _output_column_by_sel_idx(Block* block, const Container& ordinals,
226
1.68k
                                                   uint16_t* sel_rowid_idx, uint16_t select_size) {
227
1.68k
        SCOPED_RAW_TIMER(&_opts.stats->output_col_ns);
228
1.68k
        for (auto ordinal : ordinals) {
229
1.68k
            if (ordinal >= _schema->num_block_columns()) {
230
510
                continue;
231
510
            }
232
1.17k
            const auto& file_column_type = _storage_name_and_type[ordinal].second;
233
1.17k
            if (!file_column_type->equals(*block->get_by_position(ordinal).type)) {
234
                // Do additional cast
235
0
                MutableColumnPtr tmp = file_column_type->create_column();
236
0
                RETURN_IF_ERROR(copy_column_data_by_selector(_current_columns[ordinal].get(), tmp,
237
0
                                                             sel_rowid_idx, select_size,
238
0
                                                             _opts.block_row_max));
239
0
                RETURN_IF_ERROR(variant_util::cast_column({tmp->get_ptr(), file_column_type, ""},
240
0
                                                          block->get_by_position(ordinal).type,
241
0
                                                          &block->get_by_position(ordinal).column));
242
1.17k
            } else {
243
1.17k
                MutableColumnPtr output_column =
244
1.17k
                        block->get_by_position(ordinal).column->assert_mutable();
245
1.17k
                RETURN_IF_ERROR(copy_column_data_by_selector(_current_columns[ordinal].get(),
246
1.17k
                                                             output_column, sel_rowid_idx,
247
1.17k
                                                             select_size, _opts.block_row_max));
248
1.17k
            }
249
1.17k
        }
250
1.68k
        return Status::OK();
251
1.68k
    }
252
253
    bool _can_evaluated_by_vectorized(std::shared_ptr<ColumnPredicate> predicate);
254
255
    [[nodiscard]] Status _execute_common_expr(uint16_t* sel_rowid_idx, uint16_t& selected_size,
256
                                              Block* block);
257
    Status _process_common_expr(uint16_t* sel_rowid_idx, uint16_t& selected_size, Block* block);
258
259
    uint16_t _evaluate_common_expr_filter(uint16_t* sel_rowid_idx, uint16_t selected_size,
260
                                          const IColumn::Filter& filter);
261
262
    // Dictionary column should do something to initial.
263
    void _convert_dict_code_for_predicate_if_necessary();
264
265
    void _convert_dict_code_for_predicate_if_necessary_impl(const ColumnPredicate& predicate);
266
267
    bool _check_apply_by_inverted_index(std::shared_ptr<ColumnPredicate> pred);
268
269
    void _output_index_result_column(const VExprContextSPtrs& expr_ctxs, uint16_t* sel_rowid_idx,
270
                                     uint16_t select_size);
271
272
    bool _need_read_data(ColumnId cid);
273
    bool _prune_column(ColumnId cid, MutableColumnPtr& column, size_t num_of_defaults);
274
275
    Status _construct_compound_expr_context();
276
277
    // Both the key cursor and _seek_block lay out the leading tablet key
278
    // columns densely, so position i addresses the same column in both.
279
45
    int _compare_short_key_with_seek_block(const RowCursor& key, size_t num_key_cols) {
280
57
        for (uint32_t i = 0; i < num_key_cols; ++i) {
281
45
            auto ord = key.field(i) <=> (*_seek_block[i])[0];
282
45
            if (ord != std::strong_ordering::equal) {
283
33
                return ord == std::strong_ordering::less ? -1 : 1;
284
33
            }
285
45
        }
286
12
        return 0;
287
45
    }
288
289
    Status _convert_column_to_expected_type(ColumnId column_id);
290
    Status _convert_to_expected_type(const std::vector<ColumnId>& ordinals);
291
292
    bool _no_need_read_key_data(ColumnId cid, MutableColumnPtr& column, size_t nrows_read);
293
    // Side-effect-free eligibility half of _no_need_read_key_data (no column
294
    // fill); shared by the per-batch fill and the G03 engage-time per-column
295
    // proof so the two can never drift.
296
    bool _no_need_read_key_data_eligible(ColumnId cid);
297
298
    bool _has_delete_pred(ColumnId cid) const;
299
    bool _has_lazy_pruned_children(ColumnId cid) const;
300
    bool _can_skip_reading_extra_column(ColumnId cid);
301
302
    bool _can_opt_limit_reads();
303
304
    void _initialize_predicate_results();
305
    bool _check_all_conditions_passed_inverted_index_for_column(ColumnId cid,
306
                                                                bool default_return = false);
307
308
    void _calculate_common_expr_index_exec_status();
309
310
    Status _process_eof(Block* block);
311
312
    void _fill_column_nothing();
313
314
    Status _process_columns(const std::vector<ColumnId>& ordinals, Block* block);
315
316
    // Initialize virtual columns in the block, set all virtual columns in the block to ColumnNothing
317
    void _init_virtual_columns(Block* block);
318
    // Fallback logic for virtual column materialization, materializing all unmaterialized virtual columns through expressions
319
    Status _materialization_of_virtual_column(Block* block);
320
    void _prepare_score_column_materialization();
321
322
    void _init_row_bitmap_by_condition_cache();
323
324
    void _init_segment_prefetchers();
325
326
    class BitmapRangeIterator;
327
    class BackwardBitmapRangeIterator;
328
329
    // Example:
330
    //   SELECT k, s.b, o FROM t
331
    //   WHERE k > 1 AND abs(k) < 10 AND abs(s.a) < 5;
332
    //   ReadSchema ordinals: [0:k, 1:s STRUCT<a,b>, 2:o]
333
    // When no filter is fully evaluated by an index:
334
    //   state[0:k] = {has_delete_pred=false, has_scan_pred=true,
335
    //                 has_common_expr=true, need_read_data=true}
336
    //   state[1:s] = {has_delete_pred=false, has_scan_pred=false,
337
    //                 has_common_expr=true, need_read_data=true}
338
    //   state[2:o] = {has_delete_pred=false, has_scan_pred=false,
339
    //                 has_common_expr=false, need_read_data=true}
340
    // A storage-only column appended for a delete condition would have
341
    // has_delete_pred=true.
342
    struct ColumnReadState {
343
        bool has_delete_pred = false;
344
        // Mirrors the mutable _col_predicates list: initially all safe scan
345
        // predicates, then only residual predicates after index evaluation.
346
        bool has_scan_pred = false;
347
        bool has_common_expr = false;
348
        // Index evaluation sets this to false when it fully supplies the column result.
349
        // _need_read_data() applies the remaining read constraints.
350
        bool need_read_data = true;
351
352
112k
        bool has_predicate() const { return has_delete_pred || has_scan_pred; }
353
    };
354
355
    std::shared_ptr<Segment> _segment;
356
    // read schema from scanner
357
    ReadSchemaSPtr _schema;
358
    // Inverted-index field name and storage/materialization type for each ReadSchema column.
359
    std::vector<IndexFieldNameAndTypePair> _storage_name_and_type;
360
    // vector idx -> column iterarator
361
    std::vector<std::unique_ptr<ColumnIterator>> _column_iterators;
362
    std::vector<std::unique_ptr<IndexIterator>> _index_iterators;
363
    // after init(), `_row_bitmap` contains all rowid to scan
364
    roaring::Roaring _row_bitmap;
365
    // an iterator for `_row_bitmap` that can be used to extract row range to scan
366
    std::unique_ptr<BitmapRangeIterator> _range_iter;
367
    // the next rowid to read
368
    rowid_t _cur_rowid;
369
    // members related to lazy materialization read
370
    // --------------------------------------------
371
    // remember the rowids we've read for the current row block.
372
    // could be a local variable of next_batch(), kept here to reuse vector memory
373
    std::vector<rowid_t> _block_rowids;
374
    bool _is_need_vec_eval = false;
375
    bool _is_need_short_eval = false;
376
    bool _is_need_expr_eval = false;
377
378
    bool _enable_prune_nested_column = false;
379
380
    // Per-column state indexed by read schema ordinal. Ordered column lists
381
    // below are execution plans rather than additional column membership sets.
382
    std::vector<ColumnReadState> _column_states;
383
    // Columns of the current batch, indexed by read schema ordinal.
384
    MutableColumns _current_columns;
385
    std::vector<std::shared_ptr<ColumnPredicate>> _pre_eval_block_predicate;
386
    std::vector<std::shared_ptr<ColumnPredicate>> _short_cir_eval_predicate;
387
    // Example:
388
    //   SELECT k, s.b, o FROM t
389
    //   WHERE k > 1 AND abs(k) < 10 AND abs(s.a) < 5;
390
    //   ReadSchema ordinals: [0:k, 1:s STRUCT<a,b>, 2:o]
391
    //
392
    // The first three lists assign each active column to its earliest materialization stage:
393
    //   _predicate_ordinals   = [0] // k is used by both k > 1 and abs(k) < 10; predicate wins.
394
    //   _common_expr_ordinals = [1] // s is read for the abs(s.a) < 5 expression.
395
    //   _output_ordinals      = [2] // o is needed only by output.
396
    std::vector<ColumnId> _predicate_ordinals;
397
    std::vector<ColumnId> _common_expr_ordinals;
398
    std::vector<ColumnId> _output_ordinals;
399
    //   _lazy_pruned_ordinals = [1] // After filtering on s.a, read s.b for surviving rows.
400
    // Unlike the first three disjoint lists, this recovery list may contain the same ordinal.
401
    std::vector<ColumnId> _lazy_pruned_ordinals;
402
403
    // the actual init process is delayed to the first call to next_batch()
404
    bool _lazy_inited;
405
    bool _inited;
406
407
    StorageReadOptions _opts;
408
    // Adaptive batch size predictor; null when the feature is disabled.
409
    std::unique_ptr<AdaptiveBlockSizePredictor> _block_size_predictor;
410
    // Build the AdaptiveBlockSizePredictor for this segment based on segment footer
411
    // metadata for the projected output columns. Returns nullptr if the feature is
412
    // disabled or the byte budget is non-positive.
413
    std::unique_ptr<AdaptiveBlockSizePredictor> _make_block_size_predictor() const;
414
    // Snapshot of _opts.block_row_max at init time; used as the hard upper bound so that
415
    // dynamic adjustments never exceed the capacity of pre-allocated buffers.
416
    uint32_t _initial_block_row_max = 0;
417
    // make a copy of `_opts.column_predicates` in order to make local changes
418
    std::vector<std::shared_ptr<ColumnPredicate>> _col_predicates;
419
    VExprContextSPtrs _common_expr_ctxs_push_down;
420
    // row schema of the key to seek
421
    // only used in `_get_row_ranges_by_keys`
422
    std::unique_ptr<ReadSchema> _seek_schema;
423
    // used to binary search the rowid for a given key
424
    // only used in `_get_row_ranges_by_keys`
425
    MutableColumns _seek_block;
426
    // Per-seek-schema-ordinal column iterators for the short-key seek path.
427
    // Points into _column_iterators when the key column is also read, otherwise
428
    // into _owned_seek_column_iterators (a seek key column may not be part of
429
    // the read schema at all).
430
    std::vector<ColumnIterator*> _seek_column_iterators;
431
    std::vector<std::unique_ptr<ColumnIterator>> _owned_seek_column_iterators;
432
433
    io::FileReaderSPtr _file_reader;
434
435
    // used for compaction, record selectd rowids of current batch
436
    uint16_t _selected_size;
437
    std::vector<uint16_t> _sel_rowid_idx;
438
439
    // Rows already produced by this iterator. Used together with
440
    // _opts.read_limit to compute the remaining per-batch budget.
441
    size_t _rows_returned = 0;
442
443
    int64_t _tablet_id = 0;
444
    // Column UIDs requested by the caller. A -1 entry means light schema change is disabled and
445
    // the column has no UID, so the _need_read_data() optimization is disabled.
446
    std::set<int32_t> _output_column_uids;
447
448
    std::vector<uint8_t> _ret_flags;
449
450
    /*
451
    * column and column_predicates on it.
452
    * a boolean value to indicate whether the column has been read by the index.
453
    */
454
    std::unordered_map<ColumnId, std::unordered_map<std::shared_ptr<ColumnPredicate>, bool>>
455
            _column_predicate_index_exec_status;
456
457
    /*
458
    * column and common expr on it.
459
    * a boolean value to indicate whether the column has been read by the index.
460
    */
461
    std::unordered_map<ColumnId, std::unordered_map<const VExpr*, bool>>
462
            _common_expr_index_exec_status;
463
464
    /*
465
    * common expr context to slotref map
466
    * slot ref map is used to get slot ref expr by using column id.
467
    */
468
    std::unordered_map<VExprContext*, std::unordered_map<ColumnId, VExpr*>>
469
            _common_expr_to_slotref_map;
470
471
    ScoreRuntimeSPtr _score_runtime;
472
473
    std::shared_ptr<segment_v2::AnnTopNRuntime> _ann_topn_runtime;
474
475
    // cid to virtual column expr
476
    std::map<ColumnId, VExprContextSPtr> _virtual_column_exprs;
477
478
    IndexQueryContextPtr _index_query_context;
479
480
    // G03 count-emission shortcut state (see count_on_index_fastpath.h).
481
    // _count_fastpath_hit: the reader answered the single MATCH predicate with
482
    // a fabricated count bitmap (captured from the G02 handshake reply).
483
    // _count_emit_shortcut: engaged at the end of _lazy_init when
484
    // count_emit_shortcut_safe holds; every subsequent batch is emitted by
485
    // _emit_count_shortcut_batch from _count_emit_rows_remaining (initialized
486
    // to the post-apply _row_bitmap cardinality) without touching the row
487
    // bitmap iterator.
488
    bool _count_fastpath_hit = false;
489
    bool _count_emit_shortcut = false;
490
    uint64_t _count_emit_rows_remaining = 0;
491
492
    // An indexed conjunct prefix emptied _row_bitmap, proving the WHOLE
493
    // pushed-down conjunction false. Set by the _apply_index_expr short
494
    // circuit when it consumes (clears) the remaining conjuncts, and read
495
    // where an empty conjunct list would otherwise zero the condition-cache
496
    // digest: the all-false result stays valid for the full conjunction, so
497
    // it must remain cacheable.
498
    bool _index_conjuncts_proved_empty = false;
499
    // Batch size for shortcut emission: VStatisticsIterator's
500
    // MAX_ROW_SIZE_IN_COUNT, the largest default-rows block shape already
501
    // proven through every consumer above the segment iterator by the plain
502
    // COUNT pushdown (rowset reader, collect iterator, block reader, scanner).
503
    static constexpr uint64_t kCountEmitBatchRows = 65535;
504
505
    // key is column uid, value is the sparse column cache
506
    std::unordered_map<int32_t, PathToBinaryColumnCacheUPtr> _variant_sparse_column_cache;
507
508
    bool _find_condition_cache = false;
509
    std::shared_ptr<std::vector<bool>> _condition_cache;
510
    static constexpr int CONDITION_CACHE_OFFSET = 2048;
511
};
512
513
} // namespace segment_v2
514
} // namespace doris