Coverage Report

Created: 2026-09-08 11:30

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/format_v2/table_reader.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 <bvar/status.h>
21
22
#include <algorithm>
23
#include <exception>
24
#include <map>
25
#include <memory>
26
#include <optional>
27
#include <string>
28
#include <string_view>
29
#include <utility>
30
#include <vector>
31
32
#include "common/cast_set.h"
33
#include "common/exception.h"
34
#include "common/logging.h"
35
#include "common/status.h"
36
#include "core/assert_cast.h"
37
#include "core/block/block.h"
38
#include "core/column/column_array.h"
39
#include "core/column/column_const.h"
40
#include "core/column/column_map.h"
41
#include "core/column/column_nullable.h"
42
#include "core/column/column_struct.h"
43
#include "core/column/column_vector.h"
44
#include "core/data_type/data_type.h"
45
#include "core/data_type/data_type_array.h"
46
#include "core/data_type/data_type_map.h"
47
#include "core/data_type/data_type_nullable.h"
48
#include "core/data_type/data_type_number.h"
49
#include "core/data_type/data_type_string.h"
50
#include "core/data_type/data_type_struct.h"
51
#include "core/field.h"
52
#include "exec/common/stringop_substring.h"
53
#include "exprs/vexpr.h"
54
#include "exprs/vexpr_context.h"
55
#include "exprs/vexpr_fwd.h"
56
#include "exprs/vslot_ref.h"
57
#include "format/table/deletion_vector.h"
58
#include "format_v2/column_data.h"
59
#include "format_v2/column_mapper.h"
60
#include "format_v2/expr/cast.h"
61
#include "format_v2/expr/delete_predicate.h"
62
#include "format_v2/file_reader.h"
63
#include "format_v2/parquet/reader/column_reader.h"
64
#include "format_v2/schema_projection.h"
65
#include "gen_cpp/PlanNodes_types.h"
66
#include "io/io_common.h"
67
#include "runtime/descriptors.h"
68
#include "storage/segment/condition_cache.h"
69
70
namespace doris {
71
class Block;
72
struct DeleteFileDesc;
73
class RuntimeState;
74
} // namespace doris
75
76
namespace doris::format {
77
78
using DeleteRows = std::vector<int64_t>;
79
80
// Row-level predicates on table/global schema. They are rewritten to file-local expressions when
81
// possible, and remain the source of row-level filtering after localization.
82
struct TableFilter {
83
    VExprContextSPtr conjunct;
84
    std::vector<GlobalIndex> global_indices;
85
    bool metadata_pruning_safe = true;
86
};
87
88
struct ScanTask {
89
413
    virtual ~ScanTask() = default;
90
91
    std::unique_ptr<io::FileDescription> data_file;
92
};
93
94
struct ProjectedColumnBuildContext {
95
    const TFileScanRangeParams* scan_params = nullptr;
96
    const TFileRangeDesc* range = nullptr;
97
    RuntimeState* runtime_state = nullptr;
98
    const SlotDescriptor* slot_desc = nullptr;
99
    std::optional<ColumnDefinition> schema_column = std::nullopt;
100
    size_t next_file_column_idx = 0;
101
};
102
103
struct ReadProfile {
104
    RuntimeProfile::Counter* total_timer = nullptr;
105
    RuntimeProfile::Counter* init_timer = nullptr;
106
    RuntimeProfile::Counter* num_delete_files = nullptr;
107
    RuntimeProfile::Counter* num_delete_rows = nullptr;
108
    RuntimeProfile::Counter* parse_delete_file_time = nullptr;
109
    RuntimeProfile::Counter* equality_delete_index_cache_hit_count = nullptr;
110
    RuntimeProfile::Counter* equality_delete_index_cache_miss_count = nullptr;
111
    RuntimeProfile::Counter* equality_delete_hash_index_memory = nullptr;
112
    RuntimeProfile::Counter* decoded_dv_cache_hit_count = nullptr;
113
    RuntimeProfile::Counter* decoded_dv_cache_miss_count = nullptr;
114
    RuntimeProfile::Counter* dv_file_cache_hit_count = nullptr;
115
    RuntimeProfile::Counter* dv_file_cache_miss_count = nullptr;
116
    RuntimeProfile::Counter* dv_file_cache_peer_read_count = nullptr;
117
    RuntimeProfile::Counter* exec_timer = nullptr;
118
    RuntimeProfile::Counter* prepare_split_timer = nullptr;
119
    RuntimeProfile::Counter* finalize_timer = nullptr;
120
    RuntimeProfile::Counter* create_reader_timer = nullptr;
121
    RuntimeProfile::Counter* pushdown_agg_timer = nullptr;
122
    RuntimeProfile::Counter* open_reader_timer = nullptr;
123
    RuntimeProfile::Counter* refresh_conjuncts_timer = nullptr;
124
    RuntimeProfile::Counter* runtime_filter_partition_prune_timer = nullptr;
125
    RuntimeProfile::Counter* runtime_filter_partition_pruned_range_counter = nullptr;
126
    RuntimeProfile::Counter* close_timer = nullptr;
127
    RuntimeProfile::Counter* file_reader_total_timer = nullptr;
128
    RuntimeProfile::Counter* file_reader_init_timer = nullptr;
129
    RuntimeProfile::Counter* file_reader_schema_timer = nullptr;
130
    RuntimeProfile::Counter* file_reader_mapper_timer = nullptr;
131
    RuntimeProfile::Counter* file_reader_open_timer = nullptr;
132
    RuntimeProfile::Counter* file_reader_refresh_timer = nullptr;
133
    RuntimeProfile::Counter* file_reader_get_block_timer = nullptr;
134
    RuntimeProfile::Counter* file_reader_aggregate_timer = nullptr;
135
    RuntimeProfile::Counter* file_reader_close_timer = nullptr;
136
};
137
138
struct TableReadOptions {
139
    // Columns need to be read from file and output by table reader. They are all in table/global
140
    // schema semantics.
141
    const std::vector<ColumnDefinition> projected_columns;
142
    // All complex conjuncts from scan operator
143
    const VExprContextSPtrs conjuncts;
144
    // File format of the underlying data files, needed for reader initialization and reader-level
145
    // filter pushdown.
146
    const FileFormat format;
147
    TFileScanRangeParams* scan_params;
148
    std::shared_ptr<io::IOContext> io_ctx;
149
    RuntimeState* runtime_state;
150
    RuntimeProfile* scanner_profile;
151
    // File formats without complete self-describing metadata, such as CSV, Text, and JSON, need
152
    // the FE-planned physical file slots to build their file-local schema and deserialize values.
153
    const std::vector<SlotDescriptor*>* file_slot_descs = nullptr;
154
    // Push-down aggregate type.
155
    const TPushAggOp::type push_down_agg_type = TPushAggOp::type::NONE;
156
    // Table/global indices of explicit COUNT arguments. nullopt means an old FE did not send the
157
    // semantic argument field, while an explicit empty vector means COUNT(*)/COUNT(1). Keeping
158
    // those states separate prevents a rolling-upgrade plan from being reinterpreted by a new BE.
159
    const std::optional<std::vector<GlobalIndex>> push_down_count_columns = std::nullopt;
160
    // Initial digest of predicates available during scanner open. Scanner-driven splits override it
161
    // with SplitReadOptions::condition_cache_digest after collecting late-arrival runtime filters.
162
    // A zero digest disables condition cache.
163
    uint64_t condition_cache_digest = 0;
164
};
165
166
struct SplitReadOptions {
167
    // Split-level information for reader initialization, which may include file path, partition values, delete file info, etc. The content is table format specific and opaque to table reader base class; it's the responsibility of the concrete table reader implementation to parse necessary information for reader initialization and filter pushdown.
168
    std::map<std::string, Field> partition_values;
169
    // Latest scanner conjuncts rewritten to table/global column indices. Runtime filters may
170
    // arrive after TableReader::init(), so scanner-driven splits replace the initial snapshot.
171
    // nullopt preserves the initial snapshot for standalone TableReader callers.
172
    std::optional<VExprContextSPtrs> conjuncts = std::nullopt;
173
    // Independent clones used for partition pruning because evaluation prepares and opens them
174
    // against a synthetic partition block before the file reader opens its row-level conjuncts.
175
    VExprContextSPtrs partition_prune_conjuncts;
176
    // Table-level COUNT may emit one metadata-derived batch and resume on a later scheduler turn.
177
    // It is safe only after every runtime filter assigned to the scanner has arrived; otherwise a
178
    // filter could arrive after synthetic rows have already been returned and those rows cannot be
179
    // retracted. Standalone TableReader callers have no scanner runtime-filter lifecycle.
180
    bool all_runtime_filters_applied = true;
181
    // Digest for the exact scanner conjunct snapshot attached to this split. FileScannerV2 rebuilds
182
    // it after collecting late-arrival RFs, so different RF payloads cannot share a cache entry. A
183
    // zero value explicitly disables condition cache for this split.
184
    std::optional<uint64_t> condition_cache_digest;
185
    ShardedKVCache* cache = nullptr;
186
    TFileRangeDesc current_range;
187
    FileFormat current_split_format = FileFormat::PARQUET;
188
    std::optional<GlobalRowIdContext> global_rowid_context;
189
};
190
191
// Base class for table-level readers.
192
// This layer owns common table-level orchestration, such as split iteration, dynamic partition
193
// pruning, delete handling and conversion from file-local blocks to table-schema blocks. Concrete
194
// table-format readers only need to provide format-specific hooks for opening readers and parsing
195
// split metadata.
196
class TableReader {
197
public:
198
537
    virtual ~TableReader() = default;
199
200
    // Initialize common runtime options for the table reader. Subclasses may call this from their
201
    // own init(options); table-format schema and split metadata are provided later per split.
202
    virtual Status init(TableReadOptions&& options);
203
204
    // FileScannerV2 adjusts this before each get_block() using an adaptive bytes-per-row estimate.
205
    // Store it here as well as forwarding to the current reader so newly opened split readers start
206
    // with the latest predicted batch size.
207
766
    virtual void set_batch_size(size_t batch_size) {
208
766
        _batch_size = std::max<size_t>(1, batch_size);
209
766
        if (_data_reader.reader != nullptr) {
210
324
            _data_reader.reader->set_batch_size(_batch_size);
211
324
        }
212
766
    }
213
214
#ifdef BE_TEST
215
    size_t TEST_batch_size() const { return _batch_size; }
216
    void TEST_set_condition_cache_hit_count(int64_t hits) { _condition_cache_hit_count = hits; }
217
    bool TEST_current_data_file_is_immutable() const {
218
        DORIS_CHECK(_current_task != nullptr);
219
        DORIS_CHECK(_current_task->data_file != nullptr);
220
        DORIS_CHECK(_current_file_description.has_value());
221
        DORIS_CHECK(_current_task->data_file->is_immutable ==
222
                    _current_file_description->is_immutable);
223
        return _current_task->data_file->is_immutable;
224
    }
225
#endif
226
227
    // Prepare for reading a new split/task.
228
    // 1. Pass a new split/task to reader, which will be used in subsequent open_reader() to initialize the underlying file reader.
229
    // 2. Parse delete predicates from split/task information, which will be used for later dynamic filtering and delete handling.
230
    virtual Status prepare_split(const SplitReadOptions& options);
231
232
    // Refresh row-level predicates for an already prepared split. Physical readers that support
233
    // this operation decide the safe boundary at which the new immutable request becomes active.
234
    virtual Status refresh_conjuncts(VExprContextSPtrs conjuncts);
235
236
320
    virtual bool current_split_pruned() const { return _current_split_pruned; }
237
885
    virtual bool current_split_uses_metadata_count() const {
238
885
        return _current_split_uses_metadata_count;
239
885
    }
240
241
    // Discard the active split after the caller decides an error is ignorable, for example a
242
    // stale external-table file listing that returns NOT_FOUND. The next prepare_split() must start
243
    // with no concrete reader or split-local state left from the failed split.
244
1
    virtual Status abort_split() {
245
        // Ignored open failures still spend time closing partially initialized readers. Include
246
        // that recovery path in the common lifecycle profile so NOT_FOUND cannot become invisible.
247
1
        SCOPED_TIMER(_profile.total_timer);
248
1
        SCOPED_TIMER(_profile.close_timer);
249
1
        if (_data_reader.reader != nullptr) {
250
1
            RETURN_IF_ERROR(close_current_reader());
251
1
        } else {
252
0
            _current_task.reset();
253
0
            _current_file_description.reset();
254
0
        }
255
1
        _delete_rows = nullptr;
256
1
        _remaining_table_level_count = -1;
257
1
        _remaining_file_level_count = -1;
258
1
        _current_split_uses_metadata_count = false;
259
1
        _current_split_pruned = false;
260
1
        return Status::OK();
261
1
    }
262
263
    // Public entry point for reading a table-schema block. The base class opens the current reader,
264
    // advances across EOF, and closes exhausted readers. Subclasses provide protected hooks for
265
    // table-format-specific behavior.
266
773
    virtual Status get_block(Block* block, bool* eos) {
267
773
        SCOPED_TIMER(_profile.total_timer);
268
773
        SCOPED_TIMER(_profile.exec_timer);
269
773
        DORIS_CHECK(block->columns() == _projected_columns.size());
270
773
        block->clear_column_data(_projected_columns.size());
271
272
1.05k
        while (true) {
273
1.05k
            if (*eos) {
274
0
                return Status::OK();
275
0
            }
276
1.05k
            if (_io_ctx != nullptr && _io_ctx->should_stop) {
277
0
                *eos = true;
278
0
                return Status::OK();
279
0
            }
280
1.05k
            if (!_data_reader.reader) {
281
668
                if (_is_table_level_count_active()) {
282
6
                    RETURN_IF_ERROR(_read_table_level_count(block, eos));
283
6
                    return Status::OK();
284
6
                }
285
662
                if (_is_file_level_count_active()) {
286
4
                    RETURN_IF_ERROR(_read_file_level_count(block, eos));
287
4
                    return Status::OK();
288
4
                }
289
658
                RETURN_IF_ERROR(create_next_reader(eos));
290
655
                if (!_data_reader.reader) {
291
279
                    DCHECK(*eos);
292
279
                    return Status::OK();
293
279
                }
294
655
            }
295
296
            // Materialize a reduced row set for upper aggregate operators when aggregate
297
            // pushdown can be applied. This is not the final aggregate result: COUNT emits
298
            // `count` default rows for the upper COUNT(*), and MIN/MAX emits two rows containing
299
            // file-level min/max values for the upper MIN/MAX.
300
760
            if (!_aggregate_pushdown_tried) {
301
376
                SCOPED_TIMER(_profile.pushdown_agg_timer);
302
376
                bool pushed_down = false;
303
376
                const auto status = _try_materialize_aggregate_pushdown_rows(block, &pushed_down);
304
376
                if (!status.ok()) {
305
1
                    if (_io_ctx != nullptr && _io_ctx->should_stop &&
306
1
                        status.is<ErrorCode::END_OF_FILE>()) {
307
1
                        *eos = true;
308
1
                        return Status::OK();
309
1
                    }
310
0
                    return status;
311
1
                }
312
375
                if (pushed_down) {
313
11
                    return Status::OK();
314
11
                }
315
375
            }
316
317
748
            bool current_eof = false;
318
748
            _data_reader.block_template.clear_column_data(
319
748
                    cast_set<int64_t>(_data_reader.file_block_layout.size()));
320
748
            size_t current_rows = 0;
321
748
            {
322
748
                SCOPED_TIMER(_profile.file_reader_total_timer);
323
748
                SCOPED_TIMER(_profile.file_reader_get_block_timer);
324
748
                RETURN_IF_ERROR(_data_reader.reader->get_block(&_data_reader.block_template,
325
748
                                                               &current_rows, &current_eof));
326
748
            }
327
748
            const bool stopped_during_read = _io_ctx != nullptr && _io_ctx->should_stop;
328
748
            if (current_rows == 0) {
329
279
                if (current_eof) {
330
277
                    _current_reader_reached_eof = !stopped_during_read;
331
277
                    RETURN_IF_ERROR(close_current_reader());
332
277
                }
333
279
                continue;
334
279
            }
335
748
            DCHECK_EQ(_data_reader.block_template.columns(), _data_reader.file_block_layout.size())
336
0
                    << _data_reader.block_template.dump_structure();
337
469
#ifndef NDEBUG
338
469
            RETURN_IF_ERROR(_check_file_block_columns("after file reader get_block", current_rows));
339
469
#endif
340
469
            DORIS_CHECK(block->columns() == _data_reader.column_mapper->mappings().size());
341
469
            RETURN_IF_ERROR(finalize_chunk(block, current_rows));
342
466
#ifndef NDEBUG
343
466
            RETURN_IF_ERROR(
344
466
                    _check_table_block_columns("after finalize_chunk", block, current_rows));
345
466
#endif
346
466
            if (current_eof) {
347
22
                _current_reader_reached_eof = !stopped_during_read;
348
22
                RETURN_IF_ERROR(close_current_reader());
349
22
            }
350
466
            return Status::OK();
351
466
        }
352
773
    }
353
354
    // Close the table reader and the currently active file reader. Subclasses that hold additional
355
    // table-format resources should override this and call TableReader::close() first.
356
384
    virtual Status close() {
357
384
        SCOPED_TIMER(_profile.total_timer);
358
384
        SCOPED_TIMER(_profile.close_timer);
359
384
        if (_data_reader.reader) {
360
67
            RETURN_IF_ERROR(close_current_reader());
361
67
        }
362
384
        _current_task.reset();
363
384
        _current_file_description.reset();
364
384
        _remaining_table_level_count = -1;
365
384
        _remaining_file_level_count = -1;
366
384
        _current_split_uses_metadata_count = false;
367
384
        return Status::OK();
368
384
    }
369
370
440
    virtual int64_t condition_cache_hit_count() const { return _condition_cache_hit_count; }
371
372
    virtual std::string debug_string() const;
373
374
    virtual Status annotate_projected_column(const TFileScanSlotInfo& slot_info,
375
                                             ProjectedColumnBuildContext* context,
376
                                             ColumnDefinition* column) const;
377
378
216
    virtual Status validate_projected_columns(const ProjectedColumnBuildContext& context) const {
379
216
        (void)context;
380
216
        return Status::OK();
381
216
    }
382
383
protected:
384
    // TableReader keeps the active file description both in the scan task and separately for
385
    // creating the physical reader. Table-format readers must update both copies when their
386
    // snapshot protocol guarantees that a file path is never overwritten with different bytes.
387
    // This guarantee lets readers safely build cache keys without mtime; it must not be used for
388
    // ordinary Hive/TVF files whose paths may be overwritten in place.
389
97
    void mark_current_data_file_immutable() {
390
97
        DORIS_CHECK(_current_task != nullptr);
391
97
        DORIS_CHECK(_current_task->data_file != nullptr);
392
97
        DORIS_CHECK(_current_file_description.has_value());
393
97
        _current_task->data_file->is_immutable = true;
394
97
        _current_file_description->is_immutable = true;
395
97
    }
396
397
    std::optional<ColumnDefinition> _find_table_column_by_field_id(
398
            int32_t field_id, DataTypePtr type, bool include_historical_schemas) const;
399
    std::optional<std::vector<ColumnDefinition>> _find_table_column_path_by_field_id(
400
            int32_t field_id, DataTypePtr leaf_type, bool include_historical_schemas) const;
401
    std::optional<std::vector<ColumnDefinition>> _find_table_column_identity_path_by_field_id(
402
            int32_t field_id, bool include_historical_schemas) const;
403
404
    // Parse deletion vector information from table format specific file description.
405
    virtual Status _parse_deletion_vector_file(const TTableFormatFileDesc& t_desc,
406
319
                                               DeleteFileDesc* desc, bool* has_delete_file) {
407
319
        *has_delete_file = false;
408
319
        return Status::OK();
409
319
    }
410
411
    // Advance to the next reader. This closes the current reader first and then opens the next
412
    // concrete reader. Subclasses should not duplicate this loop.
413
    Status create_next_reader(bool* eos);
414
    virtual Status create_file_reader(std::unique_ptr<FileReader>* reader);
415
298
    virtual TableColumnMappingMode mapping_mode() const { return TableColumnMappingMode::BY_NAME; }
416
299
    virtual void configure_mapper_options(TableColumnMapperOptions*) const {}
417
375
    virtual Status annotate_file_schema(std::vector<ColumnDefinition>* file_schema) {
418
375
        DORIS_CHECK(file_schema != nullptr);
419
375
        return Status::OK();
420
375
    }
421
304
    virtual Status validate_file_mapping(const TableColumnMapper&) const { return Status::OK(); }
422
423
    // Open the concrete reader for the current split/task and build the file-local scan request.
424
379
    virtual Status open_reader() {
425
379
        SCOPED_TIMER(_profile.open_reader_timer);
426
        // 1. Get file schema and create column mapping.
427
379
        std::vector<ColumnDefinition> file_schema;
428
379
        {
429
379
            SCOPED_TIMER(_profile.file_reader_total_timer);
430
379
            SCOPED_TIMER(_profile.file_reader_schema_timer);
431
379
            RETURN_IF_ERROR(_data_reader.reader->get_schema(&file_schema));
432
379
        }
433
        // For Paimon/Hudi, FE can provide field ids through `history_schema_info`. Annotate the
434
        // file schema before column mapping when the table format maps columns by field id.
435
379
        RETURN_IF_ERROR(annotate_file_schema(&file_schema));
436
379
        _data_reader.file_schema = file_schema;
437
379
        _mapper_options.mode = mapping_mode();
438
379
        configure_mapper_options(&_mapper_options);
439
440
379
        {
441
379
            SCOPED_TIMER(_profile.file_reader_total_timer);
442
379
            SCOPED_TIMER(_profile.file_reader_mapper_timer);
443
379
            _data_reader.column_mapper = _data_reader.reader->create_column_mapper(_mapper_options);
444
379
        }
445
379
        DORIS_CHECK(_data_reader.column_mapper != nullptr);
446
379
        RETURN_IF_ERROR(_data_reader.column_mapper->create_mapping(_projected_columns,
447
379
                                                                   _partition_values, file_schema));
448
379
        DORIS_CHECK(_data_reader.column_mapper->mappings().size() == _projected_columns.size());
449
450
        // 2. Build table filters based on conjuncts and column predicates.
451
379
        RETURN_IF_ERROR(_build_table_filters_from_conjuncts());
452
453
        // 3. Create file scan request based on column mapping and table filters, then open file
454
        // reader with the request. File scan request carries row-level expression filters and
455
        // file-level pruning hints. Only expression filters decide returned rows.
456
379
        auto file_request = std::make_shared<FileScanRequest>();
457
379
        RETURN_IF_ERROR(_data_reader.column_mapper->create_scan_request(
458
379
                _table_filters, _projected_columns, file_request.get(), _runtime_state));
459
379
        _constant_pruning_safe_filter_count =
460
379
                std::min(_constant_pruning_safe_filter_count,
461
379
                         file_request->constant_pruning_safe_table_filter_count);
462
379
        bool constant_filter_pruned_split = false;
463
379
        RETURN_IF_ERROR(_evaluate_constant_filters(&constant_filter_pruned_split));
464
379
        if (constant_filter_pruned_split) {
465
1
            RETURN_IF_ERROR(close_current_reader());
466
1
            return Status::OK();
467
1
        }
468
378
        RETURN_IF_ERROR(validate_file_mapping(*_data_reader.column_mapper));
469
        // COUNT(*) has no semantic column argument, but Nereids retains a minimum-width scan slot
470
        // so the scan node still has an output tuple. Record only the current non-predicate file
471
        // columns before table-format hooks add row-position or equality-delete dependencies. This
472
        // marker is independent of aggregate eligibility: with position deletes, for example,
473
        // metadata COUNT must fall back to reading rows, but an arbitrary unsupported TIME_MILLIS
474
        // placeholder still must not be validated or decoded merely to carry the surviving count.
475
        // Pending runtime filters may later target this retained slot, so placeholder values are
476
        // safe only after every filter for the split has arrived.
477
377
        if (_push_down_agg_type == TPushAggOp::type::COUNT &&
478
377
            _push_down_count_columns.has_value() && _push_down_count_columns->empty() &&
479
377
            _all_runtime_filters_applied_for_split) {
480
11
            file_request->count_star_placeholder_columns.reserve(
481
11
                    file_request->non_predicate_columns.size());
482
11
            for (const auto& column : file_request->non_predicate_columns) {
483
8
                file_request->count_star_placeholder_columns.push_back(column.column_id());
484
8
            }
485
11
        }
486
377
        RETURN_IF_ERROR(customize_file_scan_request(file_request.get()));
487
376
        RETURN_IF_ERROR(_open_local_filter_exprs(*file_request));
488
376
        _data_reader.file_block_layout.clear();
489
376
        _data_reader.block_template.clear();
490
376
        _file_scan_request.reset();
491
376
        _data_reader.file_block_layout.resize(file_request->block_column_count());
492
493
        // 4. Build file block layout from file schema and column mapping. The layout describes
494
        // the block returned by file reader before table-column materialization.
495
376
        auto add_file_block_column = [&](const LocalColumnIndex& projection,
496
1.74k
                                         LocalIndex block_position) -> Status {
497
1.74k
            DORIS_CHECK(block_position.value() < _data_reader.file_block_layout.size());
498
1.74k
            const auto file_column_id = projection.column_id();
499
1.74k
            const auto* field = _find_column_definition(_data_reader.file_schema, file_column_id);
500
1.74k
            DORIS_CHECK(field != nullptr);
501
502
1.74k
            ColumnDefinition projected_field;
503
1.74k
            RETURN_IF_ERROR(project_column_definition(*field, projection, &projected_field));
504
1.74k
            _data_reader.file_block_layout[block_position.value()] = {
505
1.74k
                    .file_column_id = file_column_id,
506
1.74k
                    .name = projected_field.name,
507
1.74k
                    .type = projected_field.type,
508
1.74k
            };
509
1.74k
            DORIS_CHECK(_data_reader.file_block_layout[block_position.value()].type != nullptr);
510
1.74k
            return Status::OK();
511
1.74k
        };
512
376
        for (const auto& projection : file_request->predicate_columns) {
513
93
            RETURN_IF_ERROR(add_file_block_column(
514
93
                    projection, file_request->local_positions.at(projection.column_id())));
515
93
        }
516
1.64k
        for (const auto& projection : file_request->non_predicate_columns) {
517
1.64k
            RETURN_IF_ERROR(add_file_block_column(
518
1.64k
                    projection, file_request->non_predicate_position(projection.column_id())));
519
1.64k
        }
520
521
        // 5. Prepare block template from file block layout. The block template stores the block
522
        // returned by file reader before table-column materialization.
523
376
        _data_reader.block_template.reserve(_data_reader.file_block_layout.size());
524
1.74k
        for (const auto& column : _data_reader.file_block_layout) {
525
1.74k
            _data_reader.block_template.insert(
526
1.74k
                    {column.type->create_column(), column.type, column.name});
527
1.74k
        }
528
376
        if (VLOG_DEBUG_IS_ON) {
529
0
            VLOG_DEBUG << "TableReader debug: " << debug_string();
530
0
        }
531
376
        RETURN_IF_ERROR(_open_mapping_exprs());
532
376
        {
533
376
            SCOPED_TIMER(_profile.file_reader_total_timer);
534
376
            SCOPED_TIMER(_profile.file_reader_open_timer);
535
376
            RETURN_IF_ERROR(_data_reader.reader->open(file_request));
536
376
        }
537
376
        _file_scan_request = std::move(file_request);
538
376
        RETURN_IF_ERROR(_init_reader_condition_cache(*_file_scan_request));
539
376
        return Status::OK();
540
376
    }
541
542
    Status _build_table_filters_from_conjuncts();
543
    Status _evaluate_partition_prune_conjuncts(const VExprContextSPtrs& conjuncts,
544
                                               bool* can_filter_all);
545
    static bool _is_safe_to_pre_execute(const VExprContextSPtr& conjunct);
546
    Status _build_partition_prune_block(Block* block) const;
547
    Status _open_local_filter_exprs(const FileScanRequest& file_request);
548
    Status _init_reader_condition_cache(const FileScanRequest& file_request);
549
    void _finalize_reader_condition_cache();
550
    bool _should_enable_condition_cache(const FileScanRequest& file_request) const;
551
552
379
    Status _evaluate_constant_filters(bool* can_filter_all) {
553
379
        DORIS_CHECK(can_filter_all != nullptr);
554
379
        DORIS_CHECK_LE(_constant_pruning_safe_filter_count, _table_filters.size());
555
379
        *can_filter_all = false;
556
        // The bound was derived from the original `_conjuncts` order, which includes slotless
557
        // expressions omitted from `_table_filters`. Iterating only this prefix therefore cannot
558
        // skip an unsafe row-level predicate and pre-execute a later constant predicate.
559
419
        for (size_t i = 0; i < _constant_pruning_safe_filter_count; ++i) {
560
41
            const auto& table_filter = _table_filters[i];
561
41
            if (table_filter.conjunct == nullptr) {
562
0
                continue;
563
0
            }
564
41
            DORIS_CHECK(_is_safe_to_pre_execute(table_filter.conjunct));
565
            // RuntimeFilterExpr does not implement execute_column_impl(); it is evaluated by the
566
            // row-level filter path through execute_filter(). Constant split pruning uses
567
            // VExprContext::execute() on a one-row synthetic block, so runtime filters must not be
568
            // pre-executed here even when their referenced slot maps to a constant value.
569
41
            if (table_filter.conjunct->root()->is_rf_wrapper() ||
570
41
                !_table_filter_has_only_constant_entries(table_filter)) {
571
39
                continue;
572
39
            }
573
2
            Block eval_block;
574
2
            RETURN_IF_ERROR(_build_constant_filter_block(table_filter, &eval_block));
575
2
            RowDescriptor row_desc;
576
2
            RETURN_IF_ERROR(table_filter.conjunct->prepare(_runtime_state, row_desc));
577
2
            RETURN_IF_ERROR(table_filter.conjunct->open(_runtime_state));
578
2
            int result_column_id = -1;
579
2
            RETURN_IF_ERROR(table_filter.conjunct->execute(&eval_block, &result_column_id));
580
2
            DORIS_CHECK(result_column_id >= 0);
581
2
            if (_filter_result_filters_all(eval_block.get_by_position(result_column_id).column)) {
582
1
                *can_filter_all = true;
583
1
                return Status::OK();
584
1
            }
585
2
        }
586
378
        return Status::OK();
587
379
    }
588
589
36
    bool _table_filter_has_only_constant_entries(const TableFilter& table_filter) const {
590
36
        const auto& filter_entries = _data_reader.column_mapper->filter_entries();
591
36
        for (const auto global_index : table_filter.global_indices) {
592
36
            const auto entry_it = filter_entries.find(global_index);
593
36
            if (entry_it == filter_entries.end() || !entry_it->second.is_constant()) {
594
34
                return false;
595
34
            }
596
36
        }
597
2
        return !table_filter.global_indices.empty();
598
36
    }
599
600
2
    Status _build_constant_filter_block(const TableFilter& table_filter, Block* eval_block) {
601
2
        DORIS_CHECK(eval_block != nullptr);
602
2
        eval_block->clear();
603
2
        const auto& mappings = _data_reader.column_mapper->mappings();
604
2
        const auto& filter_entries = _data_reader.column_mapper->filter_entries();
605
2
        DORIS_CHECK(mappings.size() == _projected_columns.size());
606
4
        for (size_t column_idx = 0; column_idx < mappings.size(); ++column_idx) {
607
2
            const auto global_index = GlobalIndex(column_idx);
608
2
            const auto& mapping = mappings[column_idx];
609
2
            const auto entry_it = filter_entries.find(global_index);
610
2
            const bool referenced_by_filter =
611
2
                    std::find(table_filter.global_indices.begin(),
612
2
                              table_filter.global_indices.end(),
613
2
                              global_index) != table_filter.global_indices.end();
614
2
            if (referenced_by_filter && entry_it != filter_entries.end() &&
615
2
                entry_it->second.is_constant()) {
616
2
                ColumnPtr constant_column;
617
2
                RETURN_IF_ERROR(_materialize_constant_filter_column(
618
2
                        entry_it->second.constant_index(), &constant_column));
619
2
                eval_block->insert({std::move(constant_column), mapping.table_type,
620
2
                                    mapping.table_column_name});
621
2
            } else {
622
0
                eval_block->insert({mapping.table_type->create_column_const_with_default_value(1),
623
0
                                    mapping.table_type, mapping.table_column_name});
624
0
            }
625
2
        }
626
2
        return Status::OK();
627
2
    }
628
629
2
    Status _materialize_constant_filter_column(ConstantIndex constant_index, ColumnPtr* column) {
630
2
        DORIS_CHECK(column != nullptr);
631
2
        const auto& constant_entry = _data_reader.column_mapper->constant_map().get(constant_index);
632
2
        DORIS_CHECK(constant_entry.expr != nullptr);
633
2
        DORIS_CHECK(constant_entry.type != nullptr);
634
2
        RowDescriptor row_desc;
635
2
        RETURN_IF_ERROR(constant_entry.expr->prepare(_runtime_state, row_desc));
636
2
        RETURN_IF_ERROR(constant_entry.expr->open(_runtime_state));
637
2
        Block eval_block;
638
2
        eval_block.insert({constant_entry.type->create_column_const_with_default_value(1),
639
2
                           constant_entry.type, "__table_reader_constant_filter"});
640
2
        int result_column_id = -1;
641
2
        RETURN_IF_ERROR(constant_entry.expr->execute(&eval_block, &result_column_id));
642
2
        DORIS_CHECK(result_column_id >= 0);
643
2
        *column = eval_block.get_by_position(result_column_id).column;
644
2
        DORIS_CHECK((*column)->size() == 1);
645
2
        return Status::OK();
646
2
    }
647
648
2
    static bool _filter_result_filters_all(const ColumnPtr& filter_column) {
649
2
        DORIS_CHECK(filter_column.get() != nullptr);
650
2
        DORIS_CHECK(filter_column->size() == 1);
651
2
        return !filter_column->get_bool(0);
652
2
    }
653
654
385
    virtual Status customize_file_scan_request(FileScanRequest* file_request) {
655
385
        return _append_delete_predicate(file_request);
656
385
    }
657
658
1.17k
    bool _is_table_level_count_active() const { return _remaining_table_level_count >= 0; }
659
660
662
    bool _is_file_level_count_active() const { return _remaining_file_level_count >= 0; }
661
662
14
    Status _materialize_count_rows(size_t rows, Block* block) const {
663
14
        DORIS_CHECK(block != nullptr);
664
14
        DORIS_CHECK(block->columns() > 0 || rows == 0);
665
28
        for (size_t column_idx = 0; column_idx < block->columns(); ++column_idx) {
666
14
            auto column = block->get_by_position(column_idx).type->create_column();
667
14
            if (auto* nullable = check_and_get_column<ColumnNullable>(*column)) {
668
                // Metadata COUNT emits synthetic input rows for the unchanged upper aggregate.
669
                // They must be non-NULL for COUNT(nullable_col), and constructing them explicitly
670
                // also keeps every nullable null map boolean-valid in debug/ASAN block checks.
671
14
                nullable->get_nested_column().insert_many_defaults(rows);
672
14
                nullable->get_null_map_data().resize_fill(rows, 0);
673
14
            } else {
674
0
                column->insert_many_defaults(rows);
675
0
            }
676
14
            block->replace_by_position(column_idx, std::move(column));
677
14
        }
678
14
        return Status::OK();
679
14
    }
680
681
14
    Status _materialize_next_count_batch(int64_t* remaining_rows, Block* block) const {
682
14
        DORIS_CHECK(remaining_rows != nullptr);
683
14
        DORIS_CHECK(*remaining_rows > 0);
684
14
        const int64_t batch_size = _runtime_state == nullptr
685
14
                                           ? *remaining_rows
686
14
                                           : static_cast<int64_t>(_runtime_state->batch_size());
687
14
        const auto rows = std::min(*remaining_rows, batch_size);
688
14
        RETURN_IF_ERROR(_materialize_count_rows(cast_set<size_t>(rows), block));
689
14
        *remaining_rows -= rows;
690
14
        return Status::OK();
691
14
    }
692
693
10
    Status _read_count_batch(int64_t* remaining_rows, Block* block, bool* eos) {
694
10
        DORIS_CHECK(block != nullptr);
695
10
        DORIS_CHECK(eos != nullptr);
696
10
        DORIS_CHECK(_push_down_agg_type == TPushAggOp::type::COUNT);
697
10
        DORIS_CHECK(remaining_rows != nullptr);
698
10
        DORIS_CHECK(*remaining_rows >= 0);
699
10
        if (*remaining_rows == 0) {
700
4
            *remaining_rows = -1;
701
4
            _current_task.reset();
702
4
            *eos = true;
703
4
            return Status::OK();
704
4
        }
705
6
        RETURN_IF_ERROR(_materialize_next_count_batch(remaining_rows, block));
706
6
        *eos = false;
707
6
        return Status::OK();
708
6
    }
709
710
6
    Status _read_table_level_count(Block* block, bool* eos) {
711
6
        return _read_count_batch(&_remaining_table_level_count, block, eos);
712
6
    }
713
714
4
    Status _read_file_level_count(Block* block, bool* eos) {
715
4
        return _read_count_batch(&_remaining_file_level_count, block, eos);
716
4
    }
717
718
    void _append_file_scan_column(FileScanRequest* request, LocalColumnId column_id,
719
70
                                  std::vector<LocalColumnIndex>* scan_columns) {
720
70
        DORIS_CHECK(request != nullptr);
721
70
        DORIS_CHECK(scan_columns != nullptr);
722
70
        FileScanRequestBuilder builder(request);
723
70
        Status status;
724
70
        if (scan_columns == &request->predicate_columns) {
725
57
            status = builder.add_predicate_column(column_id);
726
57
        } else {
727
13
            DORIS_CHECK(scan_columns == &request->non_predicate_columns);
728
13
            status = builder.add_non_predicate_column(column_id);
729
13
        }
730
70
        DORIS_CHECK(status.ok()) << status.to_string();
731
70
        if (column_id == LocalColumnId(ROW_POSITION_COLUMN_ID) &&
732
70
            _find_column_definition(_data_reader.file_schema, column_id) == nullptr) {
733
41
            _data_reader.file_schema.push_back(row_position_column_definition());
734
41
        }
735
70
    }
736
737
    // Append DeletePredicate to file scan request if there are deletes. The predicate will be evaluated in file reader level and filter out deleted rows before returning data to table reader.
738
385
    Status _append_delete_predicate(FileScanRequest* request) {
739
385
        DORIS_CHECK(request != nullptr);
740
385
        if ((_delete_rows == nullptr || _delete_rows->empty()) &&
741
385
            (_deletion_vector == nullptr || _deletion_vector->isEmpty())) {
742
369
            return Status::OK();
743
369
        }
744
16
        const auto row_position_column_id = LocalColumnId(ROW_POSITION_COLUMN_ID);
745
16
        _append_file_scan_column(request, row_position_column_id, &request->predicate_columns);
746
747
16
        const auto block_position = request->local_positions.at(row_position_column_id);
748
16
        auto append_predicate = [&](auto& deleted_rows) {
749
16
            auto delete_predicate = std::make_shared<DeletePredicate>(deleted_rows);
750
16
            delete_predicate->add_child(VSlotRef::create_shared(
751
16
                    cast_set<int>(block_position.value()), cast_set<int>(block_position.value()),
752
16
                    -1, std::make_shared<DataTypeInt64>(), ROW_POSITION_COLUMN_NAME));
753
16
            request->delete_conjuncts.push_back(
754
16
                    VExprContext::create_shared(std::move(delete_predicate)));
755
16
        };
_ZZN5doris6format11TableReader24_append_delete_predicateEPNS0_15FileScanRequestEENKUlRT_E_clISt6vectorIlSaIlEEEEDaS5_
Line
Count
Source
748
12
        auto append_predicate = [&](auto& deleted_rows) {
749
12
            auto delete_predicate = std::make_shared<DeletePredicate>(deleted_rows);
750
12
            delete_predicate->add_child(VSlotRef::create_shared(
751
12
                    cast_set<int>(block_position.value()), cast_set<int>(block_position.value()),
752
12
                    -1, std::make_shared<DataTypeInt64>(), ROW_POSITION_COLUMN_NAME));
753
12
            request->delete_conjuncts.push_back(
754
12
                    VExprContext::create_shared(std::move(delete_predicate)));
755
12
        };
_ZZN5doris6format11TableReader24_append_delete_predicateEPNS0_15FileScanRequestEENKUlRT_E_clIN7roaring12Roaring64MapEEEDaS5_
Line
Count
Source
748
4
        auto append_predicate = [&](auto& deleted_rows) {
749
4
            auto delete_predicate = std::make_shared<DeletePredicate>(deleted_rows);
750
4
            delete_predicate->add_child(VSlotRef::create_shared(
751
4
                    cast_set<int>(block_position.value()), cast_set<int>(block_position.value()),
752
4
                    -1, std::make_shared<DataTypeInt64>(), ROW_POSITION_COLUMN_NAME));
753
4
            request->delete_conjuncts.push_back(
754
4
                    VExprContext::create_shared(std::move(delete_predicate)));
755
4
        };
756
16
        if (_delete_rows != nullptr && !_delete_rows->empty()) {
757
12
            append_predicate(*_delete_rows);
758
12
        }
759
16
        if (_deletion_vector != nullptr && !_deletion_vector->isEmpty()) {
760
4
            append_predicate(*_deletion_vector);
761
4
        }
762
16
        return Status::OK();
763
385
    }
764
765
    // Close the current concrete reader. This hook is called by both create_next_reader() and
766
    // close(), so it should remain idempotent.
767
379
    virtual Status close_current_reader() {
768
379
        _finalize_reader_condition_cache();
769
379
        {
770
379
            SCOPED_TIMER(_profile.file_reader_total_timer);
771
379
            SCOPED_TIMER(_profile.file_reader_close_timer);
772
379
            RETURN_IF_ERROR(_data_reader.reader->close());
773
379
        }
774
379
        _data_reader.reader.reset();
775
379
        if (_data_reader.column_mapper != nullptr) {
776
378
            _data_reader.column_mapper->clear();
777
378
            _data_reader.column_mapper.reset();
778
378
        }
779
379
        _table_filters.clear();
780
379
        _constant_pruning_safe_filter_count = 0;
781
379
        _data_reader.file_schema.clear();
782
379
        _data_reader.file_block_layout.clear();
783
379
        _data_reader.block_template.clear();
784
379
        _file_scan_request.reset();
785
379
        _current_task.reset();
786
379
        _current_file_description.reset();
787
379
        _current_reader_reached_eof = false;
788
379
        return Status::OK();
789
379
    }
790
791
2
    void _record_scan_rows(size_t rows) {
792
2
        if (_io_ctx != nullptr && _io_ctx->file_reader_stats != nullptr) {
793
2
            _io_ctx->file_reader_stats->read_rows += rows;
794
2
        }
795
2
    }
796
797
    // Finalize file-local block to table/global schema block.
798
469
    Status finalize_chunk(Block* block, const size_t rows) {
799
469
        SCOPED_TIMER(_profile.finalize_timer);
800
469
        size_t idx = 0;
801
469
        const auto& mappings = _data_reader.column_mapper->mappings();
802
3.39k
        for (const auto& mapping : mappings) {
803
3.39k
            ColumnPtr column;
804
3.39k
            RETURN_IF_ERROR(_materialize_mapping_column(mapping, &_data_reader.block_template, rows,
805
3.39k
                                                        &column, idx + 1 == mappings.size()));
806
3.39k
            block->replace_by_position(idx, IColumn::mutate(std::move(column)));
807
3.39k
            idx++;
808
3.39k
        }
809
466
        RETURN_IF_ERROR(materialize_virtual_columns(block));
810
        // Enforce CHAR/VARCHAR length declared by the table schema after all file-to-table
811
        // materialization has finished.
812
466
        RETURN_IF_ERROR(_truncate_char_or_varchar_columns(block));
813
466
        return Status::OK();
814
466
    }
815
816
    // Materialize virtual columns in the table block, such as Iceberg _row_id and
817
    // _last_updated_sequence_number. This runs after normal column materialization so finalize
818
    // expressions can reference those virtual columns.
819
403
    virtual Status materialize_virtual_columns(Block* table_block) { return Status::OK(); }
820
821
#ifndef NDEBUG
822
469
    Status _check_file_block_columns(std::string_view stage, size_t rows) {
823
469
        DORIS_CHECK(_data_reader.block_template.columns() == _data_reader.file_block_layout.size());
824
3.87k
        for (size_t idx = 0; idx < _data_reader.block_template.columns(); ++idx) {
825
3.40k
            const auto& file_block_column = _data_reader.file_block_layout[idx];
826
3.40k
            const auto& column_with_type = _data_reader.block_template.get_by_position(idx);
827
3.40k
            const auto* column = column_with_type.column.get();
828
3.40k
            try {
829
3.40k
                if (column == nullptr) {
830
0
                    auto st = Status::InternalError(
831
0
                            "Invalid file block column {} at {}: file_column_id={}, name='{}', "
832
0
                            "type={}, column=null, expected_rows={}, reader={}",
833
0
                            idx, stage, file_block_column.file_column_id.value(),
834
0
                            file_block_column.name,
835
0
                            file_block_column.type == nullptr ? "null"
836
0
                                                              : file_block_column.type->get_name(),
837
0
                            rows, debug_string());
838
0
                    LOG(WARNING) << st;
839
0
                    return st;
840
0
                }
841
3.40k
                column->sanity_check();
842
3.40k
                auto st = column_with_type.check_type_and_column_match();
843
3.40k
                if (!st.ok()) {
844
0
                    auto contextual_status = Status::InternalError(
845
0
                            "Invalid file block column {} at {}: file_column_id={}, name='{}', "
846
0
                            "type={}, column={}, column_size={}, expected_rows={}, error={}, "
847
0
                            "reader={}",
848
0
                            idx, stage, file_block_column.file_column_id.value(),
849
0
                            file_block_column.name,
850
0
                            file_block_column.type == nullptr ? "null"
851
0
                                                              : file_block_column.type->get_name(),
852
0
                            column->get_name(), column->size(), rows, st.to_string(),
853
0
                            debug_string());
854
0
                    LOG(WARNING) << contextual_status;
855
0
                    return contextual_status;
856
0
                }
857
3.40k
            } catch (const Exception& e) {
858
0
                auto st = Status::InternalError(
859
0
                        "Invalid file block column {} at {}: file_column_id={}, name='{}', "
860
0
                        "type={}, column={}, column_size={}, expected_rows={}, error={}, "
861
0
                        "reader={}",
862
0
                        idx, stage, file_block_column.file_column_id.value(),
863
0
                        file_block_column.name,
864
0
                        file_block_column.type == nullptr ? "null"
865
0
                                                          : file_block_column.type->get_name(),
866
0
                        column == nullptr ? "null" : column->get_name(),
867
0
                        column == nullptr ? 0 : column->size(), rows, e.to_string(),
868
0
                        debug_string());
869
0
                LOG(WARNING) << st;
870
0
                return st;
871
0
            } catch (const std::exception& e) {
872
0
                auto st = Status::InternalError(
873
0
                        "Invalid file block column {} at {}: file_column_id={}, name='{}', "
874
0
                        "type={}, column={}, column_size={}, expected_rows={}, error={}, "
875
0
                        "reader={}",
876
0
                        idx, stage, file_block_column.file_column_id.value(),
877
0
                        file_block_column.name,
878
0
                        file_block_column.type == nullptr ? "null"
879
0
                                                          : file_block_column.type->get_name(),
880
0
                        column == nullptr ? "null" : column->get_name(),
881
0
                        column == nullptr ? 0 : column->size(), rows, e.what(), debug_string());
882
0
                LOG(WARNING) << st;
883
0
                return st;
884
0
            }
885
3.40k
        }
886
469
        return Status::OK();
887
469
    }
888
889
466
    Status _check_table_block_columns(std::string_view stage, const Block* block, size_t rows) {
890
466
        DORIS_CHECK(block != nullptr);
891
466
        DORIS_CHECK(block->columns() == _data_reader.column_mapper->mappings().size());
892
3.85k
        for (size_t idx = 0; idx < block->columns(); ++idx) {
893
3.39k
            const auto& mapping = _data_reader.column_mapper->mappings()[idx];
894
3.39k
            const auto& column_with_type = block->get_by_position(idx);
895
3.39k
            const auto* column = column_with_type.column.get();
896
3.39k
            try {
897
3.39k
                if (column == nullptr) {
898
0
                    auto st = Status::InternalError(
899
0
                            "Invalid table block column {} at {}: table_column='{}', "
900
0
                            "global_index={}, type={}, column=null, expected_rows={}, mapping={}",
901
0
                            idx, stage, mapping.table_column_name, mapping.global_index.value(),
902
0
                            mapping.table_type == nullptr ? "null" : mapping.table_type->get_name(),
903
0
                            rows, mapping.debug_string());
904
0
                    LOG(WARNING) << st;
905
0
                    return st;
906
0
                }
907
3.39k
                column->sanity_check();
908
3.39k
                auto st = column_with_type.check_type_and_column_match();
909
3.39k
                if (!st.ok()) {
910
0
                    auto contextual_status = Status::InternalError(
911
0
                            "Invalid table block column {} at {}: table_column='{}', "
912
0
                            "global_index={}, type={}, column={}, column_size={}, "
913
0
                            "expected_rows={}, error={}, mapping={}",
914
0
                            idx, stage, mapping.table_column_name, mapping.global_index.value(),
915
0
                            mapping.table_type == nullptr ? "null" : mapping.table_type->get_name(),
916
0
                            column->get_name(), column->size(), rows, st.to_string(),
917
0
                            mapping.debug_string());
918
0
                    LOG(WARNING) << contextual_status;
919
0
                    return contextual_status;
920
0
                }
921
3.39k
            } catch (const Exception& e) {
922
0
                auto st = Status::InternalError(
923
0
                        "Invalid table block column {} at {}: table_column='{}', global_index={}, "
924
0
                        "type={}, column={}, column_size={}, expected_rows={}, error={}, "
925
0
                        "mapping={}",
926
0
                        idx, stage, mapping.table_column_name, mapping.global_index.value(),
927
0
                        mapping.table_type == nullptr ? "null" : mapping.table_type->get_name(),
928
0
                        column == nullptr ? "null" : column->get_name(),
929
0
                        column == nullptr ? 0 : column->size(), rows, e.to_string(),
930
0
                        mapping.debug_string());
931
0
                LOG(WARNING) << st;
932
0
                return st;
933
0
            } catch (const std::exception& e) {
934
0
                auto st = Status::InternalError(
935
0
                        "Invalid table block column {} at {}: table_column='{}', global_index={}, "
936
0
                        "type={}, column={}, column_size={}, expected_rows={}, error={}, "
937
0
                        "mapping={}",
938
0
                        idx, stage, mapping.table_column_name, mapping.global_index.value(),
939
0
                        mapping.table_type == nullptr ? "null" : mapping.table_type->get_name(),
940
0
                        column == nullptr ? "null" : column->get_name(),
941
0
                        column == nullptr ? 0 : column->size(), rows, e.what(),
942
0
                        mapping.debug_string());
943
0
                LOG(WARNING) << st;
944
0
                return st;
945
0
            }
946
3.39k
        }
947
466
        return Status::OK();
948
466
    }
949
#endif
950
951
466
    Status _truncate_char_or_varchar_columns(Block* block) {
952
466
        DORIS_CHECK(block != nullptr);
953
466
        if (_runtime_state == nullptr ||
954
466
            !_runtime_state->query_options().truncate_char_or_varchar_columns) {
955
466
            return Status::OK();
956
466
        }
957
0
        DORIS_CHECK(block->columns() == _data_reader.column_mapper->mappings().size());
958
0
        for (size_t idx = 0; idx < _data_reader.column_mapper->mappings().size(); ++idx) {
959
0
            const auto& mapping = _data_reader.column_mapper->mappings()[idx];
960
0
            if (!_should_truncate_char_or_varchar_column(mapping)) {
961
0
                continue;
962
0
            }
963
0
            const auto target_len =
964
0
                    assert_cast<const DataTypeString*>(remove_nullable(mapping.table_type).get())
965
0
                            ->len();
966
0
            _truncate_char_or_varchar_column(block, idx, target_len);
967
0
        }
968
0
        return Status::OK();
969
466
    }
970
971
    // Return true when the table schema has a bounded CHAR/VARCHAR length that is stricter than
972
    // the file-side type. Examples:
973
    // - table VARCHAR(10), file VARCHAR(20): truncate to 10;
974
    // - table VARCHAR(10), file STRING: truncate to 10 because STRING has no declared bound;
975
    // - table STRING, any file type: no truncation because the target has no bound.
976
5
    static bool _should_truncate_char_or_varchar_column(const ColumnMapping& mapping) {
977
5
        if (mapping.table_type == nullptr) {
978
0
            return false;
979
0
        }
980
5
        const auto table_type = remove_nullable(mapping.table_type);
981
5
        const auto primitive_type = table_type->get_primitive_type();
982
5
        if (primitive_type != TYPE_VARCHAR && primitive_type != TYPE_CHAR) {
983
1
            return false;
984
1
        }
985
4
        const auto target_len = assert_cast<const DataTypeString*>(table_type.get())->len();
986
4
        if (target_len <= 0) {
987
0
            return false;
988
0
        }
989
4
        if (mapping.file_type == nullptr) {
990
0
            return true;
991
0
        }
992
4
        const auto file_type = remove_nullable(mapping.file_type);
993
4
        DORIS_CHECK(file_type != nullptr);
994
4
        int file_len = -1;
995
4
        if (file_type->get_primitive_type() == TYPE_VARCHAR ||
996
4
            file_type->get_primitive_type() == TYPE_CHAR ||
997
4
            file_type->get_primitive_type() == TYPE_STRING) {
998
3
            file_len = assert_cast<const DataTypeString*>(file_type.get())->len();
999
3
        }
1000
1001
4
        return file_len < 0 || target_len < file_len;
1002
4
    }
1003
1004
    // Truncate a materialized CHAR/VARCHAR column in place by reusing the vectorized substring
1005
    // implementation: substring(column, 1, len). Nullable columns are unwrapped before substring
1006
    // execution and wrapped back with the original null map afterward, because substring operates
1007
    // on the nested string payload only.
1008
1
    static void _truncate_char_or_varchar_column(Block* block, size_t idx, int len) {
1009
1
        DORIS_CHECK(block != nullptr);
1010
1
        auto int_type = std::make_shared<DataTypeInt32>();
1011
1
        const auto num_columns_without_result = cast_set<uint32_t>(block->columns());
1012
1
        auto& target = block->get_by_position(idx);
1013
1
        const bool is_nullable = target.type->is_nullable();
1014
1
        ColumnPtr input_column = target.column;
1015
1
        ColumnPtr null_map_column;
1016
1
        if (is_nullable) {
1017
1
            const auto* nullable_column = assert_cast<const ColumnNullable*>(target.column.get());
1018
1
            input_column = nullable_column->get_nested_column_ptr();
1019
1
            null_map_column = nullable_column->get_null_map_column_ptr();
1020
1
        }
1021
1
        block->replace_by_position(idx, std::move(input_column));
1022
1
        block->insert({int_type->create_column_const(block->rows(), to_field<TYPE_INT>(1)),
1023
1
                       int_type, "const 1"});
1024
1
        block->insert({int_type->create_column_const(block->rows(), to_field<TYPE_INT>(len)),
1025
1
                       int_type, "const len"});
1026
1
        block->insert({nullptr, std::make_shared<DataTypeString>(), "result"});
1027
1028
1
        ColumnNumbers temp_arguments(3);
1029
1
        temp_arguments[0] = cast_set<uint32_t>(idx);
1030
1
        temp_arguments[1] = num_columns_without_result;
1031
1
        temp_arguments[2] = num_columns_without_result + 1;
1032
1
        const uint32_t result_column_id = num_columns_without_result + 2;
1033
1
        SubstringUtil::substring_execute(*block, temp_arguments, result_column_id, block->rows());
1034
1035
1
        ColumnPtr result_column = block->get_by_position(result_column_id).column;
1036
1
        if (is_nullable) {
1037
1
            result_column = ColumnNullable::create(std::move(result_column), null_map_column);
1038
1
        }
1039
1
        block->replace_by_position(idx, std::move(result_column));
1040
1
        block->erase_tail(num_columns_without_result);
1041
1
    }
1042
1043
376
    Status _try_materialize_aggregate_pushdown_rows(Block* block, bool* pushed_down) {
1044
376
        DORIS_CHECK(block != nullptr);
1045
376
        DORIS_CHECK(pushed_down != nullptr);
1046
376
        *pushed_down = false;
1047
376
        block->clear_column_data(_projected_columns.size());
1048
376
        _aggregate_pushdown_tried = true;
1049
376
        if (!_supports_aggregate_pushdown(_push_down_agg_type)) {
1050
363
            return Status::OK();
1051
363
        }
1052
1053
13
        FileAggregateRequest file_request;
1054
13
        RETURN_IF_ERROR(_build_file_aggregate_request(_push_down_agg_type, &file_request));
1055
13
        FileAggregateResult file_result;
1056
13
        Status status;
1057
13
        {
1058
13
            SCOPED_TIMER(_profile.file_reader_total_timer);
1059
13
            SCOPED_TIMER(_profile.file_reader_aggregate_timer);
1060
13
            status = _data_reader.reader->get_aggregate_result(file_request, &file_result);
1061
13
        }
1062
13
        if (status.is<ErrorCode::NOT_IMPLEMENTED_ERROR>()) {
1063
1
            return Status::OK();
1064
1
        }
1065
12
        RETURN_IF_ERROR(status);
1066
11
        if (_push_down_agg_type == TPushAggOp::type::COUNT) {
1067
8
            DORIS_CHECK(file_result.count >= 0);
1068
            // The upper aggregate consumes synthetic input rows, but emitting the whole metadata
1069
            // count in one block bypasses the runtime batch contract and can allocate by file size.
1070
            // Keep the remaining cardinality as split state and expose at most one batch per call.
1071
8
            _remaining_file_level_count = file_result.count;
1072
8
            _current_split_uses_metadata_count = true;
1073
8
            if (_remaining_file_level_count > 0) {
1074
8
                RETURN_IF_ERROR(_materialize_next_count_batch(&_remaining_file_level_count, block));
1075
8
            }
1076
8
        } else {
1077
3
            RETURN_IF_ERROR(
1078
3
                    _materialize_aggregate_pushdown_rows(_push_down_agg_type, file_result, block));
1079
3
        }
1080
11
        *pushed_down = true;
1081
11
        RETURN_IF_ERROR(close_current_reader());
1082
11
        return Status::OK();
1083
11
    }
1084
1085
391
    virtual bool _supports_aggregate_pushdown(TPushAggOp::type agg_type) const {
1086
        // Only COUNT and MIN/MAX can be push down.
1087
391
        if (agg_type != TPushAggOp::type::COUNT && agg_type != TPushAggOp::type::MINMAX) {
1088
343
            return false;
1089
343
        }
1090
        // Aggregate pushdown returns reduced synthetic rows and may close the physical reader
1091
        // before the next scheduler turn. If a runtime filter is still pending, those rows could
1092
        // escape before the filter arrives and cannot later be reconstructed from real file rows.
1093
        // This is the same irreversibility constraint as table-level metadata COUNT, and applies
1094
        // to COUNT and MIN/MAX for Parquet/ORC as well as COUNT for text readers.
1095
48
        if (!_all_runtime_filters_applied_for_split) {
1096
3
            return false;
1097
3
        }
1098
        // Scanner owns the original conjunct list and evaluates it after TableReader finalizes
1099
        // rows. Even a slotless conjunct that cannot become a TableFilter must see every source
1100
        // row before an aggregate reduces the stream to synthetic COUNT/MINMAX rows.
1101
45
        if (!_conjuncts.empty()) {
1102
5
            return false;
1103
5
        }
1104
        // Only support aggregate pushdown when there is no delete or filter, so
1105
        // the reduced rows consumed by the upper aggregate remain semantically equivalent to a
1106
        // normal scan.
1107
40
        if ((_delete_rows != nullptr && !_delete_rows->empty()) ||
1108
40
            (_deletion_vector != nullptr && !_deletion_vector->isEmpty())) {
1109
5
            return false;
1110
5
        }
1111
35
        if (!_table_filters.empty()) {
1112
0
            return false;
1113
0
        }
1114
35
        if (agg_type == TPushAggOp::type::COUNT) {
1115
            // Old FEs do not serialize push_down_count_slot_ids. During the supported BE-first
1116
            // rolling upgrade, nullopt therefore means "COUNT semantics are unknown", not
1117
            // COUNT(*). Fall back to reading rows until the FE explicitly sends either an empty
1118
            // list for COUNT(*) or one slot for COUNT(col).
1119
24
            if (!_push_down_count_columns.has_value()) {
1120
3
                return false;
1121
3
            }
1122
            // COUNT(*) needs no column metadata. COUNT(col) currently supports one direct file
1123
            // column; multiple COUNT arguments fall back to the normal scan so every upper
1124
            // aggregate receives the original rows.
1125
21
            if (_push_down_count_columns->empty()) {
1126
10
                return true;
1127
10
            }
1128
11
            if (_push_down_count_columns->size() != 1) {
1129
1
                return false;
1130
1
            }
1131
10
            const auto& mapping = _push_down_count_mapping();
1132
            // Metadata COUNT skips TableReader's normal materialization path. Only a trivial
1133
            // mapping is safe: for example, a nullable Parquet INT mapped to a NOT NULL table
1134
            // BIGINT normally needs both an INT->BIGINT cast and nullability validation. Counting
1135
            // footer values directly would bypass both operations and could hide invalid data.
1136
10
            return mapping.file_local_id.has_value() && mapping.file_type != nullptr &&
1137
10
                   mapping.table_type != nullptr && mapping.is_trivial &&
1138
10
                   mapping.virtual_column_type == TableVirtualColumnType::INVALID &&
1139
10
                   mapping.default_expr == nullptr;
1140
11
        }
1141
        // For MIN/MAX, only support direct file-to-table column mappings. The two emitted rows
1142
        // must be enough for the upper MIN/MAX aggregate without evaluating default expressions or
1143
        // virtual columns.
1144
13
        for (const auto& mapping : _data_reader.column_mapper->mappings()) {
1145
13
            if (!mapping.file_local_id.has_value() ||
1146
13
                mapping.virtual_column_type != TableVirtualColumnType::INVALID ||
1147
13
                mapping.default_expr != nullptr || mapping.file_type == nullptr ||
1148
13
                mapping.table_type == nullptr) {
1149
1
                return false;
1150
1
            }
1151
12
            if (!_can_push_down_minmax_for_mapping(mapping)) {
1152
2
                return false;
1153
2
            }
1154
12
        }
1155
8
        return true;
1156
11
    }
1157
1158
3.41k
    static ColumnPtr _detach_column(ColumnPtr column) {
1159
3.41k
        DORIS_CHECK(column.get() != nullptr);
1160
3.41k
        return IColumn::mutate(std::move(column));
1161
3.41k
    }
1162
1163
453
    static ColumnPtr _take_and_detach_block_column(Block* block, int position) {
1164
453
        DORIS_CHECK(block != nullptr);
1165
453
        DORIS_CHECK(position >= 0 && position < static_cast<int>(block->columns()));
1166
453
        auto& source = block->get_by_position(position);
1167
453
        ColumnPtr column = source.column;
1168
        // The final mapping no longer needs the file block. Release its COW owner before mutate(),
1169
        // otherwise nested MAP/STRING columns are deep-copied and a multi-GB payload can OOM.
1170
453
        block->replace_by_position(position, source.type->create_column());
1171
453
        return _detach_column(std::move(column));
1172
453
    }
1173
1174
    static Status _align_column_nullability(ColumnPtr* column, const DataTypePtr& table_type,
1175
240
                                            const NullMap* nullable_parent_null_map = nullptr) {
1176
240
        DORIS_CHECK(column != nullptr);
1177
240
        DORIS_CHECK(column->get() != nullptr);
1178
240
        DORIS_CHECK(table_type != nullptr);
1179
        // Must return non-const column
1180
240
        *column = (*column)->convert_to_full_column_if_const();
1181
240
        if (table_type->is_nullable()) {
1182
94
            const auto& nested_type =
1183
94
                    assert_cast<const DataTypeNullable&>(*table_type).get_nested_type();
1184
94
            if (!(*column)->is_nullable()) {
1185
2
                RETURN_IF_ERROR(
1186
2
                        _align_column_nullability(column, nested_type, nullable_parent_null_map));
1187
2
                *column = make_nullable(*column);
1188
2
                return Status::OK();
1189
2
            }
1190
92
            const auto& nullable_column = assert_cast<const ColumnNullable&>(**column);
1191
92
            ColumnPtr nested_column = nullable_column.get_nested_column_ptr();
1192
92
            NullMap combined_null_map;
1193
92
            const NullMap* nested_parent_null_map = &nullable_column.get_null_map_data();
1194
92
            if (nullable_parent_null_map != nullptr) {
1195
52
                const auto& own_null_map = nullable_column.get_null_map_data();
1196
52
                DORIS_CHECK(nullable_parent_null_map->size() == own_null_map.size());
1197
                // Required descendants are hidden when either this nullable container or any
1198
                // inherited nullable ancestor masks the row, so preserve the union recursively.
1199
52
                combined_null_map.resize(own_null_map.size());
1200
178
                for (size_t i = 0; i < own_null_map.size(); ++i) {
1201
126
                    combined_null_map[i] = own_null_map[i] || (*nullable_parent_null_map)[i];
1202
126
                }
1203
52
                nested_parent_null_map = &combined_null_map;
1204
52
            }
1205
92
            RETURN_IF_ERROR(
1206
92
                    _align_column_nullability(&nested_column, nested_type, nested_parent_null_map));
1207
92
            *column = ColumnNullable::create(nested_column,
1208
92
                                             nullable_column.get_null_map_column_ptr());
1209
92
            return Status::OK();
1210
92
        }
1211
146
        if ((*column)->is_nullable()) {
1212
19
            const auto& nullable_column = assert_cast<const ColumnNullable&>(**column);
1213
19
            if (nullable_column.has_null()) {
1214
11
                const auto& null_map = nullable_column.get_null_map_data();
1215
11
                if (nullable_parent_null_map == nullptr ||
1216
11
                    nullable_parent_null_map->size() != null_map.size()) {
1217
1
                    return Status::InternalError(
1218
1
                            "Default expression produced NULL for non-nullable table column");
1219
1
                }
1220
23
                for (size_t i = 0; i < null_map.size(); ++i) {
1221
                    // A required child may contain a physical NULL placeholder only when its
1222
                    // nullable parent masks that row from the logical value.
1223
17
                    if (null_map[i] && !(*nullable_parent_null_map)[i]) {
1224
4
                        return Status::InternalError(
1225
4
                                "Default expression produced NULL for non-nullable table column");
1226
4
                    }
1227
17
                }
1228
10
            }
1229
14
            ColumnPtr nested_column = nullable_column.get_nested_column_ptr();
1230
14
            RETURN_IF_ERROR(_align_column_nullability(&nested_column, table_type,
1231
14
                                                      nullable_parent_null_map));
1232
14
            *column = nested_column;
1233
14
            return Status::OK();
1234
14
        }
1235
127
        if (const auto* array_type = typeid_cast<const DataTypeArray*>(table_type.get())) {
1236
2
            const auto& array_column = assert_cast<const ColumnArray&>(**column);
1237
2
            ColumnPtr nested_column = array_column.get_data_ptr();
1238
2
            NullMap descendant_parent_null_map;
1239
            // Collection entries use offset coordinates, so inherited row masks must be projected
1240
            // only when a required descendant can consume them. This avoids scratch proportional
1241
            // to all array entries for the common all-required schema.
1242
2
            const NullMap* descendant_parent_null_map_ptr = nullptr;
1243
2
            if (_requires_collection_parent_null_map(
1244
2
                        nullable_parent_null_map, nested_column, array_type->get_nested_type(),
1245
2
                        array_column.size(), array_column.get_offsets())) {
1246
1
                descendant_parent_null_map_ptr =
1247
1
                        _project_collection_parent_null_map_for_hidden_entries(
1248
1
                                nullptr, nullable_parent_null_map, array_column.size(),
1249
1
                                array_column.get_offsets(), nested_column->size(),
1250
1
                                &descendant_parent_null_map);
1251
1
            }
1252
2
            RETURN_IF_ERROR(_align_column_nullability(&nested_column, array_type->get_nested_type(),
1253
2
                                                      descendant_parent_null_map_ptr));
1254
2
            *column = ColumnArray::create(nested_column, array_column.get_offsets_ptr());
1255
2
            return Status::OK();
1256
2
        }
1257
125
        if (const auto* map_type = typeid_cast<const DataTypeMap*>(table_type.get())) {
1258
1
            const auto& map_column = assert_cast<const ColumnMap&>(**column);
1259
1
            ColumnPtr key_column = map_column.get_keys_ptr();
1260
1
            ColumnPtr value_column = map_column.get_values_ptr();
1261
1
            NullMap descendant_parent_null_map;
1262
1
            const NullMap* descendant_parent_null_map_ptr = nullptr;
1263
1
            if (_requires_collection_parent_null_map(nullable_parent_null_map, key_column,
1264
1
                                                     map_type->get_key_type(), map_column.size(),
1265
1
                                                     map_column.get_offsets()) ||
1266
1
                _requires_collection_parent_null_map(nullable_parent_null_map, value_column,
1267
1
                                                     map_type->get_value_type(), map_column.size(),
1268
1
                                                     map_column.get_offsets())) {
1269
                // Keys and values share offsets, so one projected mask safely covers both streams.
1270
0
                descendant_parent_null_map_ptr =
1271
0
                        _project_collection_parent_null_map_for_hidden_entries(
1272
0
                                nullptr, nullable_parent_null_map, map_column.size(),
1273
0
                                map_column.get_offsets(), key_column->size(),
1274
0
                                &descendant_parent_null_map);
1275
0
            }
1276
1
            RETURN_IF_ERROR(_align_column_nullability(&key_column, map_type->get_key_type(),
1277
1
                                                      descendant_parent_null_map_ptr));
1278
1
            RETURN_IF_ERROR(_align_column_nullability(&value_column, map_type->get_value_type(),
1279
1
                                                      descendant_parent_null_map_ptr));
1280
1
            *column = ColumnMap::create(key_column, value_column, map_column.get_offsets_ptr());
1281
1
            return Status::OK();
1282
1
        }
1283
124
        if (const auto* struct_type = typeid_cast<const DataTypeStruct*>(table_type.get())) {
1284
14
            const auto& struct_column = assert_cast<const ColumnStruct&>(**column);
1285
14
            Columns columns = struct_column.get_columns_copy();
1286
14
            DORIS_CHECK(columns.size() == struct_type->get_elements().size());
1287
40
            for (size_t i = 0; i < columns.size(); ++i) {
1288
26
                RETURN_IF_ERROR(_align_column_nullability(&columns[i], struct_type->get_element(i),
1289
26
                                                          nullable_parent_null_map));
1290
26
            }
1291
14
            *column = ColumnStruct::create(columns);
1292
14
            return Status::OK();
1293
14
        }
1294
110
        return Status::OK();
1295
124
    }
1296
1297
    static Status _execute_default_expr_without_root_type_check(
1298
            const VExprContextSPtr& default_expr, const Block* block,
1299
16
            ColumnWithTypeAndName* result_data) {
1300
16
        DORIS_CHECK(default_expr != nullptr);
1301
16
        DORIS_CHECK(block != nullptr);
1302
16
        DORIS_CHECK(result_data != nullptr);
1303
16
        ColumnPtr result_column;
1304
16
        Status st;
1305
16
        RETURN_IF_CATCH_EXCEPTION({
1306
16
            st = default_expr->root()->execute_column_impl(default_expr.get(), block, nullptr,
1307
16
                                                           block->rows(), result_column);
1308
16
        });
1309
16
        RETURN_IF_ERROR(st);
1310
16
        DORIS_CHECK(result_column.get() != nullptr);
1311
16
        if (result_column->size() != block->rows()) {
1312
0
            return Status::InternalError(
1313
0
                    "Default expr {} return column size {} not equal to expected size {}",
1314
0
                    default_expr->expr_name(), result_column->size(), block->rows());
1315
0
        }
1316
16
        result_data->column = result_column;
1317
16
        result_data->type = default_expr->execute_type(block);
1318
16
        result_data->name = default_expr->expr_name();
1319
16
        return Status::OK();
1320
16
    }
1321
1322
    Status _cast_column_to_type(ColumnPtr* column, const DataTypePtr& file_type,
1323
                                const DataTypePtr& table_type,
1324
19
                                const std::string& column_name) const {
1325
19
        DORIS_CHECK(column != nullptr);
1326
19
        DORIS_CHECK(column->get() != nullptr);
1327
19
        DORIS_CHECK(file_type != nullptr);
1328
19
        DORIS_CHECK(table_type != nullptr);
1329
19
        if (file_type->equals(*table_type) ||
1330
19
            remove_nullable(file_type)->equals(*remove_nullable(table_type))) {
1331
10
            return Status::OK();
1332
10
        }
1333
1334
9
        DataTypePtr input_type = file_type;
1335
        // Cast wrappers unwrap nullable inputs according to the declared input type, so keep the
1336
        // root nullability of the declared input aligned with the actual column shape. When the
1337
        // runtime column is nullable, also keep the cast target nullable; the caller applies the
1338
        // table's final nullability after value conversion. Casting a nullable runtime column
1339
        // directly to a non-nullable target would pass ColumnNullable to CastToImpl.
1340
9
        if ((*column)->is_nullable() && !input_type->is_nullable()) {
1341
0
            input_type = make_nullable(input_type);
1342
9
        } else if (!(*column)->is_nullable() && input_type->is_nullable()) {
1343
1
            input_type = remove_nullable(input_type);
1344
1
        }
1345
9
        DataTypePtr cast_type = table_type;
1346
9
        if ((*column)->is_nullable() && !cast_type->is_nullable()) {
1347
8
            cast_type = make_nullable(cast_type);
1348
8
        }
1349
9
        Block cast_block;
1350
9
        cast_block.insert({*column, input_type, column_name});
1351
9
        auto slot_ref = VSlotRef::create_shared(0, 0, -1, input_type, column_name);
1352
9
        auto cast_expr = Cast::create_shared(cast_type);
1353
9
        cast_expr->add_child(std::move(slot_ref));
1354
9
        auto cast_ctx = VExprContext::create_shared(std::move(cast_expr));
1355
9
        RowDescriptor row_desc;
1356
9
        RETURN_IF_ERROR(cast_ctx->prepare(_runtime_state, row_desc));
1357
9
        RETURN_IF_ERROR(cast_ctx->open(_runtime_state));
1358
9
        ColumnPtr cast_column;
1359
9
        RETURN_IF_ERROR(cast_ctx->execute(&cast_block, cast_column));
1360
9
        *column = std::move(cast_column);
1361
9
        return Status::OK();
1362
9
    }
1363
1364
    Status _try_materialize_scalar_cast_with_runtime_nullability(const ColumnMapping& mapping,
1365
                                                                 const Block* current_block,
1366
                                                                 ColumnPtr* column,
1367
3.38k
                                                                 bool* handled) const {
1368
3.38k
        DORIS_CHECK(column != nullptr);
1369
3.38k
        DORIS_CHECK(handled != nullptr);
1370
3.38k
        *handled = false;
1371
3.38k
        if (mapping.projection == nullptr || !mapping.file_local_id.has_value() ||
1372
3.38k
            !mapping.child_mappings.empty()) {
1373
558
            return Status::OK();
1374
558
        }
1375
1376
2.82k
        const auto& root = mapping.projection->root();
1377
2.82k
        if (root == nullptr || root->node_type() != TExprNodeType::CAST_EXPR) {
1378
2.81k
            return Status::OK();
1379
2.81k
        }
1380
15
        DORIS_CHECK(root->get_num_children() == 1);
1381
15
        const auto* slot = dynamic_cast<const VSlotRef*>(root->get_child(0).get());
1382
15
        DORIS_CHECK(slot != nullptr);
1383
15
        DORIS_CHECK(current_block != nullptr);
1384
15
        DORIS_CHECK(slot->column_id() >= 0);
1385
15
        DORIS_CHECK(cast_set<size_t>(slot->column_id()) < current_block->columns());
1386
15
        const auto& source = current_block->get_by_position(slot->column_id());
1387
15
        DORIS_CHECK(source.column.get() != nullptr);
1388
15
        DORIS_CHECK(slot->data_type() != nullptr);
1389
15
        DORIS_CHECK(mapping.table_type != nullptr);
1390
15
        const bool runtime_input_mismatch =
1391
15
                source.column->is_nullable() != slot->data_type()->is_nullable();
1392
15
        const bool nullable_input_to_required_table =
1393
15
                source.column->is_nullable() && !mapping.table_type->is_nullable();
1394
15
        if (!runtime_input_mismatch && !nullable_input_to_required_table) {
1395
8
            return Status::OK();
1396
8
        }
1397
1398
        // File readers can return a nullable runtime column even when the physical schema marks the
1399
        // leaf required. A pre-built Cast binds to the declared file type and can therefore pass a
1400
        // ColumnNullable to a non-nullable CastToImpl. Rebuild only when that runtime shape differs
1401
        // from the declared input, or when a declared nullable file field maps to a required table
1402
        // field. Keep the cast target nullable while converting values, then let
1403
        // _align_column_nullability() reject an actual NULL before removing the wrapper.
1404
7
        ColumnPtr result_column = source.column;
1405
7
        RETURN_IF_ERROR(_cast_column_to_type(&result_column, slot->data_type(), mapping.table_type,
1406
7
                                             mapping.file_column_name));
1407
7
        RETURN_IF_ERROR(_align_column_nullability(&result_column, mapping.table_type));
1408
6
        *column = _detach_column(std::move(result_column));
1409
6
        *handled = true;
1410
6
        return Status::OK();
1411
7
    }
1412
1413
    Status _materialize_present_child_mapping_column(
1414
            const ColumnMapping& mapping, const ColumnPtr& file_column, const size_t rows,
1415
53
            ColumnPtr* column, const NullMap* nullable_parent_null_map = nullptr) {
1416
53
        DORIS_CHECK(column != nullptr);
1417
53
        DORIS_CHECK(mapping.file_type != nullptr);
1418
53
        DORIS_CHECK(mapping.table_type != nullptr);
1419
53
        *column = file_column;
1420
53
        if (!mapping.is_trivial) {
1421
26
            if (!mapping.child_mappings.empty()) {
1422
16
                RETURN_IF_ERROR(_materialize_complex_mapping_column(mapping, *column, rows, column,
1423
16
                                                                    nullable_parent_null_map));
1424
16
            } else {
1425
10
                RETURN_IF_ERROR(_cast_column_to_type(column, mapping.file_type, mapping.table_type,
1426
10
                                                     mapping.file_column_name));
1427
10
            }
1428
26
        }
1429
50
        RETURN_IF_ERROR(
1430
50
                _align_column_nullability(column, mapping.table_type, nullable_parent_null_map));
1431
46
        return Status::OK();
1432
50
    }
1433
1434
    Status _materialize_default_or_missing_column(
1435
            const ColumnMapping& mapping, const Block* current_block, const size_t rows,
1436
42
            ColumnPtr* column, const NullMap* nullable_parent_null_map = nullptr) {
1437
42
        DORIS_CHECK(mapping.table_type != nullptr);
1438
42
        DORIS_CHECK(column != nullptr);
1439
42
        if (mapping.default_expr != nullptr) {
1440
16
            Block synthetic_block;
1441
16
            const Block* eval_block = current_block;
1442
16
            if (eval_block == nullptr || eval_block->rows() != rows) {
1443
                // Nested ARRAY/MAP children use element/entry cardinality rather than the root
1444
                // block's row count. Iceberg initial defaults are typed literals, so a synthetic
1445
                // block with the desired row count is sufficient and avoids a top-level
1446
                // ConstantMap dependency for nested mappings.
1447
14
                synthetic_block.insert(
1448
14
                        {mapping.table_type->create_column_const_with_default_value(rows),
1449
14
                         mapping.table_type, "__table_reader_nested_default_rows"});
1450
14
                eval_block = &synthetic_block;
1451
14
            }
1452
16
            ColumnWithTypeAndName result;
1453
16
            RETURN_IF_ERROR(_execute_default_expr_without_root_type_check(mapping.default_expr,
1454
16
                                                                          eval_block, &result));
1455
16
            ColumnPtr result_column = result.column;
1456
16
            RETURN_IF_ERROR(_align_column_nullability(&result_column, mapping.table_type,
1457
16
                                                      nullable_parent_null_map));
1458
16
            *column = _detach_column(std::move(result_column));
1459
16
            return Status::OK();
1460
16
        }
1461
26
        ColumnPtr result_column = mapping.table_type->create_column_const_with_default_value(rows);
1462
26
        RETURN_IF_ERROR(_align_column_nullability(&result_column, mapping.table_type,
1463
26
                                                  nullable_parent_null_map));
1464
26
        *column = _detach_column(std::move(result_column));
1465
26
        return Status::OK();
1466
26
    }
1467
1468
    Status _materialize_mapping_column(const ColumnMapping& mapping, Block* current_block,
1469
                                       const size_t rows, ColumnPtr* column,
1470
3.40k
                                       bool take_projection_result = false) {
1471
3.40k
        if (!mapping.is_trivial && mapping.file_local_id.has_value() &&
1472
3.40k
            !mapping.child_mappings.empty()) {
1473
16
            DCHECK(mapping.projection != nullptr);
1474
16
            int res_id;
1475
16
            auto st = mapping.projection->execute(current_block, &res_id);
1476
16
            if (!st.ok()) {
1477
0
                return Status::InternalError(
1478
0
                        "Failed to execute complex mapping projection for table column '{}' "
1479
0
                        "(global_index={}, file_local_id={}, rows={}): {}, mapping={}",
1480
0
                        mapping.table_column_name, mapping.global_index.value(),
1481
0
                        *mapping.file_local_id, rows, st.to_string(), mapping.debug_string());
1482
0
            }
1483
16
            ColumnPtr result_column = take_projection_result
1484
16
                                              ? _take_and_detach_block_column(current_block, res_id)
1485
16
                                              : current_block->get_by_position(res_id).column;
1486
16
            RETURN_IF_ERROR(
1487
16
                    _materialize_complex_mapping_column(mapping, result_column, rows, column));
1488
13
            return Status::OK();
1489
16
        }
1490
3.38k
        bool runtime_nullability_cast_handled = false;
1491
3.38k
        RETURN_IF_ERROR(_try_materialize_scalar_cast_with_runtime_nullability(
1492
3.38k
                mapping, current_block, column, &runtime_nullability_cast_handled));
1493
3.38k
        if (runtime_nullability_cast_handled) {
1494
6
            return Status::OK();
1495
6
        }
1496
3.37k
        if (mapping.projection != nullptr) {
1497
3.35k
            int res_id;
1498
3.35k
            auto st = mapping.projection->execute(current_block, &res_id);
1499
3.35k
            if (!st.ok()) {
1500
0
                std::string file_local_id = "null";
1501
0
                if (mapping.file_local_id.has_value()) {
1502
0
                    file_local_id = std::to_string(*mapping.file_local_id);
1503
0
                }
1504
0
                return Status::InternalError(
1505
0
                        "Failed to execute mapping projection for table column '{}' "
1506
0
                        "(global_index={}, file_local_id={}, rows={}): {}, mapping={}",
1507
0
                        mapping.table_column_name, mapping.global_index.value(), file_local_id,
1508
0
                        rows, st.to_string(), mapping.debug_string());
1509
0
            }
1510
3.35k
            if (take_projection_result) {
1511
440
                *column = _take_and_detach_block_column(current_block, res_id);
1512
2.91k
            } else {
1513
2.91k
                ColumnPtr result_column = current_block->get_by_position(res_id).column;
1514
2.91k
                *column = _detach_column(std::move(result_column));
1515
2.91k
            }
1516
3.35k
            return Status::OK();
1517
3.35k
        }
1518
29
        return _materialize_default_or_missing_column(mapping, current_block, rows, column);
1519
3.37k
    }
1520
1521
    Status _materialize_complex_mapping_column(const ColumnMapping& mapping,
1522
                                               const ColumnPtr& file_column, const size_t rows,
1523
                                               ColumnPtr* column,
1524
32
                                               const NullMap* nullable_parent_null_map = nullptr) {
1525
32
        DORIS_CHECK(mapping.table_type != nullptr);
1526
32
        DORIS_CHECK(file_column.get() != nullptr);
1527
32
        const auto table_type = remove_nullable(mapping.table_type);
1528
32
        switch (table_type->get_primitive_type()) {
1529
22
        case TYPE_STRUCT:
1530
22
            RETURN_IF_ERROR(_materialize_struct_mapping_column(mapping, file_column, rows, column,
1531
22
                                                               nullable_parent_null_map));
1532
19
            break;
1533
19
        case TYPE_ARRAY:
1534
7
            RETURN_IF_ERROR(_materialize_array_mapping_column(mapping, file_column, rows, column,
1535
7
                                                              nullable_parent_null_map));
1536
4
            break;
1537
4
        case TYPE_MAP:
1538
3
            RETURN_IF_ERROR(_materialize_map_mapping_column(mapping, file_column, rows, column,
1539
3
                                                            nullable_parent_null_map));
1540
3
            break;
1541
3
        default:
1542
0
            *column = _detach_column(file_column);
1543
0
            break;
1544
32
        }
1545
26
        return Status::OK();
1546
32
    }
1547
1548
    static std::vector<const ColumnMapping*> _present_child_mappings_in_file_order(
1549
27
            const std::vector<ColumnMapping>& child_mappings) {
1550
27
        std::vector<const ColumnMapping*> result;
1551
27
        result.reserve(child_mappings.size());
1552
46
        for (const auto& child_mapping : child_mappings) {
1553
46
            if (child_mapping.file_local_id.has_value()) {
1554
33
                result.push_back(&child_mapping);
1555
33
            }
1556
46
        }
1557
27
        std::ranges::sort(result, [](const ColumnMapping* lhs, const ColumnMapping* rhs) {
1558
14
            DORIS_CHECK(lhs->file_local_id.has_value());
1559
14
            DORIS_CHECK(rhs->file_local_id.has_value());
1560
14
            return *lhs->file_local_id < *rhs->file_local_id;
1561
14
        });
1562
27
        return result;
1563
27
    }
1564
1565
    static size_t _file_child_ordinal_for_mapping(
1566
            const ColumnMapping& mapping, const ColumnMapping& child_mapping,
1567
32
            const std::vector<const ColumnMapping*>& file_ordered_children) {
1568
32
        DORIS_CHECK(child_mapping.file_local_id.has_value());
1569
32
        if (!mapping.projected_file_children.empty()) {
1570
21
            const auto child_it = std::ranges::find_if(
1571
28
                    mapping.projected_file_children, [&](const ColumnDefinition& file_child) {
1572
28
                        return file_child.file_local_id() == *child_mapping.file_local_id;
1573
28
                    });
1574
21
            DORIS_CHECK(child_it != mapping.projected_file_children.end());
1575
21
            return static_cast<size_t>(
1576
21
                    std::distance(mapping.projected_file_children.begin(), child_it));
1577
21
        }
1578
11
        const auto child_it = std::ranges::find(file_ordered_children, &child_mapping);
1579
11
        DORIS_CHECK(child_it != file_ordered_children.end());
1580
11
        return static_cast<size_t>(std::distance(file_ordered_children.begin(), child_it));
1581
32
    }
1582
1583
    static std::vector<const ColumnMapping*> _child_mappings_in_table_type_order(
1584
27
            const ColumnMapping& mapping, const DataTypeStruct& table_type) {
1585
27
        std::vector<const ColumnMapping*> result;
1586
27
        result.reserve(mapping.child_mappings.size());
1587
73
        for (size_t child_idx = 0; child_idx < table_type.get_elements().size(); ++child_idx) {
1588
46
            const auto& child_name = table_type.get_element_name(child_idx);
1589
46
            const auto child_it = std::ranges::find_if(
1590
68
                    mapping.child_mappings, [&](const ColumnMapping& child_mapping) {
1591
68
                        return child_mapping.table_column_name == child_name;
1592
68
                    });
1593
46
            DORIS_CHECK(child_it != mapping.child_mappings.end())
1594
0
                    << mapping.debug_string() << ", table_child_name=" << child_name;
1595
46
            result.push_back(&*child_it);
1596
46
        }
1597
27
        return result;
1598
27
    }
1599
1600
    static const IColumn* _nested_column_if_nullable(const ColumnPtr& column,
1601
45
                                                     const NullMap** null_map) {
1602
45
        DORIS_CHECK(column.get() != nullptr);
1603
45
        if (const auto* nullable_column = check_and_get_column<ColumnNullable>(*column)) {
1604
41
            if (null_map != nullptr) {
1605
41
                *null_map = &nullable_column->get_null_map_data();
1606
41
            }
1607
41
            return &nullable_column->get_nested_column();
1608
41
        }
1609
4
        return column.get();
1610
45
    }
1611
1612
    static bool _requires_parent_null_map_for_alignment(const ColumnPtr& column,
1613
0
                                                        const DataTypePtr& table_type) {
1614
0
        DORIS_CHECK(column.get() != nullptr);
1615
0
        DORIS_CHECK(table_type != nullptr);
1616
0
        if (table_type->is_nullable()) {
1617
0
            const auto& nested_type =
1618
0
                    assert_cast<const DataTypeNullable&>(*table_type).get_nested_type();
1619
0
            if (const auto* nullable_column = check_and_get_column<ColumnNullable>(*column)) {
1620
0
                return _requires_parent_null_map_for_alignment(
1621
0
                        nullable_column->get_nested_column_ptr(), nested_type);
1622
0
            }
1623
0
            return _requires_parent_null_map_for_alignment(column, nested_type);
1624
0
        }
1625
0
        if (const auto* nullable_column = check_and_get_column<ColumnNullable>(*column)) {
1626
0
            if (nullable_column->has_null()) {
1627
0
                return true;
1628
0
            }
1629
0
            return _requires_parent_null_map_for_alignment(nullable_column->get_nested_column_ptr(),
1630
0
                                                           table_type);
1631
0
        }
1632
0
        if (const auto* array_type = typeid_cast<const DataTypeArray*>(table_type.get())) {
1633
0
            const auto& array_column = assert_cast<const ColumnArray&>(*column);
1634
0
            return _requires_parent_null_map_for_alignment(array_column.get_data_ptr(),
1635
0
                                                           array_type->get_nested_type());
1636
0
        }
1637
0
        if (const auto* map_type = typeid_cast<const DataTypeMap*>(table_type.get())) {
1638
0
            const auto& map_column = assert_cast<const ColumnMap&>(*column);
1639
0
            return _requires_parent_null_map_for_alignment(map_column.get_keys_ptr(),
1640
0
                                                           map_type->get_key_type()) ||
1641
0
                   _requires_parent_null_map_for_alignment(map_column.get_values_ptr(),
1642
0
                                                           map_type->get_value_type());
1643
0
        }
1644
0
        if (const auto* struct_type = typeid_cast<const DataTypeStruct*>(table_type.get())) {
1645
0
            const auto& struct_column = assert_cast<const ColumnStruct&>(*column);
1646
0
            DORIS_CHECK(struct_column.tuple_size() == struct_type->get_elements().size());
1647
0
            for (size_t i = 0; i < struct_column.tuple_size(); ++i) {
1648
0
                if (_requires_parent_null_map_for_alignment(struct_column.get_column_ptr(i),
1649
0
                                                            struct_type->get_element(i))) {
1650
0
                    return true;
1651
0
                }
1652
0
            }
1653
0
        }
1654
0
        return false;
1655
0
    }
1656
1657
    static bool _requires_parent_null_map_for_alignment_at(const ColumnPtr& column,
1658
                                                           const DataTypePtr& table_type,
1659
17
                                                           const size_t row) {
1660
17
        DORIS_CHECK(column.get() != nullptr);
1661
17
        DORIS_CHECK(table_type != nullptr);
1662
17
        DORIS_CHECK(row < column->size());
1663
17
        if (table_type->is_nullable()) {
1664
5
            const auto& nested_type =
1665
5
                    assert_cast<const DataTypeNullable&>(*table_type).get_nested_type();
1666
5
            if (const auto* nullable_column = check_and_get_column<ColumnNullable>(*column)) {
1667
                // A nearer nullable wrapper already protects its descendants at this entry, so an
1668
                // inherited collection mask cannot be needed there.
1669
5
                if (nullable_column->is_null_at(row)) {
1670
0
                    return false;
1671
0
                }
1672
5
                return _requires_parent_null_map_for_alignment_at(
1673
5
                        nullable_column->get_nested_column_ptr(), nested_type, row);
1674
5
            }
1675
0
            return _requires_parent_null_map_for_alignment_at(column, nested_type, row);
1676
5
        }
1677
12
        if (const auto* nullable_column = check_and_get_column<ColumnNullable>(*column)) {
1678
4
            if (nullable_column->is_null_at(row)) {
1679
2
                return true;
1680
2
            }
1681
2
            return _requires_parent_null_map_for_alignment_at(
1682
2
                    nullable_column->get_nested_column_ptr(), table_type, row);
1683
4
        }
1684
8
        if (const auto* array_type = typeid_cast<const DataTypeArray*>(table_type.get())) {
1685
0
            const auto& array_column = assert_cast<const ColumnArray&>(*column);
1686
0
            const auto& offsets = array_column.get_offsets();
1687
0
            const size_t begin = row == 0 ? 0 : offsets[row - 1];
1688
0
            const size_t end = offsets[row];
1689
0
            for (size_t child_row = begin; child_row < end; ++child_row) {
1690
0
                if (_requires_parent_null_map_for_alignment_at(array_column.get_data_ptr(),
1691
0
                                                               array_type->get_nested_type(),
1692
0
                                                               child_row)) {
1693
0
                    return true;
1694
0
                }
1695
0
            }
1696
0
            return false;
1697
0
        }
1698
8
        if (const auto* map_type = typeid_cast<const DataTypeMap*>(table_type.get())) {
1699
0
            const auto& map_column = assert_cast<const ColumnMap&>(*column);
1700
0
            const auto& offsets = map_column.get_offsets();
1701
0
            const size_t begin = row == 0 ? 0 : offsets[row - 1];
1702
0
            const size_t end = offsets[row];
1703
0
            for (size_t child_row = begin; child_row < end; ++child_row) {
1704
0
                if (_requires_parent_null_map_for_alignment_at(
1705
0
                            map_column.get_keys_ptr(), map_type->get_key_type(), child_row) ||
1706
0
                    _requires_parent_null_map_for_alignment_at(
1707
0
                            map_column.get_values_ptr(), map_type->get_value_type(), child_row)) {
1708
0
                    return true;
1709
0
                }
1710
0
            }
1711
0
            return false;
1712
0
        }
1713
8
        if (const auto* struct_type = typeid_cast<const DataTypeStruct*>(table_type.get())) {
1714
4
            const auto& struct_column = assert_cast<const ColumnStruct&>(*column);
1715
4
            DORIS_CHECK(struct_column.tuple_size() == struct_type->get_elements().size());
1716
6
            for (size_t i = 0; i < struct_column.tuple_size(); ++i) {
1717
4
                if (_requires_parent_null_map_for_alignment_at(struct_column.get_column_ptr(i),
1718
4
                                                               struct_type->get_element(i), row)) {
1719
2
                    return true;
1720
2
                }
1721
4
            }
1722
4
        }
1723
6
        return false;
1724
8
    }
1725
1726
    static bool _requires_collection_parent_null_map(const NullMap* parent_null_map,
1727
                                                     const ColumnPtr& column,
1728
                                                     const DataTypePtr& table_type) {
1729
        // Descendant null maps can be entry-sized. Scan them only when an inherited mask can
1730
        // actually hide a row; absent/all-clear masks cannot authorize any physical child NULL.
1731
        if (parent_null_map == nullptr ||
1732
            std::ranges::none_of(*parent_null_map, [](const auto value) { return value != 0; })) {
1733
            return false;
1734
        }
1735
        return _requires_parent_null_map_for_alignment(column, table_type);
1736
    }
1737
1738
    template <typename Offsets>
1739
    static bool _parent_null_map_hides_collection_entries(const NullMap* container_null_map,
1740
                                                          const NullMap* ancestor_null_map,
1741
                                                          const size_t rows,
1742
20
                                                          const Offsets& offsets) {
1743
20
        if (container_null_map == nullptr && ancestor_null_map == nullptr) {
1744
2
            return false;
1745
2
        }
1746
18
        DORIS_CHECK(container_null_map == nullptr || container_null_map->size() == rows);
1747
18
        DORIS_CHECK(ancestor_null_map == nullptr || ancestor_null_map->size() == rows);
1748
18
        DORIS_CHECK(offsets.size() == rows);
1749
18
        size_t begin = 0;
1750
47
        for (size_t row = 0; row < rows; ++row) {
1751
34
            const size_t end = offsets[row];
1752
34
            const bool hidden = (container_null_map != nullptr && (*container_null_map)[row]) ||
1753
34
                                (ancestor_null_map != nullptr && (*ancestor_null_map)[row]);
1754
            // A hidden collection row protects descendants only when its offset span is nonempty.
1755
34
            if (hidden && end > begin) {
1756
5
                return true;
1757
5
            }
1758
29
            begin = end;
1759
29
        }
1760
13
        return false;
1761
18
    }
1762
1763
    template <typename Offsets>
1764
    static bool _requires_collection_parent_null_map(const NullMap* parent_null_map,
1765
                                                     const ColumnPtr& column,
1766
                                                     const DataTypePtr& table_type,
1767
9
                                                     const size_t rows, const Offsets& offsets) {
1768
9
        if (parent_null_map == nullptr) {
1769
0
            return false;
1770
0
        }
1771
9
        DORIS_CHECK(parent_null_map->size() == rows);
1772
9
        DORIS_CHECK(offsets.size() == rows);
1773
9
        DORIS_CHECK(offsets.empty() || offsets.back() == column->size());
1774
9
        size_t begin = 0;
1775
22
        for (size_t row = 0; row < rows; ++row) {
1776
15
            const size_t end = offsets[row];
1777
15
            if ((*parent_null_map)[row]) {
1778
                // Only ancestor-hidden entries can consume this projection. Restricting the probe
1779
                // to their spans avoids scanning visible payload covered by nearer nullable masks.
1780
12
                for (size_t child_row = begin; child_row < end; ++child_row) {
1781
6
                    if (_requires_parent_null_map_for_alignment_at(column, table_type, child_row)) {
1782
2
                        return true;
1783
2
                    }
1784
6
                }
1785
8
            }
1786
13
            begin = end;
1787
13
        }
1788
7
        return false;
1789
9
    }
1790
1791
    template <typename Offsets>
1792
    static const NullMap* _project_collection_parent_null_map_for_hidden_entries(
1793
            const NullMap* container_null_map, const NullMap* ancestor_null_map, const size_t rows,
1794
20
            const Offsets& offsets, const size_t child_rows, NullMap* const projected_null_map) {
1795
20
        if (!_parent_null_map_hides_collection_entries(container_null_map, ancestor_null_map, rows,
1796
20
                                                       offsets)) {
1797
            // Nullable collection wrappers expose a null-map even when every row is present; avoid
1798
            // allocating entry-coordinate scratch unless a hidden row owns physical entries.
1799
15
            return nullptr;
1800
15
        }
1801
5
        projected_null_map->resize(child_rows);
1802
5
        std::fill(projected_null_map->begin(), projected_null_map->end(), 0);
1803
5
        size_t begin = 0;
1804
15
        for (size_t row = 0; row < rows; ++row) {
1805
10
            const size_t end = offsets[row];
1806
10
            const bool hidden = (container_null_map != nullptr && (*container_null_map)[row]) ||
1807
10
                                (ancestor_null_map != nullptr && (*ancestor_null_map)[row]);
1808
10
            if (hidden) {
1809
                // Collection masks use row coordinates; descendants need the same invariant
1810
                // projected through offsets so hidden physical payload cannot fail validation.
1811
5
                std::fill(projected_null_map->begin() + begin, projected_null_map->begin() + end,
1812
5
                          1);
1813
5
            }
1814
10
            begin = end;
1815
10
        }
1816
5
        DORIS_CHECK(begin == child_rows);
1817
5
        return projected_null_map;
1818
20
    }
1819
1820
    Status _materialize_struct_mapping_column(const ColumnMapping& mapping,
1821
                                              const ColumnPtr& file_column, const size_t rows,
1822
                                              ColumnPtr* column,
1823
28
                                              const NullMap* nullable_parent_null_map = nullptr) {
1824
28
        DORIS_CHECK(mapping.table_type != nullptr);
1825
28
        const auto* table_type =
1826
28
                assert_cast<const DataTypeStruct*>(remove_nullable(mapping.table_type).get());
1827
28
        const auto full_file_column = file_column->convert_to_full_column_if_const();
1828
28
        const NullMap* parent_null_map = nullptr;
1829
28
        const auto* nested_file_column =
1830
28
                _nested_column_if_nullable(full_file_column, &parent_null_map);
1831
28
        const auto* file_struct = assert_cast<const ColumnStruct*>(nested_file_column);
1832
28
        DORIS_CHECK(table_type->get_elements().size() == mapping.child_mappings.size());
1833
1834
28
        NullMap combined_parent_null_map;
1835
28
        const NullMap* descendant_parent_null_map = nullable_parent_null_map;
1836
28
        if (parent_null_map != nullptr) {
1837
26
            DORIS_CHECK(parent_null_map->size() == rows);
1838
26
            if (nullable_parent_null_map != nullptr) {
1839
3
                DORIS_CHECK(nullable_parent_null_map->size() == rows);
1840
3
            }
1841
26
            if (!mapping.table_type->is_nullable()) {
1842
7
                for (size_t i = 0; i < rows; ++i) {
1843
                    // A required nested container may drop its own NULL only when an ancestor
1844
                    // already hides that row; otherwise physical defaults become visible values.
1845
5
                    if ((*parent_null_map)[i] &&
1846
5
                        (nullable_parent_null_map == nullptr || !(*nullable_parent_null_map)[i])) {
1847
1
                        return Status::InternalError(
1848
1
                                "Source struct contains NULL for non-nullable table column");
1849
1
                    }
1850
5
                }
1851
3
            }
1852
25
            combined_parent_null_map.resize(rows);
1853
79
            for (size_t i = 0; i < rows; ++i) {
1854
54
                combined_parent_null_map[i] =
1855
54
                        (*parent_null_map)[i] ||
1856
54
                        (nullable_parent_null_map != nullptr && (*nullable_parent_null_map)[i]);
1857
54
            }
1858
25
            descendant_parent_null_map = &combined_parent_null_map;
1859
25
        }
1860
1861
27
        Columns child_columns;
1862
27
        child_columns.reserve(mapping.child_mappings.size());
1863
27
        const auto file_ordered_children =
1864
27
                _present_child_mappings_in_file_order(mapping.child_mappings);
1865
27
        const auto table_ordered_children =
1866
27
                _child_mappings_in_table_type_order(mapping, *table_type);
1867
45
        for (const auto* child_mapping : table_ordered_children) {
1868
45
            DORIS_CHECK(child_mapping != nullptr);
1869
45
            if (!child_mapping->file_local_id.has_value()) {
1870
13
                ColumnPtr child_column;
1871
13
                RETURN_IF_ERROR(_materialize_default_or_missing_column(
1872
13
                        *child_mapping, nullptr, rows, &child_column, descendant_parent_null_map));
1873
13
                child_column = child_column->convert_to_full_column_if_const();
1874
13
                child_columns.push_back(std::move(child_column));
1875
13
                continue;
1876
13
            }
1877
32
            const auto file_child_idx =
1878
32
                    _file_child_ordinal_for_mapping(mapping, *child_mapping, file_ordered_children);
1879
32
            DORIS_CHECK(file_child_idx < file_struct->get_columns().size());
1880
32
            ColumnPtr child_column = file_struct->get_column_ptr(file_child_idx);
1881
32
            RETURN_IF_ERROR(_materialize_present_child_mapping_column(
1882
32
                    *child_mapping, child_column, rows, &child_column, descendant_parent_null_map));
1883
28
            child_columns.push_back(std::move(child_column));
1884
28
        }
1885
23
        MutableColumns mutable_child_columns;
1886
23
        mutable_child_columns.reserve(child_columns.size());
1887
39
        for (auto& child_column : child_columns) {
1888
39
            mutable_child_columns.push_back(IColumn::mutate(std::move(child_column)));
1889
39
        }
1890
23
        auto result = ColumnStruct::create(std::move(mutable_child_columns));
1891
23
        if (mapping.table_type->is_nullable()) {
1892
19
            auto null_map = ColumnUInt8::create();
1893
19
            auto& null_map_data = null_map->get_data();
1894
19
            null_map_data.resize(rows);
1895
19
            if (parent_null_map != nullptr) {
1896
19
                DORIS_CHECK(parent_null_map->size() == rows);
1897
19
                null_map_data.assign(parent_null_map->begin(), parent_null_map->end());
1898
19
            } else {
1899
0
                std::fill(null_map_data.begin(), null_map_data.end(), 0);
1900
0
            }
1901
19
            *column = ColumnNullable::create(std::move(result), std::move(null_map));
1902
19
        } else {
1903
4
            *column = std::move(result);
1904
4
        }
1905
23
        return Status::OK();
1906
27
    }
1907
1908
    Status _materialize_array_mapping_column(const ColumnMapping& mapping,
1909
                                             const ColumnPtr& file_column, const size_t rows,
1910
                                             ColumnPtr* column,
1911
11
                                             const NullMap* nullable_parent_null_map = nullptr) {
1912
11
        DORIS_CHECK(mapping.child_mappings.size() == 1);
1913
11
        const auto full_file_column = file_column->convert_to_full_column_if_const();
1914
11
        const NullMap* parent_null_map = nullptr;
1915
11
        const auto* nested_file_column =
1916
11
                _nested_column_if_nullable(full_file_column, &parent_null_map);
1917
11
        if (parent_null_map != nullptr && !mapping.table_type->is_nullable()) {
1918
2
            DORIS_CHECK(parent_null_map->size() == rows);
1919
2
            if (nullable_parent_null_map != nullptr) {
1920
1
                DORIS_CHECK(nullable_parent_null_map->size() == rows);
1921
1
            }
1922
4
            for (size_t i = 0; i < rows; ++i) {
1923
                // ARRAY row masks cannot be forwarded to elements because they use different
1924
                // coordinates, so validate the container before dropping its nullable wrapper.
1925
3
                if ((*parent_null_map)[i] &&
1926
3
                    (nullable_parent_null_map == nullptr || !(*nullable_parent_null_map)[i])) {
1927
1
                    return Status::InternalError(
1928
1
                            "Source array contains NULL for non-nullable table column");
1929
1
                }
1930
3
            }
1931
2
        }
1932
10
        const auto* file_array = assert_cast<const ColumnArray*>(nested_file_column);
1933
10
        ColumnPtr nested_column = file_array->get_data_ptr();
1934
10
        auto element_mapping = mapping.child_mappings[0];
1935
        // Keep the descriptor type for schema matching. ARRAY's nullable element wrapper is a
1936
        // storage invariant, so add it only at the materialization boundary.
1937
10
        element_mapping.table_type = make_nullable(element_mapping.table_type);
1938
10
        NullMap descendant_parent_null_map;
1939
10
        const NullMap* descendant_parent_null_map_ptr =
1940
10
                _project_collection_parent_null_map_for_hidden_entries(
1941
10
                        parent_null_map, nullable_parent_null_map, rows, file_array->get_offsets(),
1942
10
                        nested_column->size(), &descendant_parent_null_map);
1943
10
        RETURN_IF_ERROR(_materialize_present_child_mapping_column(
1944
10
                element_mapping, nested_column, nested_column->size(), &nested_column,
1945
10
                descendant_parent_null_map_ptr));
1946
7
        auto offsets_column = file_array->get_offsets_ptr()->convert_to_full_column_if_const();
1947
7
        auto result = ColumnArray::create(IColumn::mutate(std::move(nested_column)),
1948
7
                                          IColumn::mutate(std::move(offsets_column)));
1949
7
        if (mapping.table_type->is_nullable()) {
1950
6
            auto null_map = ColumnUInt8::create();
1951
6
            auto& null_map_data = null_map->get_data();
1952
6
            null_map_data.resize(rows);
1953
6
            if (parent_null_map != nullptr) {
1954
6
                DORIS_CHECK(parent_null_map->size() == rows);
1955
6
                null_map_data.assign(parent_null_map->begin(), parent_null_map->end());
1956
6
            } else {
1957
0
                std::fill(null_map_data.begin(), null_map_data.end(), 0);
1958
0
            }
1959
6
            *column = ColumnNullable::create(std::move(result), std::move(null_map));
1960
6
        } else {
1961
1
            *column = std::move(result);
1962
1
        }
1963
7
        return Status::OK();
1964
10
    }
1965
1966
    Status _materialize_map_mapping_column(const ColumnMapping& mapping,
1967
                                           const ColumnPtr& file_column, const size_t rows,
1968
                                           ColumnPtr* column,
1969
6
                                           const NullMap* nullable_parent_null_map = nullptr) {
1970
6
        const auto full_file_column = file_column->convert_to_full_column_if_const();
1971
6
        const NullMap* parent_null_map = nullptr;
1972
6
        const auto* nested_file_column =
1973
6
                _nested_column_if_nullable(full_file_column, &parent_null_map);
1974
6
        if (parent_null_map != nullptr && !mapping.table_type->is_nullable()) {
1975
0
            DORIS_CHECK(parent_null_map->size() == rows);
1976
0
            if (nullable_parent_null_map != nullptr) {
1977
0
                DORIS_CHECK(nullable_parent_null_map->size() == rows);
1978
0
            }
1979
0
            for (size_t i = 0; i < rows; ++i) {
1980
                // MAP row masks cannot be forwarded to entries because they use different
1981
                // coordinates, so validate the container before dropping its nullable wrapper.
1982
0
                if ((*parent_null_map)[i] &&
1983
0
                    (nullable_parent_null_map == nullptr || !(*nullable_parent_null_map)[i])) {
1984
0
                    return Status::InternalError(
1985
0
                            "Source map contains NULL for non-nullable table column");
1986
0
                }
1987
0
            }
1988
0
        }
1989
6
        const auto* file_map = assert_cast<const ColumnMap*>(nested_file_column);
1990
6
        ColumnPtr key_column = file_map->get_keys_ptr();
1991
6
        ColumnPtr value_column = file_map->get_values_ptr();
1992
6
        DORIS_CHECK(key_column->size() == value_column->size());
1993
6
        NullMap descendant_parent_null_map;
1994
6
        const NullMap* descendant_parent_null_map_ptr =
1995
6
                _project_collection_parent_null_map_for_hidden_entries(
1996
6
                        parent_null_map, nullable_parent_null_map, rows, file_map->get_offsets(),
1997
6
                        key_column->size(), &descendant_parent_null_map);
1998
1999
6
        const ColumnMapping* key_mapping = nullptr;
2000
6
        const ColumnMapping* value_mapping = nullptr;
2001
9
        for (const auto& child_mapping : mapping.child_mappings) {
2002
9
            if (!child_mapping.file_local_id.has_value()) {
2003
0
                continue;
2004
0
            }
2005
9
            if (*child_mapping.file_local_id == 0) {
2006
3
                key_mapping = &child_mapping;
2007
6
            } else if (*child_mapping.file_local_id == 1) {
2008
6
                value_mapping = &child_mapping;
2009
6
            }
2010
9
        }
2011
2012
6
        if (key_mapping != nullptr) {
2013
3
            RETURN_IF_ERROR(_materialize_present_child_mapping_column(
2014
3
                    *key_mapping, key_column, key_column->size(), &key_column,
2015
3
                    descendant_parent_null_map_ptr));
2016
3
        } else {
2017
3
            const auto* table_map =
2018
3
                    assert_cast<const DataTypeMap*>(remove_nullable(mapping.table_type).get());
2019
            // Value-only projection retains the physical key stream to preserve entry offsets;
2020
            // align it under the entry mask so NULL placeholders from hidden Map rows stay hidden.
2021
3
            RETURN_IF_ERROR(_align_column_nullability(&key_column, table_map->get_key_type(),
2022
3
                                                      descendant_parent_null_map_ptr));
2023
3
        }
2024
6
        if (value_mapping != nullptr) {
2025
6
            RETURN_IF_ERROR(_materialize_present_child_mapping_column(
2026
6
                    *value_mapping, value_column, value_column->size(), &value_column,
2027
6
                    descendant_parent_null_map_ptr));
2028
6
        } else {
2029
0
            const auto* table_map =
2030
0
                    assert_cast<const DataTypeMap*>(remove_nullable(mapping.table_type).get());
2031
            // A retained structural value stream follows the same hidden-entry invariant as keys.
2032
0
            RETURN_IF_ERROR(_align_column_nullability(&value_column, table_map->get_value_type(),
2033
0
                                                      descendant_parent_null_map_ptr));
2034
0
        }
2035
6
        auto offsets_column = file_map->get_offsets_ptr()->convert_to_full_column_if_const();
2036
6
        auto result = ColumnMap::create(IColumn::mutate(std::move(key_column)),
2037
6
                                        IColumn::mutate(std::move(value_column)),
2038
6
                                        IColumn::mutate(std::move(offsets_column)));
2039
6
        if (mapping.table_type->is_nullable()) {
2040
4
            auto null_map = ColumnUInt8::create();
2041
4
            auto& null_map_data = null_map->get_data();
2042
4
            null_map_data.resize(rows);
2043
4
            if (parent_null_map != nullptr) {
2044
4
                DORIS_CHECK(parent_null_map->size() == rows);
2045
4
                null_map_data.assign(parent_null_map->begin(), parent_null_map->end());
2046
4
            } else {
2047
0
                std::fill(null_map_data.begin(), null_map_data.end(), 0);
2048
0
            }
2049
4
            *column = ColumnNullable::create(std::move(result), std::move(null_map));
2050
4
        } else {
2051
2
            *column = std::move(result);
2052
2
        }
2053
6
        return Status::OK();
2054
6
    }
2055
2056
2.64k
    Status _open_mapping_expr_tree(const ColumnMapping& mapping, const RowDescriptor& row_desc) {
2057
2.64k
        if (mapping.projection != nullptr) {
2058
1.68k
            RETURN_IF_ERROR(mapping.projection->prepare(_runtime_state, row_desc));
2059
1.68k
            RETURN_IF_ERROR(mapping.projection->open(_runtime_state));
2060
1.68k
        }
2061
2.64k
        if (mapping.default_expr != nullptr) {
2062
17
            RETURN_IF_ERROR(mapping.default_expr->prepare(_runtime_state, row_desc));
2063
17
            RETURN_IF_ERROR(mapping.default_expr->open(_runtime_state));
2064
17
        }
2065
2.64k
        for (const auto& child_mapping : mapping.child_mappings) {
2066
929
            RETURN_IF_ERROR(_open_mapping_expr_tree(child_mapping, row_desc));
2067
929
        }
2068
2.64k
        return Status::OK();
2069
2.64k
    }
2070
2071
376
    Status _open_mapping_exprs() {
2072
376
        RowDescriptor row_desc;
2073
1.71k
        for (const auto& mapping : _data_reader.column_mapper->mappings()) {
2074
1.71k
            RETURN_IF_ERROR(_open_mapping_expr_tree(mapping, row_desc));
2075
1.71k
        }
2076
376
        return Status::OK();
2077
376
    }
2078
2079
    Status _build_file_aggregate_request(TPushAggOp::type agg_type,
2080
13
                                         FileAggregateRequest* request) const {
2081
13
        DORIS_CHECK(request != nullptr);
2082
13
        DORIS_CHECK(_supports_aggregate_pushdown(agg_type));
2083
13
        request->agg_type = agg_type;
2084
13
        request->columns.clear();
2085
13
        if (agg_type == TPushAggOp::type::COUNT) {
2086
9
            DORIS_CHECK(_push_down_count_columns.has_value());
2087
            // An empty explicit list is the semantic signal for COUNT(*). Do not inspect the
2088
            // mapping count: `SELECT COUNT(*) FROM t` may still project one nullable column because
2089
            // the planner keeps a placeholder slot. In a 10,000-row file where that arbitrary slot
2090
            // has 9,015 non-null values, passing the slot would ask Parquet/ORC metadata for
2091
            // COUNT(slot)=9,015 instead of the required row count 10,000.
2092
9
            if (!_push_down_count_columns->empty()) {
2093
4
                const auto& mapping = _push_down_count_mapping();
2094
4
                DORIS_CHECK(mapping.file_local_id.has_value());
2095
4
                FileAggregateRequest::Column column;
2096
4
                column.projection =
2097
4
                        LocalColumnIndex::top_level(LocalColumnId(*mapping.file_local_id));
2098
4
                request->columns.push_back(std::move(column));
2099
4
            }
2100
9
            return Status::OK();
2101
9
        }
2102
4
        request->columns.reserve(_data_reader.column_mapper->mappings().size());
2103
5
        for (const auto& mapping : _data_reader.column_mapper->mappings()) {
2104
5
            DORIS_CHECK(mapping.file_local_id.has_value());
2105
5
            FileAggregateRequest::Column column;
2106
5
            column.projection = LocalColumnIndex::top_level(LocalColumnId(*mapping.file_local_id));
2107
5
            if (!mapping.child_mappings.empty()) {
2108
1
                RETURN_IF_ERROR(build_aggregate_projection(mapping, &column.projection));
2109
1
            }
2110
5
            request->columns.push_back(std::move(column));
2111
5
        }
2112
4
        return Status::OK();
2113
4
    }
2114
2115
14
    const ColumnMapping& _push_down_count_mapping() const {
2116
14
        DORIS_CHECK(_push_down_count_columns.has_value());
2117
14
        DORIS_CHECK(_push_down_count_columns->size() == 1);
2118
14
        const auto mapping_it =
2119
14
                std::ranges::find(_data_reader.column_mapper->mappings(),
2120
14
                                  _push_down_count_columns->front(), &ColumnMapping::global_index);
2121
        // FileScannerV2 translates FE SlotIds through the same projected-column list used to build
2122
        // the mapper, so a missing mapping is an FE/BE contract violation rather than a fallback.
2123
14
        DORIS_CHECK(mapping_it != _data_reader.column_mapper->mappings().end());
2124
14
        return *mapping_it;
2125
14
    }
2126
2127
    Status _materialize_aggregate_pushdown_rows(TPushAggOp::type agg_type,
2128
                                                const FileAggregateResult& file_result,
2129
3
                                                Block* block) {
2130
3
        DORIS_CHECK(agg_type == TPushAggOp::type::MINMAX);
2131
        // MIN/MAX pushdown emits two rows, min first and max second, for each projected column.
2132
        // The upper MIN/MAX aggregate consumes those two rows to produce the final aggregate value.
2133
3
        DORIS_CHECK(file_result.columns.size() == _data_reader.column_mapper->mappings().size());
2134
3
        DORIS_CHECK(block->columns() == _data_reader.column_mapper->mappings().size());
2135
3
        Block file_block;
2136
3
        file_block.reserve(_data_reader.file_block_layout.size());
2137
4
        for (const auto& column : _data_reader.file_block_layout) {
2138
4
            file_block.insert({column.type->create_column(), column.type, column.name});
2139
4
        }
2140
7
        for (size_t column_idx = 0; column_idx < file_result.columns.size(); ++column_idx) {
2141
4
            const auto& result_column = file_result.columns[column_idx];
2142
4
            if (!result_column.has_min || !result_column.has_max) {
2143
0
                return Status::NotSupported("Missing min/max aggregate result for column {}",
2144
0
                                            _projected_columns[column_idx].name);
2145
0
            }
2146
4
            bool found_file_column = false;
2147
5
            for (size_t block_position = 0; block_position < _data_reader.file_block_layout.size();
2148
5
                 ++block_position) {
2149
5
                if (_data_reader.file_block_layout[block_position].file_column_id ==
2150
5
                    file_result.columns[column_idx].projection.column_id()) {
2151
4
                    found_file_column = true;
2152
4
                    auto column = file_block.get_by_position(block_position)
2153
4
                                          .type->create_column()
2154
4
                                          ->assert_mutable();
2155
4
                    RETURN_IF_ERROR(_insert_aggregate_projection_value(
2156
4
                            file_result.columns[column_idx].projection, result_column.min_value,
2157
4
                            column.get()));
2158
4
                    RETURN_IF_ERROR(_insert_aggregate_projection_value(
2159
4
                            file_result.columns[column_idx].projection, result_column.max_value,
2160
4
                            column.get()));
2161
4
                    file_block.replace_by_position(block_position, std::move(column));
2162
4
                    break;
2163
4
                }
2164
5
            }
2165
4
            DORIS_CHECK(found_file_column);
2166
4
        }
2167
7
        for (size_t column_idx = 0; column_idx < _data_reader.column_mapper->mappings().size();
2168
4
             ++column_idx) {
2169
4
            ColumnPtr table_column;
2170
4
            RETURN_IF_ERROR(_materialize_mapping_column(
2171
4
                    _data_reader.column_mapper->mappings()[column_idx], &file_block, 2,
2172
4
                    &table_column,
2173
4
                    column_idx + 1 == _data_reader.column_mapper->mappings().size()));
2174
4
            block->replace_by_position(column_idx, std::move(table_column));
2175
4
        }
2176
3
        return Status::OK();
2177
3
    }
2178
2179
    struct FileBlockColumn {
2180
        LocalColumnId file_column_id = LocalColumnId::invalid();
2181
        std::string name;
2182
        DataTypePtr type;
2183
    };
2184
2185
    struct DataReader {
2186
        std::unique_ptr<FileReader> reader;
2187
        std::unique_ptr<TableColumnMapper> column_mapper;
2188
        // Schema of the data file, also including virtual column (row position).
2189
        std::vector<ColumnDefinition> file_schema;
2190
        // Layout of the block returned by file reader, determined by column mapping and file
2191
        // schema. It is used for file reader to materialize columns into correct type and position.
2192
        std::vector<FileBlockColumn> file_block_layout;
2193
        Block block_template;
2194
    };
2195
    DataReader _data_reader;
2196
    // Latest immutable request queued to the physical reader. The file-block layout remains fixed
2197
    // for the split even while predicates are refreshed at a reader-defined granule boundary.
2198
    std::shared_ptr<FileScanRequest> _file_scan_request;
2199
    std::vector<ColumnDefinition> _projected_columns;
2200
    std::unique_ptr<ScanTask> _current_task;
2201
    std::optional<io::FileDescription> _current_file_description;
2202
    // Range-level compression has higher priority than scan-param compression. TVF/load can keep
2203
    // the logical format as CSV/TEXT while carrying the concrete compression such as GZ or LZO on
2204
    // each TFileRangeDesc, matching the old FileScanner reader contract.
2205
    TFileCompressType::type _current_range_compress_type = TFileCompressType::UNKNOWN;
2206
    std::optional<TUniqueId> _current_range_load_id;
2207
    TFileRangeDesc _current_file_range_desc;
2208
    std::shared_ptr<io::FileSystemProperties> _system_properties;
2209
    // partition key -> value
2210
    std::map<std::string, Field> _partition_values;
2211
    // Predicates built from scan conjuncts before file-level localization.
2212
    std::vector<TableFilter> _table_filters;
2213
    // Number of localized filters before the first unsafe conjunct in the original row-level
2214
    // order. This differs from scanning `_table_filters` for safety because slotless predicates are
2215
    // intentionally absent from that vector but must still act as ordering barriers.
2216
    size_t _constant_pruning_safe_filter_count = 0;
2217
    VExprContextSPtrs _conjuncts;
2218
    ReadProfile _profile;
2219
    // Parsed from row-position based delete files, including position delete and deletion vector.
2220
    DeleteRows* _delete_rows = nullptr;
2221
    DeletionVector* _deletion_vector = nullptr;
2222
    TFileScanRangeParams* _scan_params;
2223
    std::shared_ptr<io::IOContext> _io_ctx;
2224
    RuntimeState* _runtime_state;
2225
    RuntimeProfile* _scanner_profile;
2226
    const std::vector<SlotDescriptor*>* _file_slot_descs = nullptr;
2227
    FileFormat _format;
2228
    TPushAggOp::type _push_down_agg_type = TPushAggOp::type::NONE;
2229
    std::optional<std::vector<GlobalIndex>> _push_down_count_columns;
2230
    size_t _batch_size = 0;
2231
    uint64_t _initial_condition_cache_digest = 0;
2232
    uint64_t _condition_cache_digest = 0;
2233
    // True only when prepare_split() received a digest for the exact conjunct snapshot used by
2234
    // this split. Standalone callers that only supplied TableReadOptions::condition_cache_digest
2235
    // keep the conservative runtime-filter guard.
2236
    bool _condition_cache_digest_covers_current_split = false;
2237
    segment_v2::ConditionCache::ExternalCacheKey _condition_cache_key;
2238
    std::shared_ptr<std::vector<bool>> _condition_cache;
2239
    std::shared_ptr<ConditionCacheContext> _condition_cache_ctx;
2240
    int64_t _condition_cache_hit_count = 0;
2241
    bool _current_reader_reached_eof = false;
2242
    int64_t _remaining_table_level_count = -1;
2243
    int64_t _remaining_file_level_count = -1;
2244
    // True only after the active split selects a table-level row-count shortcut or successfully
2245
    // materializes COUNT rows from file metadata. FileScannerV2 uses this result, rather than the
2246
    // raw aggregate opcode, to keep adaptive batching enabled for normal row-scan fallbacks.
2247
    bool _current_split_uses_metadata_count = false;
2248
    // Snapshot supplied by FileScannerV2 for the active split. It gates every shortcut that emits
2249
    // irreversible aggregate rows, not only the table-level row-count shortcut in prepare_split().
2250
    bool _all_runtime_filters_applied_for_split = true;
2251
    std::optional<GlobalRowIdContext> _global_rowid_context;
2252
    bool _aggregate_pushdown_tried = false;
2253
    bool _current_split_pruned = false;
2254
    TableColumnMapperOptions _mapper_options;
2255
2256
private:
2257
    static const ColumnDefinition* _find_column_definition(
2258
1.78k
            const std::vector<ColumnDefinition>& schema, LocalColumnId column_id) {
2259
12.1k
        for (const auto& field : schema) {
2260
12.1k
            if (field.file_local_id() == column_id.value()) {
2261
1.74k
                return &field;
2262
1.74k
            }
2263
12.1k
        }
2264
41
        return nullptr;
2265
1.78k
    }
2266
2267
14
    static bool _can_push_down_minmax_for_mapping(const ColumnMapping& mapping) {
2268
14
        if (mapping.child_mappings.empty()) {
2269
            // Direct mappings use a slot-ref projection to materialize the file column. The
2270
            // projection does not transform ordering; casts and other conversions are already
2271
            // represented by a non-trivial mapping and must fall back to row scanning.
2272
11
            return mapping.is_trivial;
2273
11
        }
2274
3
        const auto primitive_type = remove_nullable(mapping.file_type)->get_primitive_type();
2275
3
        if (primitive_type != TYPE_STRUCT) {
2276
1
            return false;
2277
1
        }
2278
2
        size_t mapped_children = 0;
2279
2
        const ColumnMapping* mapped_child = nullptr;
2280
2
        for (const auto& child_mapping : mapping.child_mappings) {
2281
2
            if (!child_mapping.file_local_id.has_value()) {
2282
0
                continue;
2283
0
            }
2284
2
            ++mapped_children;
2285
2
            mapped_child = &child_mapping;
2286
2
        }
2287
2
        return mapped_children == 1 && mapped_child != nullptr &&
2288
2
               _can_push_down_minmax_for_mapping(*mapped_child);
2289
3
    }
2290
2291
    static Status build_aggregate_projection(const ColumnMapping& mapping,
2292
2
                                             LocalColumnIndex* projection) {
2293
2
        DORIS_CHECK(projection != nullptr);
2294
2
        DORIS_CHECK(mapping.file_local_id.has_value());
2295
2
        *projection = LocalColumnIndex::local(*mapping.file_local_id);
2296
2
        projection->children.clear();
2297
2
        projection->project_all_children = true;
2298
2
        if (mapping.child_mappings.empty()) {
2299
1
            return Status::OK();
2300
1
        }
2301
1
        projection->project_all_children = false;
2302
1
        for (const auto& child_mapping : mapping.child_mappings) {
2303
1
            if (!child_mapping.file_local_id.has_value()) {
2304
0
                continue;
2305
0
            }
2306
1
            LocalColumnIndex child_projection;
2307
1
            RETURN_IF_ERROR(build_aggregate_projection(child_mapping, &child_projection));
2308
1
            projection->children.push_back(std::move(child_projection));
2309
1
        }
2310
1
        DORIS_CHECK(projection->children.size() == 1);
2311
1
        return Status::OK();
2312
1
    }
2313
2314
    static Status _insert_aggregate_projection_value(const LocalColumnIndex& projection,
2315
20
                                                     const Field& value, IColumn* column) {
2316
20
        DORIS_CHECK(column != nullptr);
2317
20
        if (auto* nullable_column = check_and_get_column<ColumnNullable>(*column)) {
2318
10
            RETURN_IF_ERROR(_insert_aggregate_projection_value(
2319
10
                    projection, value, &nullable_column->get_nested_column()));
2320
10
            nullable_column->get_null_map_data().push_back(0);
2321
10
            return Status::OK();
2322
10
        }
2323
10
        if (projection.project_all_children || projection.children.empty()) {
2324
8
            column->insert(value);
2325
8
            return Status::OK();
2326
8
        }
2327
2
        auto* struct_column = assert_cast<ColumnStruct*>(column);
2328
2
        DORIS_CHECK(projection.children.size() == 1);
2329
2
        const auto& child_projection = projection.children[0];
2330
2
        DORIS_CHECK(struct_column->get_columns().size() == 1);
2331
2
        RETURN_IF_ERROR(_insert_aggregate_projection_value(child_projection, value,
2332
2
                                                           &struct_column->get_column(0)));
2333
2
        return Status::OK();
2334
2
    }
2335
2336
    // Parse a DV into its compressed bitmap. Position delete files continue to use _delete_rows.
2337
    Status _parse_delete_predicates(const SplitReadOptions& options);
2338
};
2339
2340
} // namespace doris::format