Coverage Report

Created: 2026-07-21 15:34

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