Coverage Report

Created: 2026-09-25 12:51

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/core/field.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
// This file is copied from
18
// https://github.com/ClickHouse/ClickHouse/blob/master/src/Core/Field.h
19
// and modified by Doris
20
21
#pragma once
22
23
#include <fmt/format.h>
24
#include <glog/logging.h>
25
26
#include <algorithm>
27
#include <cassert>
28
#include <cmath>
29
#include <cstring>
30
#include <string>
31
#include <string_view>
32
#include <type_traits>
33
#include <utility>
34
#include <vector>
35
36
#include "common/compiler_util.h" // IWYU pragma: keep
37
#include "common/exception.h"
38
#include "core/data_type/primitive_type.h"
39
#include "core/string_view.h"
40
#include "core/types.h"
41
#include "core/uint128.h"
42
#include "core/value/bitmap_value.h"
43
#include "core/value/hll.h"
44
#include "core/value/quantile_state.h"
45
#include "core/value/variant/variant_field.h"
46
47
namespace doris {
48
template <PrimitiveType type>
49
struct PrimitiveTypeTraits;
50
template <typename T>
51
struct TypeName;
52
struct PackedInt128;
53
} // namespace doris
54
55
namespace doris {
56
57
class Field;
58
59
using FieldVector = std::vector<Field>;
60
61
/// Array and Struct use the same storage type -- FieldVector, but we declare
62
/// distinct types for them, so that the caller can choose whether it wants to
63
/// construct a Field of Array or a Struct type. An alternative approach would be
64
/// to construct both of these types from FieldVector, and have the caller
65
/// specify the desired Field type explicitly.
66
struct Array : public FieldVector {
67
    using FieldVector::FieldVector;
68
};
69
70
struct Struct : public FieldVector {
71
    using FieldVector::FieldVector;
72
};
73
74
struct Map : public FieldVector {
75
    using FieldVector::FieldVector;
76
};
77
78
//TODO: rethink if we really need this? it only save one pointer from std::string
79
// not POD type so could only use read/write_json_binary instead of read/write_binary
80
class JsonbField {
81
public:
82
43.9k
    JsonbField() = default;
83
175k
    ~JsonbField() = default; // unique_ptr will handle cleanup automatically
84
85
43.9k
    JsonbField(const char* ptr, size_t len) : size(len) {
86
43.9k
        data = std::make_unique<char[]>(size);
87
43.9k
        if (!data) {
88
0
            throw Exception(Status::FatalError("new data buffer failed, size: {}", size));
89
0
        }
90
43.9k
        if (size > 0) {
91
43.4k
            memcpy(data.get(), ptr, size);
92
43.4k
        }
93
43.9k
    }
94
95
12
    JsonbField(const JsonbField& x) : size(x.size) {
96
12
        data = std::make_unique<char[]>(size);
97
12
        if (!data) {
98
0
            throw Exception(Status::FatalError("new data buffer failed, size: {}", size));
99
0
        }
100
12
        if (size > 0) {
101
12
            memcpy(data.get(), x.data.get(), size);
102
12
        }
103
12
    }
104
105
87.9k
    JsonbField(JsonbField&& x) noexcept : data(std::move(x.data)), size(x.size) { x.size = 0; }
106
107
    // dispatch for all type of storage. so need this. but not really used now.
108
2
    JsonbField& operator=(const JsonbField& x) {
109
2
        if (this != &x) {
110
2
            data = std::make_unique<char[]>(x.size);
111
2
            if (!data) {
112
0
                throw Exception(Status::FatalError("new data buffer failed, size: {}", x.size));
113
0
            }
114
2
            if (x.size > 0) {
115
1
                memcpy(data.get(), x.data.get(), x.size);
116
1
            }
117
2
            size = x.size;
118
2
        }
119
2
        return *this;
120
2
    }
121
122
43.9k
    JsonbField& operator=(JsonbField&& x) noexcept {
123
43.9k
        if (this != &x) {
124
43.9k
            data = std::move(x.data);
125
43.9k
            size = x.size;
126
43.9k
            x.size = 0;
127
43.9k
        }
128
43.9k
        return *this;
129
43.9k
    }
130
131
44.0k
    const char* get_value() const { return data.get(); }
132
44.0k
    size_t get_size() const { return size; }
133
134
0
    bool operator<(const JsonbField& r) const {
135
0
        throw Exception(Status::FatalError("comparing between JsonbField is not supported"));
136
0
    }
137
0
    bool operator<=(const JsonbField& r) const {
138
0
        throw Exception(Status::FatalError("comparing between JsonbField is not supported"));
139
0
    }
140
0
    bool operator==(const JsonbField& r) const {
141
0
        throw Exception(Status::FatalError("comparing between JsonbField is not supported"));
142
0
    }
143
0
    bool operator>(const JsonbField& r) const {
144
0
        throw Exception(Status::FatalError("comparing between JsonbField is not supported"));
145
0
    }
146
0
    bool operator>=(const JsonbField& r) const {
147
0
        throw Exception(Status::FatalError("comparing between JsonbField is not supported"));
148
0
    }
149
0
    bool operator!=(const JsonbField& r) const {
150
0
        throw Exception(Status::FatalError("comparing between JsonbField is not supported"));
151
0
    }
152
153
0
    const JsonbField& operator+=(const JsonbField& r) {
154
0
        throw Exception(Status::FatalError("Not support plus opration on JsonbField"));
155
0
    }
156
157
0
    const JsonbField& operator-=(const JsonbField& r) {
158
0
        throw Exception(Status::FatalError("Not support minus opration on JsonbField"));
159
0
    }
160
161
private:
162
    std::unique_ptr<char[]> data = nullptr;
163
    size_t size = 0;
164
};
165
166
template <typename T>
167
bool decimal_equal(T x, T y, UInt32 x_scale, UInt32 y_scale);
168
template <typename T>
169
bool decimal_less(T x, T y, UInt32 x_scale, UInt32 y_scale);
170
template <typename T>
171
bool decimal_less_or_equal(T x, T y, UInt32 x_scale, UInt32 y_scale);
172
173
/** 32 is enough. Round number is used for alignment and for better arithmetic inside std::vector.
174
  * NOTE: Actually, sizeof(std::string) is 32 when using libc++, so Field is 40 bytes.
175
  */
176
constexpr size_t DBMS_MIN_FIELD_SIZE = 32;
177
178
/** Discriminated union of several types.
179
  * Made for replacement of `boost::variant`
180
  *  is not generalized,
181
  *  but somewhat more efficient, and simpler.
182
  *
183
  * Used to represent a single value of one of several types in memory.
184
  * Warning! Prefer to use chunks of columns instead of single values. See Column.h
185
  */
186
class Field {
187
public:
188
    static const int MIN_NON_POD = 16;
189
138M
    Field() : type(PrimitiveType::TYPE_NULL) {}
190
    // set Types::Null explictly and avoid other types
191
9.38M
    Field(PrimitiveType w) : type(w) {}
192
    template <PrimitiveType T>
193
30.0M
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
30.0M
        auto f = Field();
197
30.0M
        f.template create_concrete<T>(data);
198
30.0M
        return f;
199
30.0M
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE23EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
967k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
967k
        auto f = Field();
197
967k
        f.template create_concrete<T>(data);
198
967k
        return f;
199
967k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE37EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
24.1k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
24.1k
        auto f = Field();
197
24.1k
        f.template create_concrete<T>(data);
198
24.1k
        return f;
199
24.1k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE41EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
51
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
51
        auto f = Field();
197
51
        f.template create_concrete<T>(data);
198
51
        return f;
199
51
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE5EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
26.3M
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
26.3M
        auto f = Field();
197
26.3M
        f.template create_concrete<T>(data);
198
26.3M
        return f;
199
26.3M
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE17EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
40.8k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
40.8k
        auto f = Field();
197
40.8k
        f.template create_concrete<T>(data);
198
40.8k
        return f;
199
40.8k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE28EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
22.3k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
22.3k
        auto f = Field();
197
22.3k
        f.template create_concrete<T>(data);
198
22.3k
        return f;
199
22.3k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE29EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
29.8k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
29.8k
        auto f = Field();
197
29.8k
        f.template create_concrete<T>(data);
198
29.8k
        return f;
199
29.8k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE20EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
8.73k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
8.73k
        auto f = Field();
197
8.73k
        f.template create_concrete<T>(data);
198
8.73k
        return f;
199
8.73k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE30EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
27.6k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
27.6k
        auto f = Field();
197
27.6k
        f.template create_concrete<T>(data);
198
27.6k
        return f;
199
27.6k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE35EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
38.5k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
38.5k
        auto f = Field();
197
38.5k
        f.template create_concrete<T>(data);
198
38.5k
        return f;
199
38.5k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE19EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
404
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
404
        auto f = Field();
197
404
        f.template create_concrete<T>(data);
198
404
        return f;
199
404
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE24EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
22.3k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
22.3k
        auto f = Field();
197
22.3k
        f.template create_concrete<T>(data);
198
22.3k
        return f;
199
22.3k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE27EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
179
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
179
        auto f = Field();
197
179
        f.template create_concrete<T>(data);
198
179
        return f;
199
179
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE43EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
5.59k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
5.59k
        auto f = Field();
197
5.59k
        f.template create_concrete<T>(data);
198
5.59k
        return f;
199
5.59k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE42EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
17.0k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
17.0k
        auto f = Field();
197
17.0k
        f.template create_concrete<T>(data);
198
17.0k
        return f;
199
17.0k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE22EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
2.42k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
2.42k
        auto f = Field();
197
2.42k
        f.template create_concrete<T>(data);
198
2.42k
        return f;
199
2.42k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE3EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
417k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
417k
        auto f = Field();
197
417k
        f.template create_concrete<T>(data);
198
417k
        return f;
199
417k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE4EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
52.4k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
52.4k
        auto f = Field();
197
52.4k
        f.template create_concrete<T>(data);
198
52.4k
        return f;
199
52.4k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE6EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
170k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
170k
        auto f = Field();
197
170k
        f.template create_concrete<T>(data);
198
170k
        return f;
199
170k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE8EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
43.7k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
43.7k
        auto f = Field();
197
43.7k
        f.template create_concrete<T>(data);
198
43.7k
        return f;
199
43.7k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE9EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
707k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
707k
        auto f = Field();
197
707k
        f.template create_concrete<T>(data);
198
707k
        return f;
199
707k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE11EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
19.4k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
19.4k
        auto f = Field();
197
19.4k
        f.template create_concrete<T>(data);
198
19.4k
        return f;
199
19.4k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE12EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
13.8k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
13.8k
        auto f = Field();
197
13.8k
        f.template create_concrete<T>(data);
198
13.8k
        return f;
199
13.8k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE26EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
101k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
101k
        auto f = Field();
197
101k
        f.template create_concrete<T>(data);
198
101k
        return f;
199
101k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE36EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
33.2k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
33.2k
        auto f = Field();
197
33.2k
        f.template create_concrete<T>(data);
198
33.2k
        return f;
199
33.2k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE2EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
30.7k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
30.7k
        auto f = Field();
197
30.7k
        f.template create_concrete<T>(data);
198
30.7k
        return f;
199
30.7k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE7EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
38.7k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
38.7k
        auto f = Field();
197
38.7k
        f.template create_concrete<T>(data);
198
38.7k
        return f;
199
38.7k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE25EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
581k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
581k
        auto f = Field();
197
581k
        f.template create_concrete<T>(data);
198
581k
        return f;
199
581k
    }
Unexecuted instantiation: _ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE38EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Unexecuted instantiation: _ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE39EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE15EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
1.70k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
1.70k
        auto f = Field();
197
1.70k
        f.template create_concrete<T>(data);
198
1.70k
        return f;
199
1.70k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE10EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
313k
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
313k
        auto f = Field();
197
313k
        f.template create_concrete<T>(data);
198
313k
        return f;
199
313k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE31EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
4
    static Field create_field(const typename PrimitiveTypeTraits<T>::CppType& data) {
194
        // Publish the type only after construction succeeds, so allocation failures cannot
195
        // destroy uninitialized owned storage (including long binary values).
196
4
        auto f = Field();
197
4
        f.template create_concrete<T>(data);
198
4
        return f;
199
4
    }
200
    template <PrimitiveType T>
201
67.5M
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
67.5M
        auto f = Field();
203
67.5M
        f.template create_concrete<T>(std::move(data));
204
67.5M
        return f;
205
67.5M
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE23EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
2.10M
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
2.10M
        auto f = Field();
203
2.10M
        f.template create_concrete<T>(std::move(data));
204
2.10M
        return f;
205
2.10M
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE17EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
88.0k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
88.0k
        auto f = Field();
203
88.0k
        f.template create_concrete<T>(std::move(data));
204
88.0k
        return f;
205
88.0k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE1EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
47.7k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
47.7k
        auto f = Field();
203
47.7k
        f.template create_concrete<T>(std::move(data));
204
47.7k
        return f;
205
47.7k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE18EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
18.4k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
18.4k
        auto f = Field();
203
18.4k
        f.template create_concrete<T>(std::move(data));
204
18.4k
        return f;
205
18.4k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE25EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
200k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
200k
        auto f = Field();
203
200k
        f.template create_concrete<T>(std::move(data));
204
200k
        return f;
205
200k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE26EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
238k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
238k
        auto f = Field();
203
238k
        f.template create_concrete<T>(std::move(data));
204
238k
        return f;
205
238k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE12EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
4.78k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
4.78k
        auto f = Field();
203
4.78k
        f.template create_concrete<T>(std::move(data));
204
4.78k
        return f;
205
4.78k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE28EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
38.5k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
38.5k
        auto f = Field();
203
38.5k
        f.template create_concrete<T>(std::move(data));
204
38.5k
        return f;
205
38.5k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE29EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
13.5M
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
13.5M
        auto f = Field();
203
13.5M
        f.template create_concrete<T>(std::move(data));
204
13.5M
        return f;
205
13.5M
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE20EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
11.1k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
11.1k
        auto f = Field();
203
11.1k
        f.template create_concrete<T>(std::move(data));
204
11.1k
        return f;
205
11.1k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE30EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
72.0k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
72.0k
        auto f = Field();
203
72.0k
        f.template create_concrete<T>(std::move(data));
204
72.0k
        return f;
205
72.0k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE35EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
8.93k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
8.93k
        auto f = Field();
203
8.93k
        f.template create_concrete<T>(std::move(data));
204
8.93k
        return f;
205
8.93k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE36EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
4.85k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
4.85k
        auto f = Field();
203
4.85k
        f.template create_concrete<T>(std::move(data));
204
4.85k
        return f;
205
4.85k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE31EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
87.9k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
87.9k
        auto f = Field();
203
87.9k
        f.template create_concrete<T>(std::move(data));
204
87.9k
        return f;
205
87.9k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE41EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
65
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
65
        auto f = Field();
203
65
        f.template create_concrete<T>(std::move(data));
204
65
        return f;
205
65
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE2EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
28.3M
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
28.3M
        auto f = Field();
203
28.3M
        f.template create_concrete<T>(std::move(data));
204
28.3M
        return f;
205
28.3M
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE3EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
4.53M
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
4.53M
        auto f = Field();
203
4.53M
        f.template create_concrete<T>(std::move(data));
204
4.53M
        return f;
205
4.53M
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE4EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
90.6k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
90.6k
        auto f = Field();
203
90.6k
        f.template create_concrete<T>(std::move(data));
204
90.6k
        return f;
205
90.6k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE5EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
1.73M
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
1.73M
        auto f = Field();
203
1.73M
        f.template create_concrete<T>(std::move(data));
204
1.73M
        return f;
205
1.73M
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE6EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
15.1M
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
15.1M
        auto f = Field();
203
15.1M
        f.template create_concrete<T>(std::move(data));
204
15.1M
        return f;
205
15.1M
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE7EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
130k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
130k
        auto f = Field();
203
130k
        f.template create_concrete<T>(std::move(data));
204
130k
        return f;
205
130k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE8EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
47.2k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
47.2k
        auto f = Field();
203
47.2k
        f.template create_concrete<T>(std::move(data));
204
47.2k
        return f;
205
47.2k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE9EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
61.4k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
61.4k
        auto f = Field();
203
61.4k
        f.template create_concrete<T>(std::move(data));
204
61.4k
        return f;
205
61.4k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE27EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
1
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
1
        auto f = Field();
203
1
        f.template create_concrete<T>(std::move(data));
204
1
        return f;
205
1
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE16EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
4.44k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
4.44k
        auto f = Field();
203
4.44k
        f.template create_concrete<T>(std::move(data));
204
4.44k
        return f;
205
4.44k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE32EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
6.69k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
6.69k
        auto f = Field();
203
6.69k
        f.template create_concrete<T>(std::move(data));
204
6.69k
        return f;
205
6.69k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE11EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
5.26k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
5.26k
        auto f = Field();
203
5.26k
        f.template create_concrete<T>(std::move(data));
204
5.26k
        return f;
205
5.26k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE24EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
10
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
10
        auto f = Field();
203
10
        f.template create_concrete<T>(std::move(data));
204
10
        return f;
205
10
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE42EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
26.5k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
26.5k
        auto f = Field();
203
26.5k
        f.template create_concrete<T>(std::move(data));
204
26.5k
        return f;
205
26.5k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE43EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
727
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
727
        auto f = Field();
203
727
        f.template create_concrete<T>(std::move(data));
204
727
        return f;
205
727
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE37EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
2.74k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
2.74k
        auto f = Field();
203
2.74k
        f.template create_concrete<T>(std::move(data));
204
2.74k
        return f;
205
2.74k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE22EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
74
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
74
        auto f = Field();
203
74
        f.template create_concrete<T>(std::move(data));
204
74
        return f;
205
74
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE19EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
10
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
10
        auto f = Field();
203
10
        f.template create_concrete<T>(std::move(data));
204
10
        return f;
205
10
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE15EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
54.1k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
54.1k
        auto f = Field();
203
54.1k
        f.template create_concrete<T>(std::move(data));
204
54.1k
        return f;
205
54.1k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE10EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
770k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
770k
        auto f = Field();
203
770k
        f.template create_concrete<T>(std::move(data));
204
770k
        return f;
205
770k
    }
