Coverage Report

Created: 2026-09-24 08:14

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
126M
    Field() : type(PrimitiveType::TYPE_NULL) {}
190
    // set Types::Null explictly and avoid other types
191
6.66M
    Field(PrimitiveType w) : type(w) {}
192
    template <PrimitiveType T>
193
28.4M
    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
28.4M
        auto f = Field();
197
28.4M
        f.template create_concrete<T>(data);
198
28.4M
        return f;
199
28.4M
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE23EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
722k
    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
722k
        auto f = Field();
197
722k
        f.template create_concrete<T>(data);
198
722k
        return f;
199
722k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE37EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
23.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
23.4k
        auto f = Field();
197
23.4k
        f.template create_concrete<T>(data);
198
23.4k
        return f;
199
23.4k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE41EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
15
    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
15
        auto f = Field();
197
15
        f.template create_concrete<T>(data);
198
15
        return f;
199
15
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE5EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
26.2M
    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.2M
        auto f = Field();
197
26.2M
        f.template create_concrete<T>(data);
198
26.2M
        return f;
199
26.2M
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE17EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
52.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
52.1k
        auto f = Field();
197
52.1k
        f.template create_concrete<T>(data);
198
52.1k
        return f;
199
52.1k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE28EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
21.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
21.4k
        auto f = Field();
197
21.4k
        f.template create_concrete<T>(data);
198
21.4k
        return f;
199
21.4k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE29EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
25.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
25.6k
        auto f = Field();
197
25.6k
        f.template create_concrete<T>(data);
198
25.6k
        return f;
199
25.6k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE20EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
8.64k
    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.64k
        auto f = Field();
197
8.64k
        f.template create_concrete<T>(data);
198
8.64k
        return f;
199
8.64k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE30EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
25.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
25.8k
        auto f = Field();
197
25.8k
        f.template create_concrete<T>(data);
198
25.8k
        return f;
199
25.8k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE35EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
37.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
37.1k
        auto f = Field();
197
37.1k
        f.template create_concrete<T>(data);
198
37.1k
        return f;
199
37.1k
    }
_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
129
    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
129
        auto f = Field();
197
129
        f.template create_concrete<T>(data);
198
129
        return f;
199
129
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE43EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
296
    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
296
        auto f = Field();
197
296
        f.template create_concrete<T>(data);
198
296
        return f;
199
296
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE42EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
485
    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
485
        auto f = Field();
197
485
        f.template create_concrete<T>(data);
198
485
        return f;
199
485
    }
_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
309k
    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
309k
        auto f = Field();
197
309k
        f.template create_concrete<T>(data);
198
309k
        return f;
199
309k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE4EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
40.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
40.0k
        auto f = Field();
197
40.0k
        f.template create_concrete<T>(data);
198
40.0k
        return f;
199
40.0k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE6EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
94.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
94.6k
        auto f = Field();
197
94.6k
        f.template create_concrete<T>(data);
198
94.6k
        return f;
199
94.6k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE8EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
39.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
39.0k
        auto f = Field();
197
39.0k
        f.template create_concrete<T>(data);
198
39.0k
        return f;
199
39.0k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE9EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
37.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
37.6k
        auto f = Field();
197
37.6k
        f.template create_concrete<T>(data);
198
37.6k
        return f;
199
37.6k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE11EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
9.06k
    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
9.06k
        auto f = Field();
197
9.06k
        f.template create_concrete<T>(data);
198
9.06k
        return f;
199
9.06k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE12EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
13.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
13.5k
        auto f = Field();
197
13.5k
        f.template create_concrete<T>(data);
198
13.5k
        return f;
199
13.5k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE26EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
103k
    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
103k
        auto f = Field();
197
103k
        f.template create_concrete<T>(data);
198
103k
        return f;
199
103k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE36EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
33.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
33.1k
        auto f = Field();
197
33.1k
        f.template create_concrete<T>(data);
198
33.1k
        return f;
199
33.1k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE2EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
27.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
27.5k
        auto f = Field();
197
27.5k
        f.template create_concrete<T>(data);
198
27.5k
        return f;
199
27.5k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE7EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
35.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
35.0k
        auto f = Field();
197
35.0k
        f.template create_concrete<T>(data);
198
35.0k
        return f;
199
35.0k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE25EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
246k
    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
246k
        auto f = Field();
197
246k
        f.template create_concrete<T>(data);
198
246k
        return f;
199
246k
    }
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
893
    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
893
        auto f = Field();
197
893
        f.template create_concrete<T>(data);
