Coverage Report

Created: 2026-07-31 16:03

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