Coverage Report

Created: 2026-07-13 00:31

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
93
    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
    std::optional<ColumnDefinition> schema_column = std::nullopt;
98
    size_t next_file_column_idx = 0;
99
};
100
101
struct ReadProfile {
102
    RuntimeProfile::Counter* num_delete_files = nullptr;
103
    RuntimeProfile::Counter* num_delete_rows = nullptr;
104
    RuntimeProfile::Counter* parse_delete_file_time = nullptr;
105
    RuntimeProfile::Counter* decoded_dv_cache_hit_count = nullptr;
106
    RuntimeProfile::Counter* decoded_dv_cache_miss_count = nullptr;
107
    RuntimeProfile::Counter* dv_file_cache_hit_count = nullptr;
108
    RuntimeProfile::Counter* dv_file_cache_miss_count = nullptr;
109
    RuntimeProfile::Counter* dv_file_cache_peer_read_count = nullptr;
110
    RuntimeProfile::Counter* exec_timer = nullptr;
111
    RuntimeProfile::Counter* prepare_split_timer = nullptr;
112
    RuntimeProfile::Counter* finalize_timer = nullptr;
113
    RuntimeProfile::Counter* create_reader_timer = nullptr;
114
    RuntimeProfile::Counter* pushdown_agg_timer = nullptr;
115
    RuntimeProfile::Counter* open_reader_timer = nullptr;
116
    RuntimeProfile::Counter* runtime_filter_partition_prune_timer = nullptr;
117
    RuntimeProfile::Counter* runtime_filter_partition_pruned_range_counter = nullptr;
118
};
119
120
struct TableReadOptions {
121
    // Columns need to be read from file and output by table reader. They are all in table/global
122
    // schema semantics.
123
    const std::vector<ColumnDefinition> projected_columns;
124
    // All complex conjuncts from scan operator
125
    const VExprContextSPtrs conjuncts;
126
    // File format of the underlying data files, needed for reader initialization and reader-level
127
    // filter pushdown.
128
    const FileFormat format;
129
    TFileScanRangeParams* scan_params;
130
    std::shared_ptr<io::IOContext> io_ctx;
131
    RuntimeState* runtime_state;
132
    RuntimeProfile* scanner_profile;
133
    // File formats without complete self-describing metadata, such as CSV, Text, and JSON, need
134
    // the FE-planned physical file slots to build their file-local schema and deserialize values.
135
    const std::vector<SlotDescriptor*>* file_slot_descs = nullptr;
136
    // Push-down aggregate type.
137
    const TPushAggOp::type push_down_agg_type = TPushAggOp::type::NONE;
138
    // Digest of stable pushed-down predicates. A zero digest disables condition cache.
139
    uint64_t condition_cache_digest = 0;
140
};
141
142
struct SplitReadOptions {
143
    // 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.
144
    std::map<std::string, Field> partition_values;
145
    // Latest scanner conjuncts rewritten to table/global column indices. Runtime filters may
146
    // arrive after TableReader::init(), so scanner-driven splits replace the initial snapshot.
147
    // nullopt preserves the initial snapshot for standalone TableReader callers.
148
    std::optional<VExprContextSPtrs> conjuncts;
149
    // Independent clones used for partition pruning because evaluation prepares and opens them
150
    // against a synthetic partition block before the file reader opens its row-level conjuncts.
151
    VExprContextSPtrs partition_prune_conjuncts;
152
    // Table-level COUNT may emit one metadata-derived batch and resume on a later scheduler turn.
153
    // It is safe only after every runtime filter assigned to the scanner has arrived; otherwise a
154
    // filter could arrive after synthetic rows have already been returned and those rows cannot be
155
    // retracted. Standalone TableReader callers have no scanner runtime-filter lifecycle.
156
    bool all_runtime_filters_applied = true;
157
    ShardedKVCache* cache;
158
    TFileRangeDesc current_range;
159
    FileFormat current_split_format = FileFormat::PARQUET;
160
    std::optional<GlobalRowIdContext> global_rowid_context;
161
};
162
163
// Base class for table-level readers.
164
// This layer owns common table-level orchestration, such as split iteration, dynamic partition
165
// pruning, delete handling and conversion from file-local blocks to table-schema blocks. Concrete
166
// table-format readers only need to provide format-specific hooks for opening readers and parsing
167
// split metadata.
168
class TableReader {
169
public:
170
127
    virtual ~TableReader() = default;
171
172
    // Initialize common runtime options for the table reader. Subclasses may call this from their
173
    // own init(options); table-format schema and split metadata are provided later per split.
174
    virtual Status init(TableReadOptions&& options);
175
176
    // FileScannerV2 adjusts this before each get_block() using an adaptive bytes-per-row estimate.
177
    // Store it here as well as forwarding to the current reader so newly opened split readers start
178
    // with the latest predicted batch size.
179
0
    void set_batch_size(size_t batch_size) {
180
0
        _batch_size = std::max<size_t>(1, batch_size);
181
0
        if (_data_reader.reader != nullptr) {
182
0
            _data_reader.reader->set_batch_size(_batch_size);
183
0
        }
184
0
    }
185
186
    // Prepare for reading a new split/task.
187
    // 1. Pass a new split/task to reader, which will be used in subsequent open_reader() to initialize the underlying file reader.
188
    // 2. Parse delete predicates from split/task information, which will be used for later dynamic filtering and delete handling.
189
    virtual Status prepare_split(const SplitReadOptions& options);
190
191
26
    virtual bool current_split_pruned() const { return _current_split_pruned; }
192
193
    // Discard the active split after the caller decides an error is ignorable, for example a
194
    // stale external-table file listing that returns NOT_FOUND. The next prepare_split() must start
195
    // with no concrete reader or split-local state left from the failed split.
196
1
    virtual Status abort_split() {
197
1
        if (_data_reader.reader != nullptr) {
198
1
            RETURN_IF_ERROR(close_current_reader());
199
1
        } else {
200
0
            _current_task.reset();
201
0
            _current_file_description.reset();
202
0
        }
203
1
        _delete_rows = nullptr;
204
1
        _remaining_table_level_count = -1;
205
1
        _current_split_pruned = false;
206
1
        return Status::OK();
207
1
    }
208
209
    // Public entry point for reading a table-schema block. The base class opens the current reader,
210
    // advances across EOF, and closes exhausted readers. Subclasses provide protected hooks for
211
    // table-format-specific behavior.
212
93
    virtual Status get_block(Block* block, bool* eos) {
213
93
        SCOPED_TIMER(_profile.exec_timer);
214
93
        DORIS_CHECK(block->columns() == _projected_columns.size());
215
93
        block->clear_column_data(_projected_columns.size());
216
217
105
        while (true) {
218
105
            if (*eos) {
219
0
                return Status::OK();
220
0
            }
221
105
            if (_io_ctx != nullptr && _io_ctx->should_stop) {
222
0
                *eos = true;
223
0
                return Status::OK();
224
0
            }
225
105
            if (!_data_reader.reader) {
226
93
                if (_is_table_level_count_active()) {
227
6
                    RETURN_IF_ERROR(_read_table_level_count(block, eos));
228
6
                    return Status::OK();
229
6
                }
230
87
                RETURN_IF_ERROR(create_next_reader(eos));
231
86
                if (!_data_reader.reader) {
232
14
                    DCHECK(*eos);
233
14
                    return Status::OK();
234
14
                }
235
86
            }
236
237
            // Materialize a reduced row set for upper aggregate operators when aggregate
238
            // pushdown can be applied. This is not the final aggregate result: COUNT emits
239
            // `count` default rows for the upper COUNT(*), and MIN/MAX emits two rows containing
240
            // file-level min/max values for the upper MIN/MAX.
241
84
            if (!_aggregate_pushdown_tried) {
242
72
                SCOPED_TIMER(_profile.pushdown_agg_timer);
243
72
                bool pushed_down = false;
244
72
                const auto status = _try_materialize_aggregate_pushdown_rows(block, &pushed_down);
245
72
                if (!status.ok()) {
246
1
                    if (_io_ctx != nullptr && _io_ctx->should_stop &&
247
1
                        status.is<ErrorCode::END_OF_FILE>()) {
248
1
                        *eos = true;
249
1
                        return Status::OK();
250
1
                    }
251
0
                    return status;
252
1
                }
253
71
                if (pushed_down) {
254
7
                    return Status::OK();
255
7
                }
256
71
            }
257
258
76
            bool current_eof = false;
259
76
            _data_reader.block_template.clear_column_data(
260
76
                    cast_set<int64_t>(_data_reader.file_block_layout.size()));
261
76
            size_t current_rows = 0;
262
76
            RETURN_IF_ERROR(_data_reader.reader->get_block(&_data_reader.block_template,
263
76
                                                           &current_rows, &current_eof));
264
76
            if (current_rows == 0) {
265
12
                if (current_eof) {
266
12
                    _current_reader_reached_eof = true;
267
12
                    RETURN_IF_ERROR(close_current_reader());
268
12
                }
269
12
                continue;
270
12
            }
271
76
            DCHECK_EQ(_data_reader.block_template.columns(), _data_reader.file_block_layout.size())
272
0
                    << _data_reader.block_template.dump_structure();
273
64
#ifndef NDEBUG
274
64
            RETURN_IF_ERROR(_check_file_block_columns("after file reader get_block", current_rows));
275
64
#endif
276
64
            DORIS_CHECK(block->columns() == _data_reader.column_mapper->mappings().size());
277
64
            RETURN_IF_ERROR(finalize_chunk(block, current_rows));
278
64
#ifndef NDEBUG
279
64
            RETURN_IF_ERROR(
280
64
                    _check_table_block_columns("after finalize_chunk", block, current_rows));
281
64
#endif
282
64
            if (current_eof) {
283
10
                _current_reader_reached_eof = true;
284
10
                RETURN_IF_ERROR(close_current_reader());
285
10
            }
286
64
            return Status::OK();
287
64
        }
288
93
    }
289
290
    // Close the table reader and the currently active file reader. Subclasses that hold additional
291
    // table-format resources should override this and call TableReader::close() first.
292
78
    virtual Status close() {
293
78
        if (_data_reader.reader) {
294
42
            RETURN_IF_ERROR(close_current_reader());
295
42
        }
296
78
        _current_task.reset();
297
78
        _current_file_description.reset();
298
78
        _remaining_table_level_count = -1;
299
78
        return Status::OK();
300
78
    }
301
302
3
    int64_t condition_cache_hit_count() const { return _condition_cache_hit_count; }
303
304
    virtual std::string debug_string() const;
305
306
    virtual Status annotate_projected_column(const TFileScanSlotInfo& slot_info,
307
                                             ProjectedColumnBuildContext* context,
308
                                             ColumnDefinition* column) const;
309
310
0
    virtual Status validate_projected_columns(const ProjectedColumnBuildContext& context) const {
311
0
        (void)context;
312
0
        return Status::OK();
313
0
    }
314
315
protected:
316
    // Parse deletion vector information from table format specific file description.
317
    virtual Status _parse_deletion_vector_file(const TTableFormatFileDesc& t_desc,
318
59
                                               DeleteFileDesc* desc, bool* has_delete_file) {
319
59
        *has_delete_file = false;
320
59
        return Status::OK();
321
59
    }
322
323
    // Advance to the next reader. This closes the current reader first and then opens the next
324
    // concrete reader. Subclasses should not duplicate this loop.
325
    Status create_next_reader(bool* eos);
326
    virtual Status create_file_reader(std::unique_ptr<FileReader>* reader);
327
52
    virtual TableColumnMappingMode mapping_mode() const { return TableColumnMappingMode::BY_NAME; }
328
72
    virtual Status annotate_file_schema(std::vector<ColumnDefinition>* file_schema) {
329
72
        DORIS_CHECK(file_schema != nullptr);
330
72
        return Status::OK();
331
72
    }
332
333
    // Open the concrete reader for the current split/task and build the file-local scan request.
334
73
    virtual Status open_reader() {
335
73
        SCOPED_TIMER(_profile.open_reader_timer);
336
        // 1. Get file schema and create column mapping.
337
73
        std::vector<ColumnDefinition> file_schema;
338
73
        RETURN_IF_ERROR(_data_reader.reader->get_schema(&file_schema));
339
        // For Paimon/Hudi, FE can provide field ids through `history_schema_info`. Annotate the
340
        // file schema before column mapping when the table format maps columns by field id.
341
73
        RETURN_IF_ERROR(annotate_file_schema(&file_schema));
342
73
        _data_reader.file_schema = file_schema;
343
73
        _mapper_options.mode = mapping_mode();
344
345
73
        _data_reader.column_mapper = _data_reader.reader->create_column_mapper(_mapper_options);
346
73
        DORIS_CHECK(_data_reader.column_mapper != nullptr);
347
73
        RETURN_IF_ERROR(_data_reader.column_mapper->create_mapping(_projected_columns,
348
73
                                                                   _partition_values, file_schema));
349
73
        DORIS_CHECK(_data_reader.column_mapper->mappings().size() == _projected_columns.size());
350
351
        // 2. Build table filters based on conjuncts and column predicates.
352
73
        RETURN_IF_ERROR(_build_table_filters_from_conjuncts());
353
354
        // 3. Create file scan request based on column mapping and table filters, then open file
355
        // reader with the request. File scan request carries row-level expression filters and
356
        // file-level pruning hints. Only expression filters decide returned rows.
357
73
        auto file_request = std::make_shared<FileScanRequest>();
358
73
        RETURN_IF_ERROR(_data_reader.column_mapper->create_scan_request(
359
73
                _table_filters, _projected_columns, file_request.get(), _runtime_state));
360
73
        bool constant_filter_pruned_split = false;
361
73
        RETURN_IF_ERROR(_evaluate_constant_filters(&constant_filter_pruned_split));
362
73
        if (constant_filter_pruned_split) {
363
1
            RETURN_IF_ERROR(close_current_reader());
364
1
            return Status::OK();
365
1
        }
366
72
        RETURN_IF_ERROR(customize_file_scan_request(file_request.get()));
367
72
        RETURN_IF_ERROR(_open_local_filter_exprs(*file_request));
368
72
        _data_reader.file_block_layout.clear();
369
72
        _data_reader.block_template.clear();
370
72
        _data_reader.file_block_layout.resize(file_request->local_positions.size());
371
372
        // 4. Build file block layout from file schema and column mapping. The layout describes
373
        // the block returned by file reader before table-column materialization.
374
103
        for (const auto& [file_column_id, block_position] : file_request->local_positions) {
375
103
            DORIS_CHECK(block_position.value() < _data_reader.file_block_layout.size());
376
103
            const auto* field = _find_column_definition(_data_reader.file_schema, file_column_id);
377
103
            DORIS_CHECK(field != nullptr);
378
379
103
            ColumnDefinition projected_field;
380
103
            {
381
103
                auto it = std::find_if(
382
103
                        file_request->non_predicate_columns.begin(),
383
103
                        file_request->non_predicate_columns.end(),
384
117
                        [&](const LocalColumnIndex& p) { return p.column_id() == file_column_id; });
385
103
                if (it != file_request->non_predicate_columns.end()) {
386
68
                    RETURN_IF_ERROR(project_column_definition(*field, *it, &projected_field));
387
68
                }
388
103
            }
389
103
            {
390
103
                auto it = std::find_if(
391
103
                        file_request->predicate_columns.begin(),
392
103
                        file_request->predicate_columns.end(),
393
103
                        [&](const LocalColumnIndex& p) { return p.column_id() == file_column_id; });
394
103
                if (it != file_request->predicate_columns.end()) {
395
35
                    RETURN_IF_ERROR(project_column_definition(*field, *it, &projected_field));
396
35
                }
397
103
            }
398
103
            _data_reader.file_block_layout[block_position.value()] = {
399
103
                    .file_column_id = file_column_id,
400
103
                    .name = projected_field.name,
401
103
                    .type = projected_field.type,
402
103
            };
403
103
            DORIS_CHECK(_data_reader.file_block_layout[block_position.value()].type != nullptr);
404
103
        }
405
406
        // 5. Prepare block template from file block layout. The block template stores the block
407
        // returned by file reader before table-column materialization.
408
72
        _data_reader.block_template.reserve(_data_reader.file_block_layout.size());
409
103
        for (const auto& column : _data_reader.file_block_layout) {
410
103
            _data_reader.block_template.insert(
411
103
                    {column.type->create_column(), column.type, column.name});
412
103
        }
413
72
        if (VLOG_DEBUG_IS_ON) {
414
0
            VLOG_DEBUG << "TableReader debug: " << debug_string();
415
0
        }
416
72
        RETURN_IF_ERROR(_open_mapping_exprs());
417
72
        RETURN_IF_ERROR(_data_reader.reader->open(file_request));
418
72
        RETURN_IF_ERROR(_init_reader_condition_cache(*file_request));
419
72
        return Status::OK();
420
72
    }
421
422
    Status _build_table_filters_from_conjuncts();
423
    Status _evaluate_partition_prune_conjuncts(const VExprContextSPtrs& conjuncts,
424
                                               bool* can_filter_all);
425
    Status _build_partition_prune_block(Block* block) const;
426
    Status _open_local_filter_exprs(const FileScanRequest& file_request);
427
    Status _init_reader_condition_cache(const FileScanRequest& file_request);
428
    void _finalize_reader_condition_cache();
429
    bool _should_enable_condition_cache(const FileScanRequest& file_request) const;
430
431
73
    Status _evaluate_constant_filters(bool* can_filter_all) {
432
73
        DORIS_CHECK(can_filter_all != nullptr);
433
73
        *can_filter_all = false;
434
73
        for (const auto& table_filter : _table_filters) {
435
27
            if (table_filter.conjunct == nullptr ||
436
                // RuntimeFilterExpr does not implement execute_column_impl(); it is evaluated by
437
                // the row-level filter path through execute_filter(). Constant split pruning uses
438
                // VExprContext::execute() on a one-row synthetic block, so runtime filters must not
439
                // be pre-executed here even when their referenced slot maps to a constant value.
440
27
                table_filter.conjunct->root()->is_rf_wrapper() ||
441
27
                !_table_filter_has_only_constant_entries(table_filter)) {
442
25
                continue;
443
25
            }
444
2
            Block eval_block;
445
2
            RETURN_IF_ERROR(_build_constant_filter_block(table_filter, &eval_block));
446
2
            RowDescriptor row_desc;
447
2
            RETURN_IF_ERROR(table_filter.conjunct->prepare(_runtime_state, row_desc));
448
2
            RETURN_IF_ERROR(table_filter.conjunct->open(_runtime_state));
449
2
            int result_column_id = -1;
450
2
            RETURN_IF_ERROR(table_filter.conjunct->execute(&eval_block, &result_column_id));
451
2
            DORIS_CHECK(result_column_id >= 0);
452
2
            if (_filter_result_filters_all(eval_block.get_by_position(result_column_id).column)) {
453
1
                *can_filter_all = true;
454
1
                return Status::OK();
455
1
            }
456
2
        }
457
72
        return Status::OK();
458
73
    }
459
460
23
    bool _table_filter_has_only_constant_entries(const TableFilter& table_filter) const {
461
23
        const auto& filter_entries = _data_reader.column_mapper->filter_entries();
462
23
        for (const auto global_index : table_filter.global_indices) {
463
23
            const auto entry_it = filter_entries.find(global_index);
464
23
            if (entry_it == filter_entries.end() || !entry_it->second.is_constant()) {
465
21
                return false;
466
21
            }
467
23
        }
468
2
        return !table_filter.global_indices.empty();
469
23
    }
470
471
2
    Status _build_constant_filter_block(const TableFilter& table_filter, Block* eval_block) {
472
2
        DORIS_CHECK(eval_block != nullptr);
473
2
        eval_block->clear();
474
2
        const auto& mappings = _data_reader.column_mapper->mappings();
475
2
        const auto& filter_entries = _data_reader.column_mapper->filter_entries();
476
2
        DORIS_CHECK(mappings.size() == _projected_columns.size());
477
4
        for (size_t column_idx = 0; column_idx < mappings.size(); ++column_idx) {
478
2
            const auto global_index = GlobalIndex(column_idx);
479
2
            const auto& mapping = mappings[column_idx];
480
2
            const auto entry_it = filter_entries.find(global_index);
481
2
            const bool referenced_by_filter =
482
2
                    std::find(table_filter.global_indices.begin(),
483
2
                              table_filter.global_indices.end(),
484
2
                              global_index) != table_filter.global_indices.end();
485
2
            if (referenced_by_filter && entry_it != filter_entries.end() &&
486
2
                entry_it->second.is_constant()) {
487
2
                ColumnPtr constant_column;
488
2
                RETURN_IF_ERROR(_materialize_constant_filter_column(
489
2
                        entry_it->second.constant_index(), &constant_column));
490
2
                eval_block->insert({std::move(constant_column), mapping.table_type,
491
2
                                    mapping.table_column_name});
492
2
            } else {
493
0
                eval_block->insert({mapping.table_type->create_column_const_with_default_value(1),
494
0
                                    mapping.table_type, mapping.table_column_name});
495
0
            }
496
2
        }
497
2
        return Status::OK();
498
2
    }
499
500
2
    Status _materialize_constant_filter_column(ConstantIndex constant_index, ColumnPtr* column) {
501
2
        DORIS_CHECK(column != nullptr);
502
2
        const auto& constant_entry = _data_reader.column_mapper->constant_map().get(constant_index);
503
2
        DORIS_CHECK(constant_entry.expr != nullptr);
504
2
        DORIS_CHECK(constant_entry.type != nullptr);
505
2
        RowDescriptor row_desc;
506
2
        RETURN_IF_ERROR(constant_entry.expr->prepare(_runtime_state, row_desc));
507
2
        RETURN_IF_ERROR(constant_entry.expr->open(_runtime_state));
508
2
        Block eval_block;
509
2
        eval_block.insert({constant_entry.type->create_column_const_with_default_value(1),
510
2
                           constant_entry.type, "__table_reader_constant_filter"});
511
2
        int result_column_id = -1;
512
2
        RETURN_IF_ERROR(constant_entry.expr->execute(&eval_block, &result_column_id));
513
2
        DORIS_CHECK(result_column_id >= 0);
514
2
        *column = eval_block.get_by_position(result_column_id).column;
515
2
        DORIS_CHECK((*column)->size() == 1);
516
2
        return Status::OK();
517
2
    }
518
519
2
    static bool _filter_result_filters_all(const ColumnPtr& filter_column) {
520
2
        DORIS_CHECK(filter_column.get() != nullptr);
521
2
        DORIS_CHECK(filter_column->size() == 1);
522
2
        return !filter_column->get_bool(0);
523
2
    }
524
525
73
    virtual Status customize_file_scan_request(FileScanRequest* file_request) {
526
73
        return _append_delete_predicate(file_request);
527
73
    }
528
529
210
    bool _is_table_level_count_active() const { return _remaining_table_level_count >= 0; }
530
531
7
    Status _materialize_count_rows(size_t rows, Block* block) const {
532
7
        DORIS_CHECK(block != nullptr);
533
7
        DORIS_CHECK(block->columns() > 0 || rows == 0);
534
14
        for (size_t column_idx = 0; column_idx < block->columns(); ++column_idx) {
535
7
            auto column = block->get_by_position(column_idx).type->create_column();
536
7
            column->resize(rows);
537
7
            block->replace_by_position(column_idx, std::move(column));
538
7
        }
539
7
        return Status::OK();
540
7
    }
541
542
6
    Status _read_table_level_count(Block* block, bool* eos) {
543
6
        DORIS_CHECK(block != nullptr);
544
6
        DORIS_CHECK(eos != nullptr);
545
6
        DORIS_CHECK(_push_down_agg_type == TPushAggOp::type::COUNT);
546
6
        DORIS_CHECK(_remaining_table_level_count >= 0);
547
6
        if (_remaining_table_level_count == 0) {
548
2
            _remaining_table_level_count = -1;
549
2
            _current_task.reset();
550
2
            *eos = true;
551
2
            return Status::OK();
552
2
        }
553
554
4
        const int64_t batch_size = _runtime_state == nullptr
555
4
                                           ? _remaining_table_level_count
556
4
                                           : static_cast<int64_t>(_runtime_state->batch_size());
557
4
        const auto rows = std::min(_remaining_table_level_count, batch_size);
558
4
        RETURN_IF_ERROR(_materialize_count_rows(cast_set<size_t>(rows), block));
559
4
        _remaining_table_level_count -= rows;
560
4
        *eos = false;
561
4
        return Status::OK();
562
4
    }
563
564
    void _append_file_scan_column(FileScanRequest* request, LocalColumnId column_id,
565
25
                                  std::vector<LocalColumnIndex>* scan_columns) {
566
25
        DORIS_CHECK(request != nullptr);
567
25
        DORIS_CHECK(scan_columns != nullptr);
568
25
        FileScanRequestBuilder builder(request);
569
25
        Status status;
570
25
        if (scan_columns == &request->predicate_columns) {
571
14
            status = builder.add_predicate_column(column_id);
572
14
        } else {
573
11
            DORIS_CHECK(scan_columns == &request->non_predicate_columns);
574
11
            status = builder.add_non_predicate_column(column_id);
575
11
        }
576
25
        DORIS_CHECK(status.ok()) << status.to_string();
577
25
        if (column_id == LocalColumnId(ROW_POSITION_COLUMN_ID) &&
578
25
            _find_column_definition(_data_reader.file_schema, column_id) == nullptr) {
579
18
            _data_reader.file_schema.push_back(row_position_column_definition());
580
18
        }
581
25
    }
582
583
    // 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.
584
73
    Status _append_delete_predicate(FileScanRequest* request) {
585
73
        DORIS_CHECK(request != nullptr);
586
73
        if ((_delete_rows == nullptr || _delete_rows->empty()) &&
587
73
            (_deletion_vector == nullptr || _deletion_vector->isEmpty())) {
588
62
            return Status::OK();
589
62
        }
590
11
        const auto row_position_column_id = LocalColumnId(ROW_POSITION_COLUMN_ID);
591
11
        _append_file_scan_column(request, row_position_column_id, &request->predicate_columns);
592
593
11
        const auto block_position = request->local_positions.at(row_position_column_id);
594
11
        auto append_predicate = [&](auto& deleted_rows) {
595
11
            auto delete_predicate = std::make_shared<DeletePredicate>(deleted_rows);
596
11
            delete_predicate->add_child(VSlotRef::create_shared(
597
11
                    cast_set<int>(block_position.value()), cast_set<int>(block_position.value()),
598
11
                    -1, std::make_shared<DataTypeInt64>(), ROW_POSITION_COLUMN_NAME));
599
11
            request->delete_conjuncts.push_back(
600
11
                    VExprContext::create_shared(std::move(delete_predicate)));
601
11
        };
_ZZN5doris6format11TableReader24_append_delete_predicateEPNS0_15FileScanRequestEENKUlRT_E_clISt6vectorIlSaIlEEEEDaS5_
Line
Count
Source
594
7
        auto append_predicate = [&](auto& deleted_rows) {
595
7
            auto delete_predicate = std::make_shared<DeletePredicate>(deleted_rows);
596
7
            delete_predicate->add_child(VSlotRef::create_shared(
597
7
                    cast_set<int>(block_position.value()), cast_set<int>(block_position.value()),
598
7
                    -1, std::make_shared<DataTypeInt64>(), ROW_POSITION_COLUMN_NAME));
599
7
            request->delete_conjuncts.push_back(
600
7
                    VExprContext::create_shared(std::move(delete_predicate)));
601
7
        };
_ZZN5doris6format11TableReader24_append_delete_predicateEPNS0_15FileScanRequestEENKUlRT_E_clIN7roaring12Roaring64MapEEEDaS5_
Line
Count
Source
594
4
        auto append_predicate = [&](auto& deleted_rows) {
595
4
            auto delete_predicate = std::make_shared<DeletePredicate>(deleted_rows);
596
4
            delete_predicate->add_child(VSlotRef::create_shared(
597
4
                    cast_set<int>(block_position.value()), cast_set<int>(block_position.value()),
598
4
                    -1, std::make_shared<DataTypeInt64>(), ROW_POSITION_COLUMN_NAME));
599
4
            request->delete_conjuncts.push_back(
600
4
                    VExprContext::create_shared(std::move(delete_predicate)));
601
4
        };
602
11
        if (_delete_rows != nullptr && !_delete_rows->empty()) {
603
7
            append_predicate(*_delete_rows);
604
7
        }
605
11
        if (_deletion_vector != nullptr && !_deletion_vector->isEmpty()) {
606
4
            append_predicate(*_deletion_vector);
607
4
        }
608
11
        return Status::OK();
609
73
    }
610
611
    // Close the current concrete reader. This hook is called by both create_next_reader() and
612
    // close(), so it should remain idempotent.
613
73
    virtual Status close_current_reader() {
614
73
        _finalize_reader_condition_cache();
615
73
        RETURN_IF_ERROR(_data_reader.reader->close());
616
73
        _data_reader.reader.reset();
617
73
        if (_data_reader.column_mapper != nullptr) {
618
72
            _data_reader.column_mapper->clear();
619
72
            _data_reader.column_mapper.reset();
620
72
        }
621
73
        _table_filters.clear();
622
73
        _data_reader.file_schema.clear();
623
73
        _data_reader.file_block_layout.clear();
624
73
        _data_reader.block_template.clear();
625
73
        _current_task.reset();
626
73
        _current_file_description.reset();
627
73
        _current_reader_reached_eof = false;
628
73
        return Status::OK();
629
73
    }
630
631
0
    void _record_scan_rows(size_t rows) {
632
0
        if (_io_ctx != nullptr && _io_ctx->file_reader_stats != nullptr) {
633
0
            _io_ctx->file_reader_stats->read_rows += rows;
634
0
        }
635
0
    }
636
637
    // Finalize file-local block to table/global schema block.
638
64
    Status finalize_chunk(Block* block, const size_t rows) {
639
64
        SCOPED_TIMER(_profile.finalize_timer);
640
64
        size_t idx = 0;
641
95
        for (const auto& mapping : _data_reader.column_mapper->mappings()) {
642
95
            ColumnPtr column;
643
95
            RETURN_IF_ERROR(_materialize_mapping_column(mapping, &_data_reader.block_template, rows,
644
95
                                                        &column));
645
95
            block->replace_by_position(idx, IColumn::mutate(std::move(column)));
646
95
            idx++;
647
95
        }
648
64
        RETURN_IF_ERROR(materialize_virtual_columns(block));
649
        // Enforce CHAR/VARCHAR length declared by the table schema after all file-to-table
650
        // materialization has finished.
651
64
        RETURN_IF_ERROR(_truncate_char_or_varchar_columns(block));
652
64
        return Status::OK();
653
64
    }
654
655
    // Materialize virtual columns in the table block, such as Iceberg _row_id and
656
    // _last_updated_sequence_number. This runs after normal column materialization so finalize
657
    // expressions can reference those virtual columns.
658
44
    virtual Status materialize_virtual_columns(Block* table_block) { return Status::OK(); }
659
660
#ifndef NDEBUG
661
64
    Status _check_file_block_columns(std::string_view stage, size_t rows) {
662
64
        DORIS_CHECK(_data_reader.block_template.columns() == _data_reader.file_block_layout.size());
663
158
        for (size_t idx = 0; idx < _data_reader.block_template.columns(); ++idx) {
664
94
            const auto& file_block_column = _data_reader.file_block_layout[idx];
665
94
            const auto& column_with_type = _data_reader.block_template.get_by_position(idx);
666
94
            const auto* column = column_with_type.column.get();
667
94
            try {
668
94
                if (column == nullptr) {
669
0
                    auto st = Status::InternalError(
670
0
                            "Invalid file block column {} at {}: file_column_id={}, name='{}', "
671
0
                            "type={}, column=null, expected_rows={}, reader={}",
672
0
                            idx, stage, file_block_column.file_column_id.value(),
673
0
                            file_block_column.name,
674
0
                            file_block_column.type == nullptr ? "null"
675
0
                                                              : file_block_column.type->get_name(),
676
0
                            rows, debug_string());
677
0
                    LOG(WARNING) << st;
678
0
                    return st;
679
0
                }
680
94
                column->sanity_check();
681
94
                auto st = column_with_type.check_type_and_column_match();
682
94
                if (!st.ok()) {
683
0
                    auto contextual_status = Status::InternalError(
684
0
                            "Invalid file block column {} at {}: file_column_id={}, name='{}', "
685
0
                            "type={}, column={}, column_size={}, expected_rows={}, error={}, "
686
0
                            "reader={}",
687
0
                            idx, stage, file_block_column.file_column_id.value(),
688
0
                            file_block_column.name,
689
0
                            file_block_column.type == nullptr ? "null"
690
0
                                                              : file_block_column.type->get_name(),
691
0
                            column->get_name(), column->size(), rows, st.to_string(),
692
0
                            debug_string());
693
0
                    LOG(WARNING) << contextual_status;
694
0
                    return contextual_status;
695
0
                }
696
94
            } catch (const Exception& e) {
697
0
                auto st = Status::InternalError(
698
0
                        "Invalid file block column {} at {}: file_column_id={}, name='{}', "
699
0
                        "type={}, column={}, column_size={}, expected_rows={}, error={}, "
700
0
                        "reader={}",
701
0
                        idx, stage, file_block_column.file_column_id.value(),
702
0
                        file_block_column.name,
703
0
                        file_block_column.type == nullptr ? "null"
704
0
                                                          : file_block_column.type->get_name(),
705
0
                        column == nullptr ? "null" : column->get_name(),
706
0
                        column == nullptr ? 0 : column->size(), rows, e.to_string(),
707
0
                        debug_string());
708
0
                LOG(WARNING) << st;
709
0
                return st;
710
0
            } catch (const std::exception& e) {
711
0
                auto st = Status::InternalError(
712
0
                        "Invalid file block column {} at {}: file_column_id={}, name='{}', "
713
0
                        "type={}, column={}, column_size={}, expected_rows={}, error={}, "
714
0
                        "reader={}",
715
0
                        idx, stage, file_block_column.file_column_id.value(),
716
0
                        file_block_column.name,
717
0
                        file_block_column.type == nullptr ? "null"
718
0
                                                          : file_block_column.type->get_name(),
719
0
                        column == nullptr ? "null" : column->get_name(),
720
0
                        column == nullptr ? 0 : column->size(), rows, e.what(), debug_string());
721
0
                LOG(WARNING) << st;
722
0
                return st;
723
0
            }
724
94
        }
725
64
        return Status::OK();
726
64
    }
727
728
64
    Status _check_table_block_columns(std::string_view stage, const Block* block, size_t rows) {
729
64
        DORIS_CHECK(block != nullptr);
730
64
        DORIS_CHECK(block->columns() == _data_reader.column_mapper->mappings().size());
731
159
        for (size_t idx = 0; idx < block->columns(); ++idx) {
732
95
            const auto& mapping = _data_reader.column_mapper->mappings()[idx];
733
95
            const auto& column_with_type = block->get_by_position(idx);
734
95
            const auto* column = column_with_type.column.get();
735
95
            try {
736
95
                if (column == nullptr) {
737
0
                    auto st = Status::InternalError(
738
0
                            "Invalid table block column {} at {}: table_column='{}', "
739
0
                            "global_index={}, type={}, column=null, expected_rows={}, mapping={}",
740
0
                            idx, stage, mapping.table_column_name, mapping.global_index.value(),
741
0
                            mapping.table_type == nullptr ? "null" : mapping.table_type->get_name(),
742
0
                            rows, mapping.debug_string());
743
0
                    LOG(WARNING) << st;
744
0
                    return st;
745
0
                }
746
95
                column->sanity_check();
747
95
                auto st = column_with_type.check_type_and_column_match();
748
95
                if (!st.ok()) {
749
0
                    auto contextual_status = Status::InternalError(
750
0
                            "Invalid table block column {} at {}: table_column='{}', "
751
0
                            "global_index={}, type={}, column={}, column_size={}, "
752
0
                            "expected_rows={}, error={}, mapping={}",
753
0
                            idx, stage, mapping.table_column_name, mapping.global_index.value(),
754
0
                            mapping.table_type == nullptr ? "null" : mapping.table_type->get_name(),
755
0
                            column->get_name(), column->size(), rows, st.to_string(),
756
0
                            mapping.debug_string());
757
0
                    LOG(WARNING) << contextual_status;
758
0
                    return contextual_status;
759
0
                }
760
95
            } catch (const Exception& e) {
761
0
                auto st = Status::InternalError(
762
0
                        "Invalid table block column {} at {}: table_column='{}', global_index={}, "
763
0
                        "type={}, column={}, column_size={}, expected_rows={}, error={}, "
764
0
                        "mapping={}",
765
0
                        idx, stage, mapping.table_column_name, mapping.global_index.value(),
766
0
                        mapping.table_type == nullptr ? "null" : mapping.table_type->get_name(),
767
0
                        column == nullptr ? "null" : column->get_name(),
768
0
                        column == nullptr ? 0 : column->size(), rows, e.to_string(),
769
0
                        mapping.debug_string());
770
0
                LOG(WARNING) << st;
771
0
                return st;
772
0
            } catch (const std::exception& e) {
773
0
                auto st = Status::InternalError(
774
0
                        "Invalid table block column {} at {}: table_column='{}', global_index={}, "
775
0
                        "type={}, column={}, column_size={}, expected_rows={}, error={}, "
776
0
                        "mapping={}",
777
0
                        idx, stage, mapping.table_column_name, mapping.global_index.value(),
778
0
                        mapping.table_type == nullptr ? "null" : mapping.table_type->get_name(),
779
0
                        column == nullptr ? "null" : column->get_name(),
780
0
                        column == nullptr ? 0 : column->size(), rows, e.what(),
781
0
                        mapping.debug_string());
782
0
                LOG(WARNING) << st;
783
0
                return st;
784
0
            }
785
95
        }
786
64
        return Status::OK();
787
64
    }
788
#endif
789
790
64
    Status _truncate_char_or_varchar_columns(Block* block) {
791
64
        DORIS_CHECK(block != nullptr);
792
64
        if (_runtime_state == nullptr ||
793
64
            !_runtime_state->query_options().truncate_char_or_varchar_columns) {
794
64
            return Status::OK();
795
64
        }
796
0
        DORIS_CHECK(block->columns() == _data_reader.column_mapper->mappings().size());
797
0
        for (size_t idx = 0; idx < _data_reader.column_mapper->mappings().size(); ++idx) {
798
0
            const auto& mapping = _data_reader.column_mapper->mappings()[idx];
799
0
            if (!_should_truncate_char_or_varchar_column(mapping)) {
800
0
                continue;
801
0
            }
802
0
            const auto target_len =
803
0
                    assert_cast<const DataTypeString*>(remove_nullable(mapping.table_type).get())
804
0
                            ->len();
805
0
            _truncate_char_or_varchar_column(block, idx, target_len);
806
0
        }
807
0
        return Status::OK();
808
64
    }
809
810
    // Return true when the table schema has a bounded CHAR/VARCHAR length that is stricter than
811
    // the file-side type. Examples:
812
    // - table VARCHAR(10), file VARCHAR(20): truncate to 10;
813
    // - table VARCHAR(10), file STRING: truncate to 10 because STRING has no declared bound;
814
    // - table STRING, any file type: no truncation because the target has no bound.
815
5
    static bool _should_truncate_char_or_varchar_column(const ColumnMapping& mapping) {
816
5
        if (mapping.table_type == nullptr) {
817
0
            return false;
818
0
        }
819
5
        const auto table_type = remove_nullable(mapping.table_type);
820
5
        const auto primitive_type = table_type->get_primitive_type();
821
5
        if (primitive_type != TYPE_VARCHAR && primitive_type != TYPE_CHAR) {
822
1
            return false;
823
1
        }
824
4
        const auto target_len = assert_cast<const DataTypeString*>(table_type.get())->len();
825
4
        if (target_len <= 0) {
826
0
            return false;
827
0
        }
828
4
        if (mapping.file_type == nullptr) {
829
0
            return true;
830
0
        }
831
4
        const auto file_type = remove_nullable(mapping.file_type);
832
4
        DORIS_CHECK(file_type != nullptr);
833
4
        int file_len = -1;
834
4
        if (file_type->get_primitive_type() == TYPE_VARCHAR ||
835
4
            file_type->get_primitive_type() == TYPE_CHAR ||
836
4
            file_type->get_primitive_type() == TYPE_STRING) {
837
3
            file_len = assert_cast<const DataTypeString*>(file_type.get())->len();
838
3
        }
839
840
4
        return file_len < 0 || target_len < file_len;
841
4
    }
842
843
    // Truncate a materialized CHAR/VARCHAR column in place by reusing the vectorized substring
844
    // implementation: substring(column, 1, len). Nullable columns are unwrapped before substring
845
    // execution and wrapped back with the original null map afterward, because substring operates
846
    // on the nested string payload only.
847
1
    static void _truncate_char_or_varchar_column(Block* block, size_t idx, int len) {
848
1
        DORIS_CHECK(block != nullptr);
849
1
        auto int_type = std::make_shared<DataTypeInt32>();
850
1
        const auto num_columns_without_result = cast_set<uint32_t>(block->columns());
851
1
        auto& target = block->get_by_position(idx);
852
1
        const bool is_nullable = target.type->is_nullable();
853
1
        ColumnPtr input_column = target.column;
854
1
        ColumnPtr null_map_column;
855
1
        if (is_nullable) {
856
1
            const auto* nullable_column = assert_cast<const ColumnNullable*>(target.column.get());
857
1
            input_column = nullable_column->get_nested_column_ptr();
858
1
            null_map_column = nullable_column->get_null_map_column_ptr();
859
1
        }
860
1
        block->replace_by_position(idx, std::move(input_column));
861
1
        block->insert({int_type->create_column_const(block->rows(), to_field<TYPE_INT>(1)),
862
1
                       int_type, "const 1"});
863
1
        block->insert({int_type->create_column_const(block->rows(), to_field<TYPE_INT>(len)),
864
1
                       int_type, "const len"});
865
1
        block->insert({nullptr, std::make_shared<DataTypeString>(), "result"});
866
867
1
        ColumnNumbers temp_arguments(3);
868
1
        temp_arguments[0] = cast_set<uint32_t>(idx);
869
1
        temp_arguments[1] = num_columns_without_result;
870
1
        temp_arguments[2] = num_columns_without_result + 1;
871
1
        const uint32_t result_column_id = num_columns_without_result + 2;
872
1
        SubstringUtil::substring_execute(*block, temp_arguments, result_column_id, block->rows());
873
874
1
        ColumnPtr result_column = block->get_by_position(result_column_id).column;
875
1
        if (is_nullable) {
876
1
            result_column = ColumnNullable::create(std::move(result_column), null_map_column);
877
1
        }
878
1
        block->replace_by_position(idx, std::move(result_column));
879
1
        block->erase_tail(num_columns_without_result);
880
1
    }
881
882
72
    Status _try_materialize_aggregate_pushdown_rows(Block* block, bool* pushed_down) {
883
72
        DORIS_CHECK(block != nullptr);
884
72
        DORIS_CHECK(pushed_down != nullptr);
885
72
        *pushed_down = false;
886
72
        block->clear_column_data(_projected_columns.size());
887
72
        _aggregate_pushdown_tried = true;
888
72
        if (!_supports_aggregate_pushdown(_push_down_agg_type)) {
889
63
            return Status::OK();
890
63
        }
891
892
9
        FileAggregateRequest file_request;
893
9
        RETURN_IF_ERROR(_build_file_aggregate_request(_push_down_agg_type, &file_request));
894
9
        FileAggregateResult file_result;
895
9
        const auto status = _data_reader.reader->get_aggregate_result(file_request, &file_result);
896
9
        if (status.is<ErrorCode::NOT_IMPLEMENTED_ERROR>()) {
897
1
            return Status::OK();
898
1
        }
899
8
        RETURN_IF_ERROR(status);
900
7
        RETURN_IF_ERROR(
901
7
                _materialize_aggregate_pushdown_rows(_push_down_agg_type, file_result, block));
902
7
        *pushed_down = true;
903
7
        RETURN_IF_ERROR(close_current_reader());
904
7
        return Status::OK();
905
7
    }
906
907
81
    virtual bool _supports_aggregate_pushdown(TPushAggOp::type agg_type) const {
908
        // Only COUNT and MIN/MAX can be push down.
909
81
        if (agg_type != TPushAggOp::type::COUNT && agg_type != TPushAggOp::type::MINMAX) {
910
51
            return false;
911
51
        }
912
        // Aggregate pushdown returns reduced synthetic rows and may close the physical reader
913
        // before the next scheduler turn. If a runtime filter is still pending, those rows could
914
        // escape before the filter arrives and cannot later be reconstructed from real file rows.
915
        // This is the same irreversibility constraint as table-level metadata COUNT, and applies
916
        // to COUNT and MIN/MAX for Parquet/ORC as well as COUNT for text readers.
917
30
        if (!_all_runtime_filters_applied_for_split) {
918
2
            return false;
919
2
        }
920
        // Only support aggregate pushdown when there is no delete or filter, so
921
        // the reduced rows consumed by the upper aggregate remain semantically equivalent to a
922
        // normal scan.
923
28
        if ((_delete_rows != nullptr && !_delete_rows->empty()) ||
924
28
            (_deletion_vector != nullptr && !_deletion_vector->isEmpty())) {
925
3
            return false;
926
3
        }
927
25
        if (!_table_filters.empty()) {
928
4
            return false;
929
4
        }
930
21
        if (agg_type == TPushAggOp::type::COUNT) {
931
9
            return true;
932
9
        }
933
        // For MIN/MAX, only support direct file-to-table column mappings. The two emitted rows
934
        // must be enough for the upper MIN/MAX aggregate without evaluating default expressions or
935
        // virtual columns.
936
14
        for (const auto& mapping : _data_reader.column_mapper->mappings()) {
937
14
            if (!mapping.file_local_id.has_value() ||
938
14
                mapping.virtual_column_type != TableVirtualColumnType::INVALID ||
939
14
                mapping.default_expr != nullptr || mapping.file_type == nullptr ||
940
14
                mapping.table_type == nullptr) {
941
1
                return false;
942
1
            }
943
13
            if (!_can_push_down_minmax_for_mapping(mapping)) {
944
1
                return false;
945
1
            }
946
13
        }
947
10
        return true;
948
12
    }
949
950
95
    static ColumnPtr _detach_column(ColumnPtr column) {
951
95
        DORIS_CHECK(column.get() != nullptr);
952
95
        return IColumn::mutate(std::move(column));
953
95
    }
954
955
58
    static Status _align_column_nullability(ColumnPtr* column, const DataTypePtr& table_type) {
956
58
        DORIS_CHECK(column != nullptr);
957
58
        DORIS_CHECK(column->get() != nullptr);
958
58
        DORIS_CHECK(table_type != nullptr);
959
        // Must return non-const column
960
58
        *column = (*column)->convert_to_full_column_if_const();
961
58
        if (table_type->is_nullable()) {
962
23
            const auto& nested_type =
963
23
                    assert_cast<const DataTypeNullable&>(*table_type).get_nested_type();
964
23
            if (!(*column)->is_nullable()) {
965
2
                RETURN_IF_ERROR(_align_column_nullability(column, nested_type));
966
2
                *column = make_nullable(*column);
967
2
                return Status::OK();
968
2
            }
969
21
            const auto& nullable_column = assert_cast<const ColumnNullable&>(**column);
970
21
            ColumnPtr nested_column = nullable_column.get_nested_column_ptr();
971
21
            RETURN_IF_ERROR(_align_column_nullability(&nested_column, nested_type));
972
21
            *column = ColumnNullable::create(nested_column,
973
21
                                             nullable_column.get_null_map_column_ptr());
974
21
            return Status::OK();
975
21
        }
976
35
        if ((*column)->is_nullable()) {
977
0
            const auto& nullable_column = assert_cast<const ColumnNullable&>(**column);
978
0
            if (nullable_column.has_null()) {
979
0
                return Status::InternalError(
980
0
                        "Default expression produced NULL for non-nullable table column");
981
0
            }
982
0
            ColumnPtr nested_column = nullable_column.get_nested_column_ptr();
983
0
            RETURN_IF_ERROR(_align_column_nullability(&nested_column, table_type));
984
0
            *column = nested_column;
985
0
            return Status::OK();
986
0
        }
987
35
        if (const auto* array_type = typeid_cast<const DataTypeArray*>(table_type.get())) {
988
1
            const auto& array_column = assert_cast<const ColumnArray&>(**column);
989
1
            ColumnPtr nested_column = array_column.get_data_ptr();
990
1
            RETURN_IF_ERROR(
991
1
                    _align_column_nullability(&nested_column, array_type->get_nested_type()));
992
1
            *column = ColumnArray::create(nested_column, array_column.get_offsets_ptr());
993
1
            return Status::OK();
994
1
        }
995
34
        if (const auto* map_type = typeid_cast<const DataTypeMap*>(table_type.get())) {
996
0
            const auto& map_column = assert_cast<const ColumnMap&>(**column);
997
0
            ColumnPtr key_column = map_column.get_keys_ptr();
998
0
            ColumnPtr value_column = map_column.get_values_ptr();
999
0
            RETURN_IF_ERROR(_align_column_nullability(&key_column, map_type->get_key_type()));
1000
0
            RETURN_IF_ERROR(_align_column_nullability(&value_column, map_type->get_value_type()));
1001
0
            *column = ColumnMap::create(key_column, value_column, map_column.get_offsets_ptr());
1002
0
            return Status::OK();
1003
0
        }
1004
34
        if (const auto* struct_type = typeid_cast<const DataTypeStruct*>(table_type.get())) {
1005
5
            const auto& struct_column = assert_cast<const ColumnStruct&>(**column);
1006
5
            Columns columns = struct_column.get_columns_copy();
1007
5
            DORIS_CHECK(columns.size() == struct_type->get_elements().size());
1008
16
            for (size_t i = 0; i < columns.size(); ++i) {
1009
11
                RETURN_IF_ERROR(
1010
11
                        _align_column_nullability(&columns[i], struct_type->get_element(i)));
1011
11
            }
1012
5
            *column = ColumnStruct::create(columns);
1013
5
            return Status::OK();
1014
5
        }
1015
29
        return Status::OK();
1016
34
    }
1017
1018
    static Status _execute_default_expr_without_root_type_check(
1019
            const VExprContextSPtr& default_expr, const Block* block,
1020
5
            ColumnWithTypeAndName* result_data) {
1021
5
        DORIS_CHECK(default_expr != nullptr);
1022
5
        DORIS_CHECK(block != nullptr);
1023
5
        DORIS_CHECK(result_data != nullptr);
1024
5
        ColumnPtr result_column;
1025
5
        Status st;
1026
5
        RETURN_IF_CATCH_EXCEPTION({
1027
5
            st = default_expr->root()->execute_column_impl(default_expr.get(), block, nullptr,
1028
5
                                                           block->rows(), result_column);
1029
5
        });
1030
5
        RETURN_IF_ERROR(st);
1031
5
        DORIS_CHECK(result_column.get() != nullptr);
1032
5
        if (result_column->size() != block->rows()) {
1033
0
            return Status::InternalError(
1034
0
                    "Default expr {} return column size {} not equal to expected size {}",
1035
0
                    default_expr->expr_name(), result_column->size(), block->rows());
1036
0
        }
1037
5
        result_data->column = result_column;
1038
5
        result_data->type = default_expr->execute_type(block);
1039
5
        result_data->name = default_expr->expr_name();
1040
5
        return Status::OK();
1041
5
    }
1042
1043
    Status _cast_column_to_type(ColumnPtr* column, const DataTypePtr& file_type,
1044
                                const DataTypePtr& table_type,
1045
1
                                const std::string& column_name) const {
1046
1
        DORIS_CHECK(column != nullptr);
1047
1
        DORIS_CHECK(column->get() != nullptr);
1048
1
        DORIS_CHECK(file_type != nullptr);
1049
1
        DORIS_CHECK(table_type != nullptr);
1050
1
        if (file_type->equals(*table_type)) {
1051
0
            return Status::OK();
1052
0
        }
1053
1054
1
        DataTypePtr input_type = file_type;
1055
        // Cast wrappers unwrap nullable inputs according to the declared input type, so keep the
1056
        // root nullability of the declared type aligned with the actual column shape.
1057
1
        if ((*column)->is_nullable() && !input_type->is_nullable()) {
1058
0
            input_type = make_nullable(input_type);
1059
1
        } else if (!(*column)->is_nullable() && input_type->is_nullable()) {
1060
1
            input_type = remove_nullable(input_type);
1061
1
        }
1062
1
        Block cast_block;
1063
1
        cast_block.insert({*column, input_type, column_name});
1064
1
        auto slot_ref = VSlotRef::create_shared(0, 0, -1, input_type, column_name);
1065
1
        auto cast_expr = Cast::create_shared(table_type);
1066
1
        cast_expr->add_child(std::move(slot_ref));
1067
1
        auto cast_ctx = VExprContext::create_shared(std::move(cast_expr));
1068
1
        RowDescriptor row_desc;
1069
1
        RETURN_IF_ERROR(cast_ctx->prepare(_runtime_state, row_desc));
1070
1
        RETURN_IF_ERROR(cast_ctx->open(_runtime_state));
1071
1
        ColumnPtr cast_column;
1072
1
        RETURN_IF_ERROR(cast_ctx->execute(&cast_block, cast_column));
1073
1
        *column = std::move(cast_column);
1074
1
        return Status::OK();
1075
1
    }
1076
1077
    Status _materialize_present_child_mapping_column(const ColumnMapping& mapping,
1078
                                                     const ColumnPtr& file_column,
1079
18
                                                     const size_t rows, ColumnPtr* column) {
1080
18
        DORIS_CHECK(column != nullptr);
1081
18
        DORIS_CHECK(mapping.file_type != nullptr);
1082
18
        DORIS_CHECK(mapping.table_type != nullptr);
1083
18
        *column = file_column;
1084
18
        if (!mapping.is_trivial) {
1085
5
            if (!mapping.child_mappings.empty()) {
1086
5
                RETURN_IF_ERROR(
1087
5
                        _materialize_complex_mapping_column(mapping, *column, rows, column));
1088
5
            } else {
1089
0
                RETURN_IF_ERROR(_cast_column_to_type(column, mapping.file_type, mapping.table_type,
1090
0
                                                     mapping.file_column_name));
1091
0
            }
1092
5
        }
1093
18
        RETURN_IF_ERROR(_align_column_nullability(column, mapping.table_type));
1094
18
        return Status::OK();
1095
18
    }
1096
1097
    Status _materialize_mapping_column(const ColumnMapping& mapping, Block* current_block,
1098
100
                                       const size_t rows, ColumnPtr* column) {
1099
100
        if (!mapping.is_trivial && mapping.file_local_id.has_value() &&
1100
100
            !mapping.child_mappings.empty()) {
1101
5
            DCHECK(mapping.projection != nullptr);
1102
5
            int res_id;
1103
5
            auto st = mapping.projection->execute(current_block, &res_id);
1104
5
            if (!st.ok()) {
1105
0
                return Status::InternalError(
1106
0
                        "Failed to execute complex mapping projection for table column '{}' "
1107
0
                        "(global_index={}, file_local_id={}, rows={}): {}, mapping={}",
1108
0
                        mapping.table_column_name, mapping.global_index.value(),
1109
0
                        *mapping.file_local_id, rows, st.to_string(), mapping.debug_string());
1110
0
            }
1111
5
            ColumnPtr result_column = current_block->get_by_position(res_id).column;
1112
5
            RETURN_IF_ERROR(
1113
5
                    _materialize_complex_mapping_column(mapping, result_column, rows, column));
1114
5
            return Status::OK();
1115
5
        }
1116
95
        if (mapping.projection != nullptr) {
1117
77
            int res_id;
1118
77
            auto st = mapping.projection->execute(current_block, &res_id);
1119
77
            if (!st.ok()) {
1120
0
                std::string file_local_id = "null";
1121
0
                if (mapping.file_local_id.has_value()) {
1122
0
                    file_local_id = std::to_string(*mapping.file_local_id);
1123
0
                }
1124
0
                return Status::InternalError(
1125
0
                        "Failed to execute mapping projection for table column '{}' "
1126
0
                        "(global_index={}, file_local_id={}, rows={}): {}, mapping={}",
1127
0
                        mapping.table_column_name, mapping.global_index.value(), file_local_id,
1128
0
                        rows, st.to_string(), mapping.debug_string());
1129
0
            }
1130
77
            ColumnPtr result_column = current_block->get_by_position(res_id).column;
1131
77
            *column = _detach_column(std::move(result_column));
1132
77
            return Status::OK();
1133
77
        }
1134
18
        if (mapping.default_expr != nullptr) {
1135
5
            if (current_block->rows() == rows) {
1136
0
                ColumnWithTypeAndName result;
1137
0
                RETURN_IF_ERROR(_execute_default_expr_without_root_type_check(
1138
0
                        mapping.default_expr, current_block, &result));
1139
0
                ColumnPtr result_column = result.column;
1140
0
                RETURN_IF_ERROR(_align_column_nullability(&result_column, mapping.table_type));
1141
0
                *column = _detach_column(std::move(result_column));
1142
5
            } else {
1143
5
                DORIS_CHECK(mapping.constant_index.has_value());
1144
5
                Block eval_block;
1145
5
                eval_block.insert({mapping.table_type->create_column_const_with_default_value(rows),
1146
5
                                   mapping.table_type, "__table_reader_const_rows"});
1147
5
                ColumnWithTypeAndName result;
1148
5
                RETURN_IF_ERROR(_execute_default_expr_without_root_type_check(
1149
5
                        mapping.default_expr, &eval_block, &result));
1150
5
                ColumnPtr result_column = result.column;
1151
5
                RETURN_IF_ERROR(_align_column_nullability(&result_column, mapping.table_type));
1152
5
                *column = _detach_column(std::move(result_column));
1153
5
            }
1154
5
            return Status::OK();
1155
5
        }
1156
13
        ColumnPtr result_column = mapping.table_type->create_column_const_with_default_value(rows);
1157
13
        *column = _detach_column(std::move(result_column));
1158
13
        return Status::OK();
1159
18
    }
1160
1161
    Status _materialize_complex_mapping_column(const ColumnMapping& mapping,
1162
                                               const ColumnPtr& file_column, const size_t rows,
1163
10
                                               ColumnPtr* column) {
1164
10
        DORIS_CHECK(mapping.table_type != nullptr);
1165
10
        DORIS_CHECK(file_column.get() != nullptr);
1166
10
        const auto table_type = remove_nullable(mapping.table_type);
1167
10
        switch (table_type->get_primitive_type()) {
1168
7
        case TYPE_STRUCT:
1169
7
            RETURN_IF_ERROR(_materialize_struct_mapping_column(mapping, file_column, rows, column));
1170
7
            break;
1171
7
        case TYPE_ARRAY:
1172
2
            RETURN_IF_ERROR(_materialize_array_mapping_column(mapping, file_column, rows, column));
1173
2
            break;
1174
2
        case TYPE_MAP:
1175
1
            RETURN_IF_ERROR(_materialize_map_mapping_column(mapping, file_column, rows, column));
1176
1
            break;
1177
1
        default:
1178
0
            *column = _detach_column(file_column);
1179
0
            break;
1180
10
        }
1181
10
        return Status::OK();
1182
10
    }
1183
1184
    static std::vector<const ColumnMapping*> _present_child_mappings_in_file_order(
1185
7
            const std::vector<ColumnMapping>& child_mappings) {
1186
7
        std::vector<const ColumnMapping*> result;
1187
7
        result.reserve(child_mappings.size());
1188
16
        for (const auto& child_mapping : child_mappings) {
1189
16
            if (child_mapping.file_local_id.has_value()) {
1190
11
                result.push_back(&child_mapping);
1191
11
            }
1192
16
        }
1193
7
        std::ranges::sort(result, [](const ColumnMapping* lhs, const ColumnMapping* rhs) {
1194
6
            DORIS_CHECK(lhs->file_local_id.has_value());
1195
6
            DORIS_CHECK(rhs->file_local_id.has_value());
1196
6
            return *lhs->file_local_id < *rhs->file_local_id;
1197
6
        });
1198
7
        return result;
1199
7
    }
1200
1201
    static size_t _file_child_ordinal_for_mapping(
1202
            const ColumnMapping& mapping, const ColumnMapping& child_mapping,
1203
11
            const std::vector<const ColumnMapping*>& file_ordered_children) {
1204
11
        DORIS_CHECK(child_mapping.file_local_id.has_value());
1205
11
        if (!mapping.projected_file_children.empty()) {
1206
7
            const auto child_it = std::ranges::find_if(
1207
10
                    mapping.projected_file_children, [&](const ColumnDefinition& file_child) {
1208
10
                        return file_child.file_local_id() == *child_mapping.file_local_id;
1209
10
                    });
1210
7
            DORIS_CHECK(child_it != mapping.projected_file_children.end());
1211
7
            return static_cast<size_t>(
1212
7
                    std::distance(mapping.projected_file_children.begin(), child_it));
1213
7
        }
1214
4
        const auto child_it = std::ranges::find(file_ordered_children, &child_mapping);
1215
4
        DORIS_CHECK(child_it != file_ordered_children.end());
1216
4
        return static_cast<size_t>(std::distance(file_ordered_children.begin(), child_it));
1217
11
    }
1218
1219
    static std::vector<const ColumnMapping*> _child_mappings_in_table_type_order(
1220
7
            const ColumnMapping& mapping, const DataTypeStruct& table_type) {
1221
7
        std::vector<const ColumnMapping*> result;
1222
7
        result.reserve(mapping.child_mappings.size());
1223
23
        for (size_t child_idx = 0; child_idx < table_type.get_elements().size(); ++child_idx) {
1224
16
            const auto& child_name = table_type.get_element_name(child_idx);
1225
16
            const auto child_it = std::ranges::find_if(
1226
28
                    mapping.child_mappings, [&](const ColumnMapping& child_mapping) {
1227
28
                        return child_mapping.table_column_name == child_name;
1228
28
                    });
1229
16
            DORIS_CHECK(child_it != mapping.child_mappings.end())
1230
0
                    << mapping.debug_string() << ", table_child_name=" << child_name;
1231
16
            result.push_back(&*child_it);
1232
16
        }
1233
7
        return result;
1234
7
    }
1235
1236
    static const IColumn* _nested_column_if_nullable(const ColumnPtr& column,
1237
12
                                                     const NullMap** null_map) {
1238
12
        DORIS_CHECK(column.get() != nullptr);
1239
12
        if (const auto* nullable_column = check_and_get_column<ColumnNullable>(*column)) {
1240
8
            if (null_map != nullptr) {
1241
8
                *null_map = &nullable_column->get_null_map_data();
1242
8
            }
1243
8
            return &nullable_column->get_nested_column();
1244
8
        }
1245
4
        return column.get();
1246
12
    }
1247
1248
    Status _materialize_struct_mapping_column(const ColumnMapping& mapping,
1249
                                              const ColumnPtr& file_column, const size_t rows,
1250
7
                                              ColumnPtr* column) {
1251
7
        DORIS_CHECK(mapping.table_type != nullptr);
1252
7
        const auto* table_type =
1253
7
                assert_cast<const DataTypeStruct*>(remove_nullable(mapping.table_type).get());
1254
7
        const auto full_file_column = file_column->convert_to_full_column_if_const();
1255
7
        const NullMap* parent_null_map = nullptr;
1256
7
        const auto* nested_file_column =
1257
7
                _nested_column_if_nullable(full_file_column, &parent_null_map);
1258
7
        const auto* file_struct = assert_cast<const ColumnStruct*>(nested_file_column);
1259
7
        DORIS_CHECK(table_type->get_elements().size() == mapping.child_mappings.size());
1260
1261
7
        Columns child_columns;
1262
7
        child_columns.reserve(mapping.child_mappings.size());
1263
7
        const auto file_ordered_children =
1264
7
                _present_child_mappings_in_file_order(mapping.child_mappings);
1265
7
        const auto table_ordered_children =
1266
7
                _child_mappings_in_table_type_order(mapping, *table_type);
1267
16
        for (const auto* child_mapping : table_ordered_children) {
1268
16
            DORIS_CHECK(child_mapping != nullptr);
1269
16
            if (!child_mapping->file_local_id.has_value()) {
1270
5
                child_columns.push_back(
1271
5
                        child_mapping->table_type->create_column_const_with_default_value(rows)
1272
5
                                ->convert_to_full_column_if_const());
1273
5
                continue;
1274
5
            }
1275
11
            const auto file_child_idx =
1276
11
                    _file_child_ordinal_for_mapping(mapping, *child_mapping, file_ordered_children);
1277
11
            DORIS_CHECK(file_child_idx < file_struct->get_columns().size());
1278
11
            ColumnPtr child_column = file_struct->get_column_ptr(file_child_idx);
1279
11
            RETURN_IF_ERROR(_materialize_present_child_mapping_column(*child_mapping, child_column,
1280
11
                                                                      rows, &child_column));
1281
11
            child_columns.push_back(std::move(child_column));
1282
11
        }
1283
7
        MutableColumns mutable_child_columns;
1284
7
        mutable_child_columns.reserve(child_columns.size());
1285
16
        for (auto& child_column : child_columns) {
1286
16
            mutable_child_columns.push_back(IColumn::mutate(std::move(child_column)));
1287
16
        }
1288
7
        auto result = ColumnStruct::create(std::move(mutable_child_columns));
1289
7
        if (mapping.table_type->is_nullable()) {
1290
5
            auto null_map = ColumnUInt8::create();
1291
5
            auto& null_map_data = null_map->get_data();
1292
5
            null_map_data.resize(rows);
1293
5
            if (parent_null_map != nullptr) {
1294
5
                DORIS_CHECK(parent_null_map->size() == rows);
1295
5
                null_map_data.assign(parent_null_map->begin(), parent_null_map->end());
1296
5
            } else {
1297
0
                std::fill(null_map_data.begin(), null_map_data.end(), 0);
1298
0
            }
1299
5
            *column = ColumnNullable::create(std::move(result), std::move(null_map));
1300
5
        } else {
1301
2
            *column = std::move(result);
1302
2
        }
1303
7
        return Status::OK();
1304
7
    }
1305
1306
    Status _materialize_array_mapping_column(const ColumnMapping& mapping,
1307
                                             const ColumnPtr& file_column, const size_t rows,
1308
2
                                             ColumnPtr* column) {
1309
2
        DORIS_CHECK(mapping.child_mappings.size() == 1);
1310
2
        const auto full_file_column = file_column->convert_to_full_column_if_const();
1311
2
        const NullMap* parent_null_map = nullptr;
1312
2
        const auto* nested_file_column =
1313
2
                _nested_column_if_nullable(full_file_column, &parent_null_map);
1314
2
        const auto* file_array = assert_cast<const ColumnArray*>(nested_file_column);
1315
2
        ColumnPtr nested_column = file_array->get_data_ptr();
1316
2
        const auto& element_mapping = mapping.child_mappings[0];
1317
2
        RETURN_IF_ERROR(_materialize_present_child_mapping_column(
1318
2
                element_mapping, nested_column, nested_column->size(), &nested_column));
1319
2
        auto offsets_column = file_array->get_offsets_ptr()->convert_to_full_column_if_const();
1320
2
        auto result = ColumnArray::create(IColumn::mutate(std::move(nested_column)),
1321
2
                                          IColumn::mutate(std::move(offsets_column)));
1322
2
        if (mapping.table_type->is_nullable()) {
1323
2
            auto null_map = ColumnUInt8::create();
1324
2
            auto& null_map_data = null_map->get_data();
1325
2
            null_map_data.resize(rows);
1326
2
            if (parent_null_map != nullptr) {
1327
2
                DORIS_CHECK(parent_null_map->size() == rows);
1328
2
                null_map_data.assign(parent_null_map->begin(), parent_null_map->end());
1329
2
            } else {
1330
0
                std::fill(null_map_data.begin(), null_map_data.end(), 0);
1331
0
            }
1332
2
            *column = ColumnNullable::create(std::move(result), std::move(null_map));
1333
2
        } else {
1334
0
            *column = std::move(result);
1335
0
        }
1336
2
        return Status::OK();
1337
2
    }
1338
1339
    Status _materialize_map_mapping_column(const ColumnMapping& mapping,
1340
                                           const ColumnPtr& file_column, const size_t rows,
1341
3
                                           ColumnPtr* column) {
1342
3
        const auto full_file_column = file_column->convert_to_full_column_if_const();
1343
3
        const NullMap* parent_null_map = nullptr;
1344
3
        const auto* nested_file_column =
1345
3
                _nested_column_if_nullable(full_file_column, &parent_null_map);
1346
3
        const auto* file_map = assert_cast<const ColumnMap*>(nested_file_column);
1347
3
        ColumnPtr key_column = file_map->get_keys_ptr();
1348
3
        ColumnPtr value_column = file_map->get_values_ptr();
1349
1350
3
        const ColumnMapping* key_mapping = nullptr;
1351
3
        const ColumnMapping* value_mapping = nullptr;
1352
5
        for (const auto& child_mapping : mapping.child_mappings) {
1353
5
            if (!child_mapping.file_local_id.has_value()) {
1354
0
                continue;
1355
0
            }
1356
5
            if (*child_mapping.file_local_id == 0) {
1357
2
                key_mapping = &child_mapping;
1358
3
            } else if (*child_mapping.file_local_id == 1) {
1359
3
                value_mapping = &child_mapping;
1360
3
            }
1361
5
        }
1362
1363
3
        if (key_mapping != nullptr) {
1364
2
            RETURN_IF_ERROR(_materialize_present_child_mapping_column(
1365
2
                    *key_mapping, key_column, key_column->size(), &key_column));
1366
2
        }
1367
3
        if (value_mapping != nullptr) {
1368
3
            RETURN_IF_ERROR(_materialize_present_child_mapping_column(
1369
3
                    *value_mapping, value_column, value_column->size(), &value_column));
1370
3
        }
1371
3
        auto offsets_column = file_map->get_offsets_ptr()->convert_to_full_column_if_const();
1372
3
        auto result = ColumnMap::create(IColumn::mutate(std::move(key_column)),
1373
3
                                        IColumn::mutate(std::move(value_column)),
1374
3
                                        IColumn::mutate(std::move(offsets_column)));
1375
3
        if (mapping.table_type->is_nullable()) {
1376
1
            auto null_map = ColumnUInt8::create();
1377
1
            auto& null_map_data = null_map->get_data();
1378
1
            null_map_data.resize(rows);
1379
1
            if (parent_null_map != nullptr) {
1380
1
                DORIS_CHECK(parent_null_map->size() == rows);
1381
1
                null_map_data.assign(parent_null_map->begin(), parent_null_map->end());
1382
1
            } else {
1383
0
                std::fill(null_map_data.begin(), null_map_data.end(), 0);
1384
0
            }
1385
1
            *column = ColumnNullable::create(std::move(result), std::move(null_map));
1386
2
        } else {
1387
2
            *column = std::move(result);
1388
2
        }
1389
3
        return Status::OK();
1390
3
    }
1391
1392
72
    Status _open_mapping_exprs() {
1393
72
        RowDescriptor row_desc;
1394
104
        for (const auto& mapping : _data_reader.column_mapper->mappings()) {
1395
104
            if (mapping.projection != nullptr) {
1396
86
                RETURN_IF_ERROR(mapping.projection->prepare(_runtime_state, row_desc));
1397
86
                RETURN_IF_ERROR(mapping.projection->open(_runtime_state));
1398
86
            }
1399
104
            if (mapping.default_expr != nullptr) {
1400
5
                RETURN_IF_ERROR(mapping.default_expr->prepare(_runtime_state, row_desc));
1401
5
                RETURN_IF_ERROR(mapping.default_expr->open(_runtime_state));
1402
5
            }
1403
104
        }
1404
72
        return Status::OK();
1405
72
    }
1406
1407
    Status _build_file_aggregate_request(TPushAggOp::type agg_type,
1408
9
                                         FileAggregateRequest* request) const {
1409
9
        DORIS_CHECK(request != nullptr);
1410
9
        DORIS_CHECK(_supports_aggregate_pushdown(agg_type));
1411
9
        request->agg_type = agg_type;
1412
9
        request->columns.clear();
1413
9
        if (agg_type == TPushAggOp::type::COUNT) {
1414
            // COUNT pushdown historically meant COUNT(*) and therefore carried no columns. For
1415
            // complex COUNT(col), materializing the full MAP/LIST/STRUCT value only to test the
1416
            // top-level NULL bit can be extremely expensive. When the scan projects exactly one
1417
            // directly-mapped complex column, pass that file column to the reader so formats such
1418
            // as Parquet can count the column shape from metadata/levels without decoding payload
1419
            // values like MAP value strings. Other COUNT cases stay on the existing row-count path
1420
            // to avoid changing count(*) semantics.
1421
4
            if (_data_reader.column_mapper->mappings().size() == 1) {
1422
4
                const auto& mapping = _data_reader.column_mapper->mappings()[0];
1423
4
                if (mapping.file_local_id.has_value() && mapping.file_type != nullptr &&
1424
4
                    is_complex_type(remove_nullable(mapping.file_type)->get_primitive_type()) &&
1425
4
                    mapping.virtual_column_type == TableVirtualColumnType::INVALID &&
1426
4
                    mapping.default_expr == nullptr) {
1427
0
                    FileAggregateRequest::Column column;
1428
0
                    column.projection =
1429
0
                            LocalColumnIndex::top_level(LocalColumnId(*mapping.file_local_id));
1430
0
                    request->columns.push_back(std::move(column));
1431
0
                }
1432
4
            }
1433
4
            return Status::OK();
1434
4
        }
1435
5
        request->columns.reserve(_data_reader.column_mapper->mappings().size());
1436
6
        for (const auto& mapping : _data_reader.column_mapper->mappings()) {
1437
6
            DORIS_CHECK(mapping.file_local_id.has_value());
1438
6
            FileAggregateRequest::Column column;
1439
6
            column.projection = LocalColumnIndex::top_level(LocalColumnId(*mapping.file_local_id));
1440
6
            if (!mapping.child_mappings.empty()) {
1441
1
                RETURN_IF_ERROR(build_aggregate_projection(mapping, &column.projection));
1442
1
            }
1443
6
            request->columns.push_back(std::move(column));
1444
6
        }
1445
5
        return Status::OK();
1446
5
    }
1447
1448
    Status _materialize_aggregate_pushdown_rows(TPushAggOp::type agg_type,
1449
                                                const FileAggregateResult& file_result,
1450
7
                                                Block* block) {
1451
7
        if (agg_type == TPushAggOp::type::COUNT) {
1452
            // COUNT pushdown is not a final count value. It emits `count` default rows so the
1453
            // upper COUNT(*) aggregate can count them and produce the final result, including
1454
            // zero rows when count is 0.
1455
3
            DORIS_CHECK(file_result.count >= 0);
1456
3
            return _materialize_count_rows(cast_set<size_t>(file_result.count), block);
1457
3
        }
1458
        // MIN/MAX pushdown emits two rows, min first and max second, for each projected column.
1459
        // The upper MIN/MAX aggregate consumes those two rows to produce the final aggregate value.
1460
4
        DORIS_CHECK(file_result.columns.size() == _data_reader.column_mapper->mappings().size());
1461
4
        DORIS_CHECK(block->columns() == _data_reader.column_mapper->mappings().size());
1462
4
        Block file_block;
1463
4
        file_block.reserve(_data_reader.file_block_layout.size());
1464
5
        for (const auto& column : _data_reader.file_block_layout) {
1465
5
            file_block.insert({column.type->create_column(), column.type, column.name});
1466
5
        }
1467
9
        for (size_t column_idx = 0; column_idx < file_result.columns.size(); ++column_idx) {
1468
5
            const auto& result_column = file_result.columns[column_idx];
1469
5
            if (!result_column.has_min || !result_column.has_max) {
1470
0
                return Status::NotSupported("Missing min/max aggregate result for column {}",
1471
0
                                            _projected_columns[column_idx].name);
1472
0
            }
1473
5
            bool found_file_column = false;
1474
6
            for (size_t block_position = 0; block_position < _data_reader.file_block_layout.size();
1475
6
                 ++block_position) {
1476
6
                if (_data_reader.file_block_layout[block_position].file_column_id ==
1477
6
                    file_result.columns[column_idx].projection.column_id()) {
1478
5
                    found_file_column = true;
1479
5
                    auto column = file_block.get_by_position(block_position)
1480
5
                                          .type->create_column()
1481
5
                                          ->assert_mutable();
1482
5
                    RETURN_IF_ERROR(_insert_aggregate_projection_value(
1483
5
                            file_result.columns[column_idx].projection, result_column.min_value,
1484
5
                            column.get()));
1485
5
                    RETURN_IF_ERROR(_insert_aggregate_projection_value(
1486
5
                            file_result.columns[column_idx].projection, result_column.max_value,
1487
5
                            column.get()));
1488
5
                    file_block.replace_by_position(block_position, std::move(column));
1489
5
                    break;
1490
5
                }
1491
6
            }
1492
5
            DORIS_CHECK(found_file_column);
1493
5
        }
1494
9
        for (size_t column_idx = 0; column_idx < _data_reader.column_mapper->mappings().size();
1495
5
             ++column_idx) {
1496
5
            ColumnPtr table_column;
1497
5
            RETURN_IF_ERROR(
1498
5
                    _materialize_mapping_column(_data_reader.column_mapper->mappings()[column_idx],
1499
5
                                                &file_block, 2, &table_column));
1500
5
            block->replace_by_position(column_idx, std::move(table_column));
1501
5
        }
1502
4
        return Status::OK();
1503
4
    }
1504
1505
    struct FileBlockColumn {
1506
        LocalColumnId file_column_id = LocalColumnId::invalid();
1507
        std::string name;
1508
        DataTypePtr type;
1509
    };
1510
1511
    struct DataReader {
1512
        std::unique_ptr<FileReader> reader;
1513
        std::unique_ptr<TableColumnMapper> column_mapper;
1514
        // Schema of the data file, also including virtual column (row position).
1515
        std::vector<ColumnDefinition> file_schema;
1516
        // Layout of the block returned by file reader, determined by column mapping and file
1517
        // schema. It is used for file reader to materialize columns into correct type and position.
1518
        std::vector<FileBlockColumn> file_block_layout;
1519
        Block block_template;
1520
    };
1521
    DataReader _data_reader;
1522
    std::vector<ColumnDefinition> _projected_columns;
1523
    std::unique_ptr<ScanTask> _current_task;
1524
    std::optional<io::FileDescription> _current_file_description;
1525
    // Range-level compression has higher priority than scan-param compression. TVF/load can keep
1526
    // the logical format as CSV/TEXT while carrying the concrete compression such as GZ or LZO on
1527
    // each TFileRangeDesc, matching the old FileScanner reader contract.
1528
    TFileCompressType::type _current_range_compress_type = TFileCompressType::UNKNOWN;
1529
    std::optional<TUniqueId> _current_range_load_id;
1530
    TFileRangeDesc _current_file_range_desc;
1531
    std::shared_ptr<io::FileSystemProperties> _system_properties;
1532
    // partition key -> value
1533
    std::map<std::string, Field> _partition_values;
1534
    // Predicates built from scan conjuncts before file-level localization.
1535
    std::vector<TableFilter> _table_filters;
1536
    VExprContextSPtrs _conjuncts;
1537
    ReadProfile _profile;
1538
    // Parsed from row-position based delete files, including position delete and deletion vector.
1539
    DeleteRows* _delete_rows = nullptr;
1540
    DeletionVector* _deletion_vector = nullptr;
1541
    TFileScanRangeParams* _scan_params;
1542
    std::shared_ptr<io::IOContext> _io_ctx;
1543
    RuntimeState* _runtime_state;
1544
    RuntimeProfile* _scanner_profile;
1545
    const std::vector<SlotDescriptor*>* _file_slot_descs = nullptr;
1546
    FileFormat _format;
1547
    TPushAggOp::type _push_down_agg_type = TPushAggOp::type::NONE;
1548
    size_t _batch_size = 0;
1549
    uint64_t _condition_cache_digest = 0;
1550
    segment_v2::ConditionCache::ExternalCacheKey _condition_cache_key;
1551
    std::shared_ptr<std::vector<bool>> _condition_cache;
1552
    std::shared_ptr<ConditionCacheContext> _condition_cache_ctx;
1553
    int64_t _condition_cache_hit_count = 0;
1554
    bool _current_reader_reached_eof = false;
1555
    int64_t _remaining_table_level_count = -1;
1556
    // Snapshot supplied by FileScannerV2 for the active split. It gates every shortcut that emits
1557
    // irreversible aggregate rows, not only the table-level row-count shortcut in prepare_split().
1558
    bool _all_runtime_filters_applied_for_split = true;
1559
    std::optional<GlobalRowIdContext> _global_rowid_context;
1560
    bool _aggregate_pushdown_tried = false;
1561
    bool _current_split_pruned = false;
1562
    TableColumnMapperOptions _mapper_options;
1563
1564
private:
1565
    static const ColumnDefinition* _find_column_definition(
1566
123
            const std::vector<ColumnDefinition>& schema, LocalColumnId column_id) {
1567
239
        for (const auto& field : schema) {
1568
239
            if (field.file_local_id() == column_id.value()) {
1569
105
                return &field;
1570
105
            }
1571
239
        }
1572
18
        return nullptr;
1573
123
    }
1574
1575
15
    static bool _can_push_down_minmax_for_mapping(const ColumnMapping& mapping) {
1576
15
        if (mapping.child_mappings.empty()) {
1577
12
            return true;
1578
12
        }
1579
3
        const auto primitive_type = remove_nullable(mapping.file_type)->get_primitive_type();
1580
3
        if (primitive_type != TYPE_STRUCT) {
1581
1
            return false;
1582
1
        }
1583
2
        size_t mapped_children = 0;
1584
2
        const ColumnMapping* mapped_child = nullptr;
1585
2
        for (const auto& child_mapping : mapping.child_mappings) {
1586
2
            if (!child_mapping.file_local_id.has_value()) {
1587
0
                continue;
1588
0
            }
1589
2
            ++mapped_children;
1590
2
            mapped_child = &child_mapping;
1591
2
        }
1592
2
        return mapped_children == 1 && mapped_child != nullptr &&
1593
2
               _can_push_down_minmax_for_mapping(*mapped_child);
1594
3
    }
1595
1596
    static Status build_aggregate_projection(const ColumnMapping& mapping,
1597
2
                                             LocalColumnIndex* projection) {
1598
2
        DORIS_CHECK(projection != nullptr);
1599
2
        DORIS_CHECK(mapping.file_local_id.has_value());
1600
2
        *projection = LocalColumnIndex::local(*mapping.file_local_id);
1601
2
        projection->children.clear();
1602
2
        projection->project_all_children = true;
1603
2
        if (mapping.child_mappings.empty()) {
1604
1
            return Status::OK();
1605
1
        }
1606
1
        projection->project_all_children = false;
1607
1
        for (const auto& child_mapping : mapping.child_mappings) {
1608
1
            if (!child_mapping.file_local_id.has_value()) {
1609
0
                continue;
1610
0
            }
1611
1
            LocalColumnIndex child_projection;
1612
1
            RETURN_IF_ERROR(build_aggregate_projection(child_mapping, &child_projection));
1613
1
            projection->children.push_back(std::move(child_projection));
1614
1
        }
1615
1
        DORIS_CHECK(projection->children.size() == 1);
1616
1
        return Status::OK();
1617
1
    }
1618
1619
    static Status _insert_aggregate_projection_value(const LocalColumnIndex& projection,
1620
24
                                                     const Field& value, IColumn* column) {
1621
24
        DORIS_CHECK(column != nullptr);
1622
24
        if (auto* nullable_column = check_and_get_column<ColumnNullable>(*column)) {
1623
12
            RETURN_IF_ERROR(_insert_aggregate_projection_value(
1624
12
                    projection, value, &nullable_column->get_nested_column()));
1625
12
            nullable_column->get_null_map_data().push_back(0);
1626
12
            return Status::OK();
1627
12
        }
1628
12
        if (projection.project_all_children || projection.children.empty()) {
1629
10
            column->insert(value);
1630
10
            return Status::OK();
1631
10
        }
1632
2
        auto* struct_column = assert_cast<ColumnStruct*>(column);
1633
2
        DORIS_CHECK(projection.children.size() == 1);
1634
2
        const auto& child_projection = projection.children[0];
1635
2
        DORIS_CHECK(struct_column->get_columns().size() == 1);
1636
2
        RETURN_IF_ERROR(_insert_aggregate_projection_value(child_projection, value,
1637
2
                                                           &struct_column->get_column(0)));
1638
2
        return Status::OK();
1639
2
    }
1640
1641
    // Parse a DV into its compressed bitmap. Position delete files continue to use _delete_rows.
1642
    Status _parse_delete_predicates(const SplitReadOptions& options);
1643
};
1644
1645
} // namespace doris::format