198
893
        return f;
199
893
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE10EEES0_RKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
193
208k
    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
208k
        auto f = Field();
197
208k
        f.template create_concrete<T>(data);
198
208k
        return f;
199
208k
    }
_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
63.7M
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
63.7M
        auto f = Field();
203
63.7M
        f.template create_concrete<T>(std::move(data));
204
63.7M
        return f;
205
63.7M
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE23EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
1.91M
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
1.91M
        auto f = Field();
203
1.91M
        f.template create_concrete<T>(std::move(data));
204
1.91M
        return f;
205
1.91M
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE17EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
83.6k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
83.6k
        auto f = Field();
203
83.6k
        f.template create_concrete<T>(std::move(data));
204
83.6k
        return f;
205
83.6k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE1EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
37.5k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
37.5k
        auto f = Field();
203
37.5k
        f.template create_concrete<T>(std::move(data));
204
37.5k
        return f;
205
37.5k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE18EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
23.1k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
23.1k
        auto f = Field();
203
23.1k
        f.template create_concrete<T>(std::move(data));
204
23.1k
        return f;
205
23.1k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE25EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
112k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
112k
        auto f = Field();
203
112k
        f.template create_concrete<T>(std::move(data));
204
112k
        return f;
205
112k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE26EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
125k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
125k
        auto f = Field();
203
125k
        f.template create_concrete<T>(std::move(data));
204
125k
        return f;
205
125k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE12EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
3.22k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
3.22k
        auto f = Field();
203
3.22k
        f.template create_concrete<T>(std::move(data));
204
3.22k
        return f;
205
3.22k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE28EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
17.7k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
17.7k
        auto f = Field();
203
17.7k
        f.template create_concrete<T>(std::move(data));
204
17.7k
        return f;
205
17.7k
    }
_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
10.3k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
10.3k
        auto f = Field();
203
10.3k
        f.template create_concrete<T>(std::move(data));
204
10.3k
        return f;
205
10.3k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE30EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
42.5k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
42.5k
        auto f = Field();
203
42.5k
        f.template create_concrete<T>(std::move(data));
204
42.5k
        return f;
205
42.5k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE35EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
4.62k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
4.62k
        auto f = Field();
203
4.62k
        f.template create_concrete<T>(std::move(data));
204
4.62k
        return f;
205
4.62k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE36EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
3.14k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
3.14k
        auto f = Field();
203
3.14k
        f.template create_concrete<T>(std::move(data));
204
3.14k
        return f;
205
3.14k
    }
_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
2.53M
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
2.53M
        auto f = Field();
203
2.53M
        f.template create_concrete<T>(std::move(data));
204
2.53M
        return f;
205
2.53M
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE4EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
58.6k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
58.6k
        auto f = Field();
203
58.6k
        f.template create_concrete<T>(std::move(data));
204
58.6k
        return f;
205
58.6k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE5EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
1.38M
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
1.38M
        auto f = Field();
203
1.38M
        f.template create_concrete<T>(std::move(data));
204
1.38M
        return f;
205
1.38M
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE6EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
14.8M
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
14.8M
        auto f = Field();
203
14.8M
        f.template create_concrete<T>(std::move(data));
204
14.8M
        return f;
205
14.8M
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE7EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
91.0k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
91.0k
        auto f = Field();
203
91.0k
        f.template create_concrete<T>(std::move(data));
204
91.0k
        return f;
205
91.0k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE8EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
20.6k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
20.6k
        auto f = Field();
203
20.6k
        f.template create_concrete<T>(std::move(data));
204
20.6k
        return f;
205
20.6k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE9EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
33.2k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
33.2k
        auto f = Field();
203
33.2k
        f.template create_concrete<T>(std::move(data));
204
33.2k
        return f;
205
33.2k
    }
_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
3.90k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
3.90k
        auto f = Field();
203
3.90k
        f.template create_concrete<T>(std::move(data));
204
3.90k
        return f;
205
3.90k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE32EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
6.68k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
6.68k
        auto f = Field();
203
6.68k
        f.template create_concrete<T>(std::move(data));
204
6.68k
        return f;
205
6.68k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE11EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
4.02k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
4.02k
        auto f = Field();
203
4.02k
        f.template create_concrete<T>(std::move(data));
204
4.02k
        return f;
205
4.02k
    }
_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
609
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
609
        auto f = Field();
203
609
        f.template create_concrete<T>(std::move(data));
204
609
        return f;
205
609
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE43EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
101
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
101
        auto f = Field();