206
207
    template <PrimitiveType PType, typename ValType = std::conditional_t<
208
                                           doris::is_string_type(PType), StringRef,
209
                                           typename PrimitiveTypeTraits<PType>::StorageFieldType>>
210
1.48M
    static Field create_field_from_olap_value(const ValType& data) {
211
1.48M
        auto f = Field(PType);
212
1.48M
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
1.48M
        if constexpr (is_string_type(PType)) {
214
474k
            cpp_value = String(data.data, data.size);
215
474k
        } else if constexpr (is_date_or_datetime(PType)) {
216
2.29k
            if constexpr (PType == TYPE_DATE) {
217
1.31k
                cpp_value.from_olap_date(data);
218
1.31k
            } else {
219
977
                cpp_value.from_olap_datetime(data);
220
977
            }
221
2.29k
        } else if constexpr (is_decimalv2(PType)) {
222
425
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
1.01M
        } else {
224
1.01M
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
1.01M
        }
226
1.48M
        f.template create_concrete<PType>(std::move(cpp_value));
227
1.48M
        return f;
228
1.48M
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE3EaEES0_RKT0_
Line
Count
Source
210
82.4k
    static Field create_field_from_olap_value(const ValType& data) {
211
82.4k
        auto f = Field(PType);
212
82.4k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
82.4k
        } else {
224
82.4k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
82.4k
        }
226
82.4k
        f.template create_concrete<PType>(std::move(cpp_value));
227
82.4k
        return f;
228
82.4k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE4EsEES0_RKT0_
Line
Count
Source
210
22.3k
    static Field create_field_from_olap_value(const ValType& data) {
211
22.3k
        auto f = Field(PType);
212
22.3k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
22.3k
        } else {
224
22.3k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
22.3k
        }
226
22.3k
        f.template create_concrete<PType>(std::move(cpp_value));
227
22.3k
        return f;
228
22.3k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE5EiEES0_RKT0_
Line
Count
Source
210
201k
    static Field create_field_from_olap_value(const ValType& data) {
211
201k
        auto f = Field(PType);
212
201k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
201k
        } else {
224
201k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
201k
        }
226
201k
        f.template create_concrete<PType>(std::move(cpp_value));
227
201k
        return f;
228
201k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE6ElEES0_RKT0_
Line
Count
Source
210
429k
    static Field create_field_from_olap_value(const ValType& data) {
211
429k
        auto f = Field(PType);
212
429k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
429k
        } else {
224
429k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
429k
        }
226
429k
        f.template create_concrete<PType>(std::move(cpp_value));
227
429k
        return f;
228
429k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE7EnEES0_RKT0_
Line
Count
Source
210
33.7k
    static Field create_field_from_olap_value(const ValType& data) {
211
33.7k
        auto f = Field(PType);
212
33.7k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
33.7k
        } else {
224
33.7k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
33.7k
        }
226
33.7k
        f.template create_concrete<PType>(std::move(cpp_value));
227
33.7k
        return f;
228
33.7k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE8EfEES0_RKT0_
Line
Count
Source
210
13.8k
    static Field create_field_from_olap_value(const ValType& data) {
211
13.8k
        auto f = Field(PType);
212
13.8k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
13.8k
        } else {
224
13.8k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
13.8k
        }
226
13.8k
        f.template create_concrete<PType>(std::move(cpp_value));
227
13.8k
        return f;
228
13.8k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE9EdEES0_RKT0_
Line
Count
Source
210
19.2k
    static Field create_field_from_olap_value(const ValType& data) {
211
19.2k
        auto f = Field(PType);
212
19.2k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
19.2k
        } else {
224
19.2k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
19.2k
        }
226
19.2k
        f.template create_concrete<PType>(std::move(cpp_value));
227
19.2k
        return f;
228
19.2k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE15ENS_9StringRefEEES0_RKT0_
Line
Count
Source
210
34.2k
    static Field create_field_from_olap_value(const ValType& data) {
211
34.2k
        auto f = Field(PType);
212
34.2k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
34.2k
        if constexpr (is_string_type(PType)) {
214
34.2k
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
        } else {
224
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
        }
226
34.2k
        f.template create_concrete<PType>(std::move(cpp_value));
227
34.2k
        return f;
228
34.2k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE11ENS_8uint24_tEEES0_RKT0_
Line
Count
Source
210
1.31k
    static Field create_field_from_olap_value(const ValType& data) {
211
1.31k
        auto f = Field(PType);
212
1.31k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
1.31k
        } else if constexpr (is_date_or_datetime(PType)) {
216
1.31k
            if constexpr (PType == TYPE_DATE) {
217
1.31k
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
        } else {
224
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
        }
226
1.31k
        f.template create_concrete<PType>(std::move(cpp_value));
227
1.31k
        return f;
228
1.31k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE12EmEES0_RKT0_
Line
Count
Source
210
977
    static Field create_field_from_olap_value(const ValType& data) {
211
977
        auto f = Field(PType);
212
977
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
977
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
977
            } else {
219
977
                cpp_value.from_olap_datetime(data);
220
977
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
        } else {
224
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
        }
226
977
        f.template create_concrete<PType>(std::move(cpp_value));
227
977
        return f;
228
977
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE25EjEES0_RKT0_
Line
Count
Source
210
58.9k
    static Field create_field_from_olap_value(const ValType& data) {
211
58.9k
        auto f = Field(PType);
212
58.9k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
58.9k
        } else {
224
58.9k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
58.9k
        }
226
58.9k
        f.template create_concrete<PType>(std::move(cpp_value));
227
58.9k
        return f;
228
58.9k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE26EmEES0_RKT0_
Line
Count
Source
210
66.1k
    static Field create_field_from_olap_value(const ValType& data) {
211
66.1k
        auto f = Field(PType);
212
66.1k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
66.1k
        } else {
224
66.1k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
66.1k
        }
226
66.1k
        f.template create_concrete<PType>(std::move(cpp_value));
227
66.1k
        return f;
228
66.1k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE43ElEES0_RKT0_
Line
Count
Source
210
298
    static Field create_field_from_olap_value(const ValType& data) {
211
298
        auto f = Field(PType);
212
298
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
298
        } else {
224
298
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
298
        }
226
298
        f.template create_concrete<PType>(std::move(cpp_value));
227
298
        return f;
228
298
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE42EmEES0_RKT0_
Line
Count
Source
210
7.04k
    static Field create_field_from_olap_value(const ValType& data) {
211
7.04k
        auto f = Field(PType);
212
7.04k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
7.04k
        } else {
224
7.04k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
7.04k
        }
226
7.04k
        f.template create_concrete<PType>(std::move(cpp_value));
227
7.04k
        return f;
228
7.04k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE36EjEES0_RKT0_
Line
Count
Source
210
1.03k
    static Field create_field_from_olap_value(const ValType& data) {
211
1.03k
        auto f = Field(PType);
212
1.03k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
1.03k
        } else {
224
1.03k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
1.03k
        }
226
1.03k
        f.template create_concrete<PType>(std::move(cpp_value));
227
1.03k
        return f;
228
1.03k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE37EoEES0_RKT0_
Line
Count
Source
210
1.06k
    static Field create_field_from_olap_value(const ValType& data) {
211
1.06k
        auto f = Field(PType);
212
1.06k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
1.06k
        } else {
224
1.06k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
1.06k
        }
226
1.06k
        f.template create_concrete<PType>(std::move(cpp_value));
227
1.06k
        return f;
228
1.06k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE10ENS_9StringRefEEES0_RKT0_
Line
Count
Source
210
304k
    static Field create_field_from_olap_value(const ValType& data) {
211
304k
        auto f = Field(PType);
212
304k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
304k
        if constexpr (is_string_type(PType)) {
214
304k
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
        } else {
224
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
        }
226
304k
        f.template create_concrete<PType>(std::move(cpp_value));
227
304k
        return f;
228
304k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE23ENS_9StringRefEEES0_RKT0_
Line
Count
Source
210
136k
    static Field create_field_from_olap_value(const ValType& data) {
211
136k
        auto f = Field(PType);
212
136k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
136k
        if constexpr (is_string_type(PType)) {
214
136k
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
        } else {
224
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
        }
226
136k
        f.template create_concrete<PType>(std::move(cpp_value));
227
136k
        return f;
228
136k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE28EiEES0_RKT0_
Line
Count
Source
210
6.72k
    static Field create_field_from_olap_value(const ValType& data) {
211
6.72k
        auto f = Field(PType);
212
6.72k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
6.72k
        } else {
224
6.72k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
6.72k
        }
226
6.72k
        f.template create_concrete<PType>(std::move(cpp_value));
227
6.72k
        return f;
228
6.72k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE29ElEES0_RKT0_
Line
Count
Source
210
31.1k
    static Field create_field_from_olap_value(const ValType& data) {
211
31.1k
        auto f = Field(PType);
212
31.1k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
31.1k
        } else {
224
31.1k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
31.1k
        }
226
31.1k
        f.template create_concrete<PType>(std::move(cpp_value));
227
31.1k
        return f;
228
31.1k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE30EnEES0_RKT0_
Line
Count
Source
210
20.1k
    static Field create_field_from_olap_value(const ValType& data) {
211
20.1k
        auto f = Field(PType);
212
20.1k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
20.1k
        } else {
224
20.1k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
20.1k
        }
226
20.1k
        f.template create_concrete<PType>(std::move(cpp_value));
227
20.1k
        return f;
228
20.1k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE35EN4wide7integerILm256EiEEEES0_RKT0_
Line
Count
Source
210
1.16k
    static Field create_field_from_olap_value(const ValType& data) {
211
1.16k
        auto f = Field(PType);
212
1.16k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
1.16k
        } else {
224
1.16k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
1.16k
        }
226
1.16k
        f.template create_concrete<PType>(std::move(cpp_value));
227
1.16k
        return f;
228
1.16k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE20ENS_11decimal12_tEEES0_RKT0_
Line
Count
Source
210
425
    static Field create_field_from_olap_value(const ValType& data) {
211
425
        auto f = Field(PType);
212
425
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
425
        } else if constexpr (is_decimalv2(PType)) {
222
425
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
        } else {
224
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
        }
226
425
        f.template create_concrete<PType>(std::move(cpp_value));
227
425
        return f;
228
425
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE2EhEES0_RKT0_
Line
Count
Source
210
15.6k
    static Field create_field_from_olap_value(const ValType& data) {
211
15.6k
        auto f = Field(PType);
212
15.6k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
            } else {
219
                cpp_value.from_olap_datetime(data);
220
            }
221
        } else if constexpr (is_decimalv2(PType)) {
222
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
15.6k
        } else {
224
15.6k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
15.6k
        }
226
15.6k
        f.template create_concrete<PType>(std::move(cpp_value));
227
15.6k
        return f;
228
15.6k
    }
229
230
    /** Despite the presence of a template constructor, this constructor is still needed,
231
      *  since, in its absence, the compiler will still generate the default constructor.
232
      */
233
    Field(const Field& rhs);
234
235
    Field(Field&& rhs);
236
237
    Field& operator=(const Field& rhs);
238
239
0
    bool is_complex_field() const {
240
0
        return type == PrimitiveType::TYPE_ARRAY || type == PrimitiveType::TYPE_MAP ||
241
0
               type == PrimitiveType::TYPE_STRUCT || type == PrimitiveType::TYPE_VARIANT;
242
0
    }
243
244
37.5M
    Field& operator=(Field&& rhs) {
245
37.5M
        if (this != &rhs) {
246
37.5M
            if (type != rhs.type) {
247
35.1M
                destroy();
248
35.1M
                type = TYPE_NULL;
249
35.1M
                create(std::move(rhs));
250
35.1M
            } else {
251
2.43M
                assign(std::move(rhs));
252
2.43M
            }
253
37.5M
        }
254
37.5M
        return *this;
255
37.5M
    }
256
257
358M
    ~Field() { destroy(); }
258
259
30.0M
    PrimitiveType get_type() const { return type; }
260
    std::string get_type_name() const;
261
262
143M
    bool is_null() const { return type == PrimitiveType::TYPE_NULL; }
263
264
    // The template parameter T needs to be consistent with `which`.
265
    // If not, use NearestFieldType<> externally.
266
    // Maybe modify this in the future, reference: https://github.com/ClickHouse/ClickHouse/pull/22003
267
    template <PrimitiveType T>
268
    typename PrimitiveTypeTraits<T>::CppType& get();
269
270
    template <PrimitiveType T>
271
    const typename PrimitiveTypeTraits<T>::CppType& get() const;
272
273
6.30k
    bool is_nan() const {
274
        // Keep type dispatch with the value so callers cannot reinterpret Field storage using a
275
        // mismatched PrimitiveType.
276
6.30k
        if (type == PrimitiveType::TYPE_FLOAT) {
277
40
            return std::isnan(get<TYPE_FLOAT>());
278
40
        }
279
6.26k
        if (type == PrimitiveType::TYPE_DOUBLE) {
280
40
            return std::isnan(get<TYPE_DOUBLE>());
281
40
        }
282
6.22k
        return false;
283
6.26k
    }
284
285
7.61M
    bool operator==(const Field& rhs) const {
286
7.61M
        return operator<=>(rhs) == std::strong_ordering::equal;
287
7.61M
    }
288
289
    std::strong_ordering operator<=>(const Field& rhs) const;
290
291
    std::string_view as_string_view() const;
292
293
    // Return a human-readable representation of the stored value for debugging.
294
    // Unlike get_type_name() which returns the type, this prints the actual value.
295
    // For decimal types, caller can provide scale for accurate formatting.
296
    std::string to_debug_string(int scale) const;
297
298
private:
299
    std::aligned_union_t<DBMS_MIN_FIELD_SIZE - sizeof(PrimitiveType), Null, UInt64, UInt128, Int64,
300
                         Int128, IPv6, Float64, String, JsonbField, StringView, Array, Struct, Map,
301
                         VariantField, Decimal32, Decimal64, DecimalV2Value, Decimal128V3,
302
                         Decimal256, BitmapValue, HyperLogLog, QuantileState>
303
            storage;
304
305
    PrimitiveType type;
306
307
    /// Assuming there was no allocated state or it was deallocated (see destroy).
308
    template <PrimitiveType Type>
309
    void create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x);
310
    template <PrimitiveType Type>
311
    void create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x);
312
    /// Assuming same types.
313
    template <PrimitiveType Type>
314
    void assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x);
315
    template <PrimitiveType Type>
316
    void assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x);
317
318
    void create(const Field& field);
319
    void create(Field&& field);
320
321
    void assign(const Field& x);
322
    void assign(Field&& x);
323
324
    void destroy();
325
326
    template <PrimitiveType T>
327
    void destroy();
328
};
329
330
struct FieldWithDataType {
331
    Field field;
332
    // used for nested type of array
333
    PrimitiveType base_scalar_type_id = PrimitiveType::INVALID_TYPE;
334
    uint8_t num_dimensions = 0;
335
    int precision = -1;
336
    int scale = -1;
337
    // True when the array elements are mixed-type and must be converted to the common base
338
    // type on insert. Mirrors FieldInfo::need_convert so it survives the FieldWithDataType
339
    // round trip in the sparse read path.
340
    bool need_convert = false;
341
};
342
343
} // namespace doris
344
345
template <>
346
struct std::hash<doris::Field> {
347
2.25k
    size_t operator()(const doris::Field& field) const {
348
2.25k
        if (field.is_null()) {
349
151
            return 0;
350
151
        }
351
2.10k
        std::hash<std::string_view> hasher;
352
2.10k
        return hasher(field.as_string_view());
353
2.25k
    }
354
};