Coverage Report

Created: 2026-08-06 12:11

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