203
101
        f.template create_concrete<T>(std::move(data));
204
101
        return f;
205
101
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE37EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
1.49k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
1.49k
        auto f = Field();
203
1.49k
        f.template create_concrete<T>(std::move(data));
204
1.49k
        return f;
205
1.49k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE22EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
68
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
68
        auto f = Field();
203
68
        f.template create_concrete<T>(std::move(data));
204
68
        return f;
205
68
    }
_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
29.3k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
29.3k
        auto f = Field();
203
29.3k
        f.template create_concrete<T>(std::move(data));
204
29.3k
        return f;
205
29.3k
    }
_ZN5doris5Field12create_fieldILNS_13PrimitiveTypeE10EEES0_ONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
201
448k
    static Field create_field(typename PrimitiveTypeTraits<T>::CppType&& data) {
202
448k
        auto f = Field();
203
448k
        f.template create_concrete<T>(std::move(data));
204
448k
        return f;
205
448k
    }
206
207
    template <PrimitiveType PType, typename ValType = std::conditional_t<
208
                                           doris::is_string_type(PType), StringRef,
209
                                           typename PrimitiveTypeTraits<PType>::StorageFieldType>>
210
1.01M
    static Field create_field_from_olap_value(const ValType& data) {
211
1.01M
        auto f = Field(PType);
212
1.01M
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
1.01M
        if constexpr (is_string_type(PType)) {
214
321k
            cpp_value = String(data.data, data.size);
215
321k
        } else if constexpr (is_date_or_datetime(PType)) {
216
1.42k
            if constexpr (PType == TYPE_DATE) {
217
561
                cpp_value.from_olap_date(data);
218
867
            } else {
219
867
                cpp_value.from_olap_datetime(data);
220
867
            }
221
1.42k
        } else if constexpr (is_decimalv2(PType)) {
222
327
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
695k
        } else {
224
695k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
695k
        }
226
1.01M
        f.template create_concrete<PType>(std::move(cpp_value));
227
1.01M
        return f;
228
1.01M
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE3EaEES0_RKT0_
Line
Count
Source
210
54.9k
    static Field create_field_from_olap_value(const ValType& data) {
211
54.9k
        auto f = Field(PType);
212
54.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
54.9k
        } else {
224
54.9k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
54.9k
        }
226
54.9k
        f.template create_concrete<PType>(std::move(cpp_value));
227
54.9k
        return f;
228
54.9k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE4EsEES0_RKT0_
Line
Count
Source
210
12.8k
    static Field create_field_from_olap_value(const ValType& data) {
211
12.8k
        auto f = Field(PType);
212
12.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
12.8k
        } else {
224
12.8k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
12.8k
        }
226
12.8k
        f.template create_concrete<PType>(std::move(cpp_value));
227
12.8k
        return f;
228
12.8k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE5EiEES0_RKT0_
Line
Count
Source
210
139k
    static Field create_field_from_olap_value(const ValType& data) {
211
139k
        auto f = Field(PType);
212
139k
        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
139k
        } else {
224
139k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
139k
        }
226
139k
        f.template create_concrete<PType>(std::move(cpp_value));
227
139k
        return f;
228
139k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE6ElEES0_RKT0_
Line
Count
Source
210
337k
    static Field create_field_from_olap_value(const ValType& data) {
211
337k
        auto f = Field(PType);
212
337k
        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
337k
        } else {
224
337k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
337k
        }
226
337k
        f.template create_concrete<PType>(std::move(cpp_value));
227
337k
        return f;
228
337k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE7EnEES0_RKT0_
Line
Count
Source
210
22.0k
    static Field create_field_from_olap_value(const ValType& data) {
211
22.0k
        auto f = Field(PType);
212
22.0k
        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.0k
        } else {
224
22.0k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
22.0k
        }
226
22.0k
        f.template create_concrete<PType>(std::move(cpp_value));
227
22.0k
        return f;
228
22.0k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE8EfEES0_RKT0_
Line
Count
Source
210
5.62k
    static Field create_field_from_olap_value(const ValType& data) {
211
5.62k
        auto f = Field(PType);
212
5.62k
        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
5.62k
        } else {
224
5.62k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
5.62k
        }
226
5.62k
        f.template create_concrete<PType>(std::move(cpp_value));
227
5.62k
        return f;
228
5.62k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE9EdEES0_RKT0_
Line
Count
Source
210
10.7k
    static Field create_field_from_olap_value(const ValType& data) {
211
10.7k
        auto f = Field(PType);
212
10.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
10.7k
        } else {
224
10.7k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
10.7k
        }
226
10.7k
        f.template create_concrete<PType>(std::move(cpp_value));
227
10.7k
        return f;
228
10.7k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE15ENS_9StringRefEEES0_RKT0_
Line
Count
Source
210
18.2k
    static Field create_field_from_olap_value(const ValType& data) {
211
18.2k
        auto f = Field(PType);
212
18.2k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
18.2k
        if constexpr (is_string_type(PType)) {
214
18.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
18.2k
        f.template create_concrete<PType>(std::move(cpp_value));
227
18.2k
        return f;
228
18.2k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE11ENS_8uint24_tEEES0_RKT0_
Line
Count
Source
210
561
    static Field create_field_from_olap_value(const ValType& data) {
211
561
        auto f = Field(PType);
212
561
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
561
        } else if constexpr (is_date_or_datetime(PType)) {
216
561
            if constexpr (PType == TYPE_DATE) {
217
561
                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
561
        f.template create_concrete<PType>(std::move(cpp_value));
227
561
        return f;
228
561
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE12EmEES0_RKT0_
Line
Count
Source
210
867
    static Field create_field_from_olap_value(const ValType& data) {
211
867
        auto f = Field(PType);
212
867
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
        if constexpr (is_string_type(PType)) {
214
            cpp_value = String(data.data, data.size);
215
867
        } else if constexpr (is_date_or_datetime(PType)) {
216
            if constexpr (PType == TYPE_DATE) {
217
                cpp_value.from_olap_date(data);
218
867
            } else {
219
867
                cpp_value.from_olap_datetime(data);
220
867
            }
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
867
        f.template create_concrete<PType>(std::move(cpp_value));
227
867
        return f;
228
867
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE25EjEES0_RKT0_
Line
Count
Source
210
31.6k
    static Field create_field_from_olap_value(const ValType& data) {
211
31.6k
        auto f = Field(PType);
212
31.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
31.6k
        } else {
224
31.6k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
31.6k
        }
226
31.6k
        f.template create_concrete<PType>(std::move(cpp_value));
227
31.6k
        return f;
228
31.6k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE26EmEES0_RKT0_
Line
Count
Source
210
34.8k
    static Field create_field_from_olap_value(const ValType& data) {
211
34.8k
        auto f = Field(PType);
212
34.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
34.8k
        } else {
224
34.8k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
34.8k
        }
226
34.8k
        f.template create_concrete<PType>(std::move(cpp_value));
227
34.8k
        return f;
228
34.8k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE43ElEES0_RKT0_
Line
Count
Source
210
38
    static Field create_field_from_olap_value(const ValType& data) {
211
38
        auto f = Field(PType);
212
38
        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
38
        } else {
224
38
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
38
        }
226
38
        f.template create_concrete<PType>(std::move(cpp_value));
227
38
        return f;
228
38
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE42EmEES0_RKT0_
Line
Count
Source
210
321
    static Field create_field_from_olap_value(const ValType& data) {
211
321
        auto f = Field(PType);
212
321
        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
321
        } else {
224
321
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
321
        }
226
321
        f.template create_concrete<PType>(std::move(cpp_value));
227
321
        return f;
228
321
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE36EjEES0_RKT0_
Line
Count
Source
210
669
    static Field create_field_from_olap_value(const ValType& data) {
211
669
        auto f = Field(PType);
212
669
        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
669
        } else {
224
669
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
669
        }
226
669
        f.template create_concrete<PType>(std::move(cpp_value));
227
669
        return f;
228
669
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE37EoEES0_RKT0_
Line
Count
Source
210
645
    static Field create_field_from_olap_value(const ValType& data) {
211
645
        auto f = Field(PType);
212
645
        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
645
        } else {
224
645
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
645
        }
226
645
        f.template create_concrete<PType>(std::move(cpp_value));
227
645
        return f;
228
645
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE10ENS_9StringRefEEES0_RKT0_
Line
Count
Source
210
173k
    static Field create_field_from_olap_value(const ValType& data) {
211
173k
        auto f = Field(PType);
212
173k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
173k
        if constexpr (is_string_type(PType)) {
214
173k
            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
173k
        f.template create_concrete<PType>(std::move(cpp_value));
227
173k
        return f;
228
173k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE23ENS_9StringRefEEES0_RKT0_
Line
Count
Source
210
129k
    static Field create_field_from_olap_value(const ValType& data) {
211
129k
        auto f = Field(PType);
212
129k
        typename PrimitiveTypeTraits<PType>::CppType cpp_value;
213
129k
        if constexpr (is_string_type(PType)) {
214
129k
            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
129k
        f.template create_concrete<PType>(std::move(cpp_value));
227
129k
        return f;
228
129k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE28EiEES0_RKT0_
Line
Count
Source
210
5.57k
    static Field create_field_from_olap_value(const ValType& data) {
211
5.57k
        auto f = Field(PType);
212
5.57k
        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
5.57k
        } else {
224
5.57k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
5.57k
        }
226
5.57k
        f.template create_concrete<PType>(std::move(cpp_value));
227
5.57k
        return f;
228
5.57k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE29ElEES0_RKT0_
Line
Count
Source
210
16.3k
    static Field create_field_from_olap_value(const ValType& data) {
211
16.3k
        auto f = Field(PType);
212
16.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
16.3k
        } else {
224
16.3k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
16.3k
        }
226
16.3k
        f.template create_concrete<PType>(std::move(cpp_value));
227
16.3k
        return f;
228
16.3k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE30EnEES0_RKT0_
Line
Count
Source
210
12.0k
    static Field create_field_from_olap_value(const ValType& data) {
211
12.0k
        auto f = Field(PType);
212
12.0k
        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
12.0k
        } else {
224
12.0k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
12.0k
        }
226
12.0k
        f.template create_concrete<PType>(std::move(cpp_value));
227
12.0k
        return f;
228
12.0k
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE35EN4wide7integerILm256EiEEEES0_RKT0_
Line
Count
Source
210
687
    static Field create_field_from_olap_value(const ValType& data) {
211
687
        auto f = Field(PType);
212
687
        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
687
        } else {
224
687
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
687
        }
226
687
        f.template create_concrete<PType>(std::move(cpp_value));
227
687
        return f;
228
687
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE20ENS_11decimal12_tEEES0_RKT0_
Line
Count
Source
210
327
    static Field create_field_from_olap_value(const ValType& data) {
211
327
        auto f = Field(PType);
212
327
        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
327
        } else if constexpr (is_decimalv2(PType)) {
222
327
            cpp_value = DecimalV2Value(data.integer, data.fraction);
223
        } else {
224
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
        }
226
327
        f.template create_concrete<PType>(std::move(cpp_value));
227
327
        return f;
228
327
    }
_ZN5doris5Field28create_field_from_olap_valueILNS_13PrimitiveTypeE2EhEES0_RKT0_
Line
Count
Source
210
9.28k
    static Field create_field_from_olap_value(const ValType& data) {
211
9.28k
        auto f = Field(PType);
212
9.28k
        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
9.28k
        } else {
224
9.28k
            cpp_value = typename PrimitiveTypeTraits<PType>::CppType(data);
225
9.28k
        }
226
9.28k
        f.template create_concrete<PType>(std::move(cpp_value));
227
9.28k
        return f;
228
9.28k
    }
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
33.2M
    Field& operator=(Field&& rhs) {
245
33.2M
        if (this != &rhs) {
246
33.2M
            if (type != rhs.type) {
247
31.3M
                destroy();
248
31.3M
                type = TYPE_NULL;
249
31.3M
                create(std::move(rhs));
250
31.3M
            } else {
251
1.91M
                assign(std::move(rhs));
252
1.91M
            }
253
33.2M
        }
254
33.2M
        return *this;
255
33.2M
    }
256
257
341M
    ~Field() { destroy(); }
258
259
29.2M
    PrimitiveType get_type() const { return type; }
260
    std::string get_type_name() const;
261
262
125M
    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.01k
    bool is_nan() const {
274
        // Keep type dispatch with the value so callers cannot reinterpret Field storage using a
275
        // mismatched PrimitiveType.
276
6.01k
        if (type == PrimitiveType::TYPE_FLOAT) {
277
40
            return std::isnan(get<TYPE_FLOAT>());
278
40
        }
279
5.97k
        if (type == PrimitiveType::TYPE_DOUBLE) {
280
40
            return std::isnan(get<TYPE_DOUBLE>());
281
40
        }
282
5.93k
        return false;
283
5.97k
    }
284
285
5.51M
    bool operator==(const Field& rhs) const {
286
5.51M
        return operator<=>(rhs) == std::strong_ordering::equal;
287
5.51M
    }
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
881
    size_t operator()(const doris::Field& field) const {
348
881
        if (field.is_null()) {
349
79
            return 0;
350
79
        }
351
802
        std::hash<std::string_view> hasher;
352
802
        return hasher(field.as_string_view());
353
881
    }
354
};