Coverage Report

Created: 2026-09-24 16:37

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/core/field.cpp
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.cpp
19
// and modified by Doris
20
21
#include "core/field.h"
22
23
#include "common/compare.h"
24
#include "core/accurate_comparison.h"
25
#include "core/allocator.h"
26
#include "core/allocator_fwd.h"
27
#include "core/data_type/data_type_decimal.h"
28
#include "core/data_type/define_primitive_type.h"
29
#include "core/data_type/primitive_type.h"
30
#include "core/decimal_comparison.h"
31
#include "core/value/bitmap_value.h"
32
#include "core/value/jsonb_value.h"
33
#include "core/value/timestamptz_value.h"
34
#include "core/value/vdatetime_value.h"
35
#include "exprs/function/cast/cast_to_string.h"
36
#include "util/json/path_in_data.h"
37
#include "util/var_int.h"
38
39
namespace doris {
40
class BufferReadable;
41
class BufferWritable;
42
43
template <PrimitiveType T>
44
bool dec_equal(typename PrimitiveTypeTraits<T>::CppType x,
45
0
               typename PrimitiveTypeTraits<T>::CppType y, UInt32 x_scale, UInt32 y_scale) {
46
0
    using Comparator = DecimalComparison<T, T, EqualsOp>;
47
0
    return Comparator::compare(x, y, x_scale, y_scale);
48
0
}
Unexecuted instantiation: _ZN5doris9dec_equalILNS_13PrimitiveTypeE28EEEbNS_19PrimitiveTypeTraitsIXT_EE7CppTypeES4_jj
Unexecuted instantiation: _ZN5doris9dec_equalILNS_13PrimitiveTypeE29EEEbNS_19PrimitiveTypeTraitsIXT_EE7CppTypeES4_jj
Unexecuted instantiation: _ZN5doris9dec_equalILNS_13PrimitiveTypeE20EEEbNS_19PrimitiveTypeTraitsIXT_EE7CppTypeES4_jj
Unexecuted instantiation: _ZN5doris9dec_equalILNS_13PrimitiveTypeE35EEEbNS_19PrimitiveTypeTraitsIXT_EE7CppTypeES4_jj
Unexecuted instantiation: _ZN5doris9dec_equalILNS_13PrimitiveTypeE30EEEbNS_19PrimitiveTypeTraitsIXT_EE7CppTypeES4_jj
49
50
template <PrimitiveType T>
51
bool dec_less(typename PrimitiveTypeTraits<T>::CppType x,
52
3.48k
              typename PrimitiveTypeTraits<T>::CppType y, UInt32 x_scale, UInt32 y_scale) {
53
3.48k
    using Comparator = DecimalComparison<T, T, LessOp>;
54
3.48k
    return Comparator::compare(x, y, x_scale, y_scale);
55
3.48k
}
_ZN5doris8dec_lessILNS_13PrimitiveTypeE28EEEbNS_19PrimitiveTypeTraitsIXT_EE7CppTypeES4_jj
Line
Count
Source
52
10
              typename PrimitiveTypeTraits<T>::CppType y, UInt32 x_scale, UInt32 y_scale) {
53
10
    using Comparator = DecimalComparison<T, T, LessOp>;
54
10
    return Comparator::compare(x, y, x_scale, y_scale);
55
10
}
_ZN5doris8dec_lessILNS_13PrimitiveTypeE29EEEbNS_19PrimitiveTypeTraitsIXT_EE7CppTypeES4_jj
Line
Count
Source
52
3
              typename PrimitiveTypeTraits<T>::CppType y, UInt32 x_scale, UInt32 y_scale) {
53
3
    using Comparator = DecimalComparison<T, T, LessOp>;
54
3
    return Comparator::compare(x, y, x_scale, y_scale);
55
3
}
Unexecuted instantiation: _ZN5doris8dec_lessILNS_13PrimitiveTypeE20EEEbNS_19PrimitiveTypeTraitsIXT_EE7CppTypeES4_jj
_ZN5doris8dec_lessILNS_13PrimitiveTypeE35EEEbNS_19PrimitiveTypeTraitsIXT_EE7CppTypeES4_jj
Line
Count
Source
52
972
              typename PrimitiveTypeTraits<T>::CppType y, UInt32 x_scale, UInt32 y_scale) {
53
972
    using Comparator = DecimalComparison<T, T, LessOp>;
54
972
    return Comparator::compare(x, y, x_scale, y_scale);
55
972
}
_ZN5doris8dec_lessILNS_13PrimitiveTypeE30EEEbNS_19PrimitiveTypeTraitsIXT_EE7CppTypeES4_jj
Line
Count
Source
52
2.50k
              typename PrimitiveTypeTraits<T>::CppType y, UInt32 x_scale, UInt32 y_scale) {
53
2.50k
    using Comparator = DecimalComparison<T, T, LessOp>;
54
2.50k
    return Comparator::compare(x, y, x_scale, y_scale);
55
2.50k
}
56
57
template <PrimitiveType T>
58
bool dec_less_or_equal(typename PrimitiveTypeTraits<T>::CppType x,
59
0
                       typename PrimitiveTypeTraits<T>::CppType y, UInt32 x_scale, UInt32 y_scale) {
60
0
    using Comparator = DecimalComparison<T, T, LessOrEqualsOp>;
61
0
    return Comparator::compare(x, y, x_scale, y_scale);
62
0
}
Unexecuted instantiation: _ZN5doris17dec_less_or_equalILNS_13PrimitiveTypeE28EEEbNS_19PrimitiveTypeTraitsIXT_EE7CppTypeES4_jj
Unexecuted instantiation: _ZN5doris17dec_less_or_equalILNS_13PrimitiveTypeE29EEEbNS_19PrimitiveTypeTraitsIXT_EE7CppTypeES4_jj
Unexecuted instantiation: _ZN5doris17dec_less_or_equalILNS_13PrimitiveTypeE20EEEbNS_19PrimitiveTypeTraitsIXT_EE7CppTypeES4_jj
Unexecuted instantiation: _ZN5doris17dec_less_or_equalILNS_13PrimitiveTypeE35EEEbNS_19PrimitiveTypeTraitsIXT_EE7CppTypeES4_jj
Unexecuted instantiation: _ZN5doris17dec_less_or_equalILNS_13PrimitiveTypeE30EEEbNS_19PrimitiveTypeTraitsIXT_EE7CppTypeES4_jj
63
64
#define DECLARE_DECIMAL_COMPARISON(TYPE, PTYPE)                        \
65
    template <>                                                        \
66
0
    bool decimal_equal(TYPE x, TYPE y, UInt32 xs, UInt32 ys) {         \
67
0
        return dec_equal<PTYPE>(x, y, xs, ys);                         \
68
0
    }                                                                  \
Unexecuted instantiation: _ZN5doris13decimal_equalINS_7DecimalIiEEEEbT_S3_jj
Unexecuted instantiation: _ZN5doris13decimal_equalINS_7DecimalIlEEEEbT_S3_jj
Unexecuted instantiation: _ZN5doris13decimal_equalINS_14DecimalV2ValueEEEbT_S2_jj
Unexecuted instantiation: _ZN5doris13decimal_equalINS_7DecimalIN4wide7integerILm256EiEEEEEEbT_S6_jj
69
    template <>                                                        \
70
985
    bool decimal_less(TYPE x, TYPE y, UInt32 xs, UInt32 ys) {          \
71
985
        return dec_less<PTYPE>(x, y, xs, ys);                          \
72
985
    }                                                                  \
_ZN5doris12decimal_lessINS_7DecimalIiEEEEbT_S3_jj
Line
Count
Source
70
10
    bool decimal_less(TYPE x, TYPE y, UInt32 xs, UInt32 ys) {          \
71
10
        return dec_less<PTYPE>(x, y, xs, ys);                          \
72
10
    }                                                                  \
_ZN5doris12decimal_lessINS_7DecimalIlEEEEbT_S3_jj
Line
Count
Source
70
3
    bool decimal_less(TYPE x, TYPE y, UInt32 xs, UInt32 ys) {          \
71
3
        return dec_less<PTYPE>(x, y, xs, ys);                          \
72
3
    }                                                                  \
Unexecuted instantiation: _ZN5doris12decimal_lessINS_14DecimalV2ValueEEEbT_S2_jj
_ZN5doris12decimal_lessINS_7DecimalIN4wide7integerILm256EiEEEEEEbT_S6_jj
Line
Count
Source
70
972
    bool decimal_less(TYPE x, TYPE y, UInt32 xs, UInt32 ys) {          \
71
972
        return dec_less<PTYPE>(x, y, xs, ys);                          \
72
972
    }                                                                  \
73
    template <>                                                        \
74
0
    bool decimal_less_or_equal(TYPE x, TYPE y, UInt32 xs, UInt32 ys) { \
75
0
        return dec_less_or_equal<PTYPE>(x, y, xs, ys);                 \
76
0
    }
Unexecuted instantiation: _ZN5doris21decimal_less_or_equalINS_7DecimalIiEEEEbT_S3_jj
Unexecuted instantiation: _ZN5doris21decimal_less_or_equalINS_7DecimalIlEEEEbT_S3_jj
Unexecuted instantiation: _ZN5doris21decimal_less_or_equalINS_14DecimalV2ValueEEEbT_S2_jj
Unexecuted instantiation: _ZN5doris21decimal_less_or_equalINS_7DecimalIN4wide7integerILm256EiEEEEEEbT_S6_jj
77
78
DECLARE_DECIMAL_COMPARISON(Decimal32, TYPE_DECIMAL32)
79
DECLARE_DECIMAL_COMPARISON(Decimal64, TYPE_DECIMAL64)
80
DECLARE_DECIMAL_COMPARISON(DecimalV2Value, TYPE_DECIMALV2)
81
DECLARE_DECIMAL_COMPARISON(Decimal256, TYPE_DECIMAL256)
82
83
template <>
84
0
bool decimal_equal(Decimal128V3 x, Decimal128V3 y, UInt32 xs, UInt32 ys) {
85
0
    return dec_equal<TYPE_DECIMAL128I>(x, y, xs, ys);
86
0
}
87
template <>
88
2.50k
bool decimal_less(Decimal128V3 x, Decimal128V3 y, UInt32 xs, UInt32 ys) {
89
2.50k
    return dec_less<TYPE_DECIMAL128I>(x, y, xs, ys);
90
2.50k
}
91
template <>
92
0
bool decimal_less_or_equal(Decimal128V3 x, Decimal128V3 y, UInt32 xs, UInt32 ys) {
93
0
    return dec_less_or_equal<TYPE_DECIMAL128I>(x, y, xs, ys);
94
0
}
95
96
namespace {
97
// Expression literals can outlive decoder pages and source columns.
98
// Keep the view first for Field::get(), and fit ownership into the existing Field storage.
99
struct OwnedBinaryField {
100
    StringView view;
101
    char* bytes = nullptr;
102
    size_t byte_size = 0;
103
104
183
    explicit OwnedBinaryField(const StringView& value) {
105
        // Inline views already own their bytes; preserve their allocation-free representation.
106
183
        if (value.isInline()) {
107
139
            view = value;
108
139
            return;
109
139
        }
110
        // Charge retained payloads and deep-copy peaks through Doris's checked allocator.
111
        // Keep a standard-layout owner so the leading view remains accessible via Field::get().
112
44
        bytes = static_cast<char*>(Allocator<false> {}.alloc(value.size()));
113
44
        byte_size = value.size();
114
44
        memcpy(bytes, value.data(), value.size());
115
44
        view = StringView(bytes, value.size());
116
44
    }
117
    OwnedBinaryField(const OwnedBinaryField&) = delete;
118
    OwnedBinaryField& operator=(const OwnedBinaryField&) = delete;
119
14
    OwnedBinaryField& operator=(OwnedBinaryField&& other) noexcept {
120
14
        release_bytes();
121
14
        view = other.view;
122
14
        bytes = std::exchange(other.bytes, nullptr);
123
14
        byte_size = std::exchange(other.byte_size, 0);
124
14
        return *this;
125
14
    }
126
179
    ~OwnedBinaryField() { release_bytes(); }
127
128
private:
129
193
    void release_bytes() const {
130
193
        if (bytes != nullptr) {
131
            // Field::get() exposes a mutable view; release the original allocation size.
132
40
            Allocator<false> {}.free(bytes, byte_size);
133
40
        }
134
193
    }
135
};
136
static_assert(std::is_standard_layout_v<OwnedBinaryField>);
137
static_assert(offsetof(OwnedBinaryField, view) == 0);
138
} // namespace
139
140
template <PrimitiveType Type>
141
105M
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
105M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
105M
    if constexpr (Type == TYPE_VARBINARY) {
149
101
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
101
        new (&storage) OwnedBinaryField(x);
151
105M
    } else {
152
105M
        new (&storage) StorageType(std::move(x));
153
105M
    }
154
105M
    type = Type;
155
105M
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
105M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE1EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
139k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
139k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
139k
    } else {
152
139k
        new (&storage) StorageType(std::move(x));
153
139k
    }
154
139k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
139k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE3EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
9.43M
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
9.43M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
9.43M
    } else {
152
9.43M
        new (&storage) StorageType(std::move(x));
153
9.43M
    }
154
9.43M
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
9.43M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE4EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
244k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
244k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
244k
    } else {
152
244k
        new (&storage) StorageType(std::move(x));
153
244k
    }
154
244k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
244k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE5EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
27.7M
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
27.7M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
27.7M
    } else {
152
27.7M
        new (&storage) StorageType(std::move(x));
153
27.7M
    }
154
27.7M
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
27.7M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE6EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
16.9M
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
16.9M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
16.9M
    } else {
152
16.9M
        new (&storage) StorageType(std::move(x));
153
16.9M
    }
154
16.9M
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
16.9M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE7EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
317k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
317k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
317k
    } else {
152
317k
        new (&storage) StorageType(std::move(x));
153
317k
    }
154
317k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
317k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE11EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
18.8k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
18.8k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
18.8k
    } else {
152
18.8k
        new (&storage) StorageType(std::move(x));
153
18.8k
    }
154
18.8k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
18.8k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE12EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
26.9k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
26.9k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
26.9k
    } else {
152
26.9k
        new (&storage) StorageType(std::move(x));
153
26.9k
    }
154
26.9k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
26.9k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE25EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
750k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
750k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
750k
    } else {
152
750k
        new (&storage) StorageType(std::move(x));
153
750k
    }
154
750k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
750k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE26EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
620k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
620k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
620k
    } else {
152
620k
        new (&storage) StorageType(std::move(x));
153
620k
    }
154
620k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
620k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE43EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
6.95k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
6.95k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
6.95k
    } else {
152
6.95k
        new (&storage) StorageType(std::move(x));
153
6.95k
    }
154
6.95k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
6.95k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE28EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
103k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
103k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
103k
    } else {
152
103k
        new (&storage) StorageType(std::move(x));
153
103k
    }
154
103k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
103k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE29EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
13.7M
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
13.7M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
13.7M
    } else {
152
13.7M
        new (&storage) StorageType(std::move(x));
153
13.7M
    }
154
13.7M
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
13.7M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE20EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
18.2k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
18.2k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
18.2k
    } else {
152
18.2k
        new (&storage) StorageType(std::move(x));
153
18.2k
    }
154
18.2k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
18.2k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE30EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
185k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
185k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
185k
    } else {
152
185k
        new (&storage) StorageType(std::move(x));
153
185k
    }
154
185k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
185k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE35EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
53.7k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
53.7k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
53.7k
    } else {
152
53.7k
        new (&storage) StorageType(std::move(x));
153
53.7k
    }
154
53.7k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
53.7k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE15EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
144k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
144k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
144k
    } else {
152
144k
        new (&storage) StorageType(std::move(x));
153
144k
    }
154
144k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
144k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE10EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
2.13M
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
2.13M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
2.13M
    } else {
152
2.13M
        new (&storage) StorageType(std::move(x));
153
2.13M
    }
154
2.13M
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
2.13M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE23EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
3.90M
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
3.90M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
3.90M
    } else {
152
3.90M
        new (&storage) StorageType(std::move(x));
153
3.90M
    }
154
3.90M
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
3.90M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE41EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
101
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
101
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
101
    if constexpr (Type == TYPE_VARBINARY) {
149
101
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
101
        new (&storage) OwnedBinaryField(x);
151
    } else {
152
        new (&storage) StorageType(std::move(x));
153
    }
154
101
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
101
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE19EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
14
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
14
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
14
    } else {
152
14
        new (&storage) StorageType(std::move(x));
153
14
    }
154
14
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
14
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE32EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
13.4k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
13.4k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
13.4k
    } else {
152
13.4k
        new (&storage) StorageType(std::move(x));
153
13.4k
    }
154
13.4k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
13.4k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE24EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
12
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
12
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
12
    } else {
152
12
        new (&storage) StorageType(std::move(x));
153
12
    }
154
12
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
12
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE17EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
159k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
159k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
159k
    } else {
152
159k
        new (&storage) StorageType(std::move(x));
153
159k
    }
154
159k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
159k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE42EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
71.4k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
71.4k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
71.4k
    } else {
152
71.4k
        new (&storage) StorageType(std::move(x));
153
71.4k
    }
154
71.4k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
71.4k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE36EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
43.8k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
43.8k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
43.8k
    } else {
152
43.8k
        new (&storage) StorageType(std::move(x));
153
43.8k
    }
154
43.8k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
43.8k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE37EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
30.3k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
30.3k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
30.3k
    } else {
152
30.3k
        new (&storage) StorageType(std::move(x));
153
30.3k
    }
154
30.3k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
30.3k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE2EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
28.4M
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
28.4M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
28.4M
    } else {
152
28.4M
        new (&storage) StorageType(std::move(x));
153
28.4M
    }
154
28.4M
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
28.4M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE8EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
151k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
151k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
151k
    } else {
152
151k
        new (&storage) StorageType(std::move(x));
153
151k
    }
154
151k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
151k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE9EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
173k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
173k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
173k
    } else {
152
173k
        new (&storage) StorageType(std::move(x));
153
173k
    }
154
173k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
173k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE31EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
87.9k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
87.9k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
87.9k
    } else {
152
87.9k
        new (&storage) StorageType(std::move(x));
153
87.9k
    }
154
87.9k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
87.9k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE16EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
8.47k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
8.47k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
8.47k
    } else {
152
8.47k
        new (&storage) StorageType(std::move(x));
153
8.47k
    }
154
8.47k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
8.47k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE18EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
20.0k
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
20.0k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
20.0k
    } else {
152
20.0k
        new (&storage) StorageType(std::move(x));
153
20.0k
    }
154
20.0k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
20.0k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE22EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
108
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
108
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
108
    } else {
152
108
        new (&storage) StorageType(std::move(x));
153
108
    }
154
108
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
108
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE27EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
192
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
192
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
192
    } else {
152
192
        new (&storage) StorageType(std::move(x));
153
192
    }
154
192
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
192
}
Unexecuted instantiation: _ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE38EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE39EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
40
void Field::create_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
142
    // In both Field and PODArray, small types may be stored as wider types,
143
    // e.g. char is stored as UInt64. Field can return this extended value
144
    // with get<StorageType>(). To avoid uninitialized results from get(),
145
    // we must initialize the entire wide stored type, and not just the
146
    // nominal type.
147
40
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
    if constexpr (Type == TYPE_VARBINARY) {
149
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
        new (&storage) OwnedBinaryField(x);
151
40
    } else {
152
40
        new (&storage) StorageType(std::move(x));
153
40
    }
154
40
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
40
}
157
158
template <PrimitiveType Type>
159
244M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
244M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
244M
    if constexpr (Type == TYPE_VARBINARY) {
167
66
        new (&storage) OwnedBinaryField(x);
168
244M
    } else {
169
244M
        new (&storage) StorageType(x);
170
244M
    }
171
244M
    type = Type;
172
244M
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
244M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE1EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
39.0M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
39.0M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
39.0M
    } else {
169
39.0M
        new (&storage) StorageType(x);
170
39.0M
    }
171
39.0M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
39.0M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE3EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
5.26M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
5.26M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
5.26M
    } else {
169
5.26M
        new (&storage) StorageType(x);
170
5.26M
    }
171
5.26M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
5.26M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE4EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
4.02M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
4.02M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
4.02M
    } else {
169
4.02M
        new (&storage) StorageType(x);
170
4.02M
    }
171
4.02M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
4.02M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE5EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
27.1M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
27.1M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
27.1M
    } else {
169
27.1M
        new (&storage) StorageType(x);
170
27.1M
    }
171
27.1M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
27.1M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE6EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
5.70M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
5.70M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
5.70M
    } else {
169
5.70M
        new (&storage) StorageType(x);
170
5.70M
    }
171
5.70M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
5.70M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE7EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
3.21M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
3.21M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
3.21M
    } else {
169
3.21M
        new (&storage) StorageType(x);
170
3.21M
    }
171
3.21M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
3.21M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE11EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
3.39M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
3.39M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
3.39M
    } else {
169
3.39M
        new (&storage) StorageType(x);
170
3.39M
    }
171
3.39M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
3.39M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE12EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
3.33M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
3.33M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
3.33M
    } else {
169
3.33M
        new (&storage) StorageType(x);
170
3.33M
    }
171
3.33M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
3.33M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE25EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
5.03M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
5.03M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
5.03M
    } else {
169
5.03M
        new (&storage) StorageType(x);
170
5.03M
    }
171
5.03M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
5.03M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE26EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
4.15M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
4.15M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
4.15M
    } else {
169
4.15M
        new (&storage) StorageType(x);
170
4.15M
    }
171
4.15M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
4.15M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE43EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
8.44k
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
8.44k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
8.44k
    } else {
169
8.44k
        new (&storage) StorageType(x);
170
8.44k
    }
171
8.44k
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
8.44k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE42EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
46.4k
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
46.4k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
46.4k
    } else {
169
46.4k
        new (&storage) StorageType(x);
170
46.4k
    }
171
46.4k
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
46.4k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE28EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
3.61M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
3.61M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
3.61M
    } else {
169
3.61M
        new (&storage) StorageType(x);
170
3.61M
    }
171
3.61M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
3.61M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE29EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
3.62M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
3.62M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
3.62M
    } else {
169
3.62M
        new (&storage) StorageType(x);
170
3.62M
    }
171
3.62M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
3.62M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE20EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
9.75k
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
9.75k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
9.75k
    } else {
169
9.75k
        new (&storage) StorageType(x);
170
9.75k
    }
171
9.75k
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
9.75k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE30EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
3.52M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
3.52M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
3.52M
    } else {
169
3.52M
        new (&storage) StorageType(x);
170
3.52M
    }
171
3.52M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
3.52M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE35EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
3.71M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
3.71M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
3.71M
    } else {
169
3.71M
        new (&storage) StorageType(x);
170
3.71M
    }
171
3.71M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
3.71M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE15EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
4.30k
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
4.30k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
4.30k
    } else {
169
4.30k
        new (&storage) StorageType(x);
170
4.30k
    }
171
4.30k
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
4.30k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE10EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
8.08M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
8.08M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
8.08M
    } else {
169
8.08M
        new (&storage) StorageType(x);
170
8.08M
    }
171
8.08M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
8.08M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE23EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
1.18M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
1.18M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
1.18M
    } else {
169
1.18M
        new (&storage) StorageType(x);
170
1.18M
    }
171
1.18M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
1.18M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE41EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
66
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
66
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
66
    if constexpr (Type == TYPE_VARBINARY) {
167
66
        new (&storage) OwnedBinaryField(x);
168
    } else {
169
        new (&storage) StorageType(x);
170
    }
171
66
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
66
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE19EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
404
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
404
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
404
    } else {
169
404
        new (&storage) StorageType(x);
170
404
    }
171
404
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
404
}
Unexecuted instantiation: _ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE32EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE24EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
22.3k
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
22.3k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
22.3k
    } else {
169
22.3k
        new (&storage) StorageType(x);
170
22.3k
    }
171
22.3k
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
22.3k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE17EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
92.4M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
92.4M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
92.4M
    } else {
169
92.4M
        new (&storage) StorageType(x);
170
92.4M
    }
171
92.4M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
92.4M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE36EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
60.1k
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
60.1k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
60.1k
    } else {
169
60.1k
        new (&storage) StorageType(x);
170
60.1k
    }
171
60.1k
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
60.1k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE37EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
41.6k
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
41.6k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
41.6k
    } else {
169
41.6k
        new (&storage) StorageType(x);
170
41.6k
    }
171
41.6k
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
41.6k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE2EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
3.58M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
3.58M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
3.58M
    } else {
169
3.58M
        new (&storage) StorageType(x);
170
3.58M
    }
171
3.58M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
3.58M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE8EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
3.52M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
3.52M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
3.52M
    } else {
169
3.52M
        new (&storage) StorageType(x);
170
3.52M
    }
171
3.52M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
3.52M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE9EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
4.50M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
4.50M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
4.50M
    } else {
169
4.50M
        new (&storage) StorageType(x);
170
4.50M
    }
171
4.50M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
4.50M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE31EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
11
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
11
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
11
    } else {
169
11
        new (&storage) StorageType(x);
170
11
    }
171
11
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
11
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE16EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
3.04M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
3.04M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
3.04M
    } else {
169
3.04M
        new (&storage) StorageType(x);
170
3.04M
    }
171
3.04M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
3.04M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE18EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
13.2M
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
13.2M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
13.2M
    } else {
169
13.2M
        new (&storage) StorageType(x);
170
13.2M
    }
171
13.2M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
13.2M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE22EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
2.42k
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
2.42k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
2.42k
    } else {
169
2.42k
        new (&storage) StorageType(x);
170
2.42k
    }
171
2.42k
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
2.42k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE27EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
187
void Field::create_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
160
    // In both Field and PODArray, small types may be stored as wider types,
161
    // e.g. char is stored as UInt64. Field can return this extended value
162
    // with get<StorageType>(). To avoid uninitialized results from get(),
163
    // we must initialize the entire wide stored type, and not just the
164
    // nominal type.
165
187
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
187
    } else {
169
187
        new (&storage) StorageType(x);
170
187
    }
171
187
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
187
}
Unexecuted instantiation: _ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE38EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Unexecuted instantiation: _ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE39EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
174
175
36.8M
void Field::create(Field&& field) {
176
36.8M
    switch (field.type) {
177
92.2k
    case PrimitiveType::TYPE_NULL:
178
92.2k
        create_concrete<TYPE_NULL>(std::move(field.template get<TYPE_NULL>()));
179
92.2k
        return;
180
318k
    case PrimitiveType::TYPE_DATETIMEV2:
181
318k
        create_concrete<TYPE_DATETIMEV2>(std::move(field.template get<TYPE_DATETIMEV2>()));
182
318k
        return;
183
5.94k
    case PrimitiveType::TYPE_TIMESTAMP_NS:
184
5.94k
        create_concrete<TYPE_TIMESTAMP_NS>(std::move(field.template get<TYPE_TIMESTAMP_NS>()));
185
5.94k
        return;
186
485k
    case PrimitiveType::TYPE_DATEV2:
187
485k
        create_concrete<TYPE_DATEV2>(std::move(field.template get<TYPE_DATEV2>()));
188
485k
        return;
189
38.1k
    case PrimitiveType::TYPE_TIMESTAMPTZ:
190
38.1k
        create_concrete<TYPE_TIMESTAMPTZ>(std::move(field.template get<TYPE_TIMESTAMPTZ>()));
191
38.1k
        return;
192
19.8k
    case PrimitiveType::TYPE_DATETIME:
193
19.8k
        create_concrete<TYPE_DATETIME>(std::move(field.template get<TYPE_DATETIME>()));
194
19.8k
        return;
195
13.8k
    case PrimitiveType::TYPE_DATE:
196
13.8k
        create_concrete<TYPE_DATE>(std::move(field.template get<TYPE_DATE>()));
197
13.8k
        return;
198
75.8k
    case PrimitiveType::TYPE_BOOLEAN:
199
75.8k
        create_concrete<TYPE_BOOLEAN>(std::move(field.template get<TYPE_BOOLEAN>()));
200
75.8k
        return;
201
4.81M
    case PrimitiveType::TYPE_TINYINT:
202
4.81M
        create_concrete<TYPE_TINYINT>(std::move(field.template get<TYPE_TINYINT>()));
203
4.81M
        return;
204
134k
    case PrimitiveType::TYPE_SMALLINT:
205
134k
        create_concrete<TYPE_SMALLINT>(std::move(field.template get<TYPE_SMALLINT>()));
206
134k
        return;
207
25.7M
    case PrimitiveType::TYPE_INT:
208
25.7M
        create_concrete<TYPE_INT>(std::move(field.template get<TYPE_INT>()));
209
25.7M
        return;
210
1.55M
    case PrimitiveType::TYPE_BIGINT:
211
1.55M
        create_concrete<TYPE_BIGINT>(std::move(field.template get<TYPE_BIGINT>()));
212
1.55M
        return;
213
157k
    case PrimitiveType::TYPE_LARGEINT:
214
157k
        create_concrete<TYPE_LARGEINT>(std::move(field.template get<TYPE_LARGEINT>()));
215
157k
        return;
216
37.9k
    case PrimitiveType::TYPE_IPV4:
217
37.9k
        create_concrete<TYPE_IPV4>(std::move(field.template get<TYPE_IPV4>()));
218
37.9k
        return;
219
26.5k
    case PrimitiveType::TYPE_IPV6:
220
26.5k
        create_concrete<TYPE_IPV6>(std::move(field.template get<TYPE_IPV6>()));
221
26.5k
        return;
222
90.8k
    case PrimitiveType::TYPE_FLOAT:
223
90.8k
        create_concrete<TYPE_FLOAT>(std::move(field.template get<TYPE_FLOAT>()));
224
90.8k
        return;
225
191
    case PrimitiveType::TYPE_TIMEV2:
226
191
        create_concrete<TYPE_TIMEV2>(std::move(field.template get<TYPE_TIMEV2>()));
227
191
        return;
228
95.0k
    case PrimitiveType::TYPE_DOUBLE:
229
95.0k
        create_concrete<TYPE_DOUBLE>(std::move(field.template get<TYPE_DOUBLE>()));
230
95.0k
        return;
231
1.60M
    case PrimitiveType::TYPE_STRING:
232
1.60M
        create_concrete<TYPE_STRING>(std::move(field.template get<TYPE_STRING>()));
233
1.60M
        return;
234
54.1k
    case PrimitiveType::TYPE_CHAR:
235
54.1k
        create_concrete<TYPE_CHAR>(std::move(field.template get<TYPE_CHAR>()));
236
54.1k
        return;
237
1.06M
    case PrimitiveType::TYPE_VARCHAR:
238
1.06M
        create_concrete<TYPE_VARCHAR>(std::move(field.template get<TYPE_VARCHAR>()));
239
1.06M
        return;
240
9
    case PrimitiveType::TYPE_JSONB:
241
9
        create_concrete<TYPE_JSONB>(std::move(field.template get<TYPE_JSONB>()));
242
9
        return;
243
70.1k
    case PrimitiveType::TYPE_ARRAY:
244
70.1k
        create_concrete<TYPE_ARRAY>(std::move(field.template get<TYPE_ARRAY>()));
245
70.1k
        return;
246
4.04k
    case PrimitiveType::TYPE_STRUCT:
247
4.04k
        create_concrete<TYPE_STRUCT>(std::move(field.template get<TYPE_STRUCT>()));
248
4.04k
        return;
249
3.73k
    case PrimitiveType::TYPE_MAP:
250
3.73k
        create_concrete<TYPE_MAP>(std::move(field.template get<TYPE_MAP>()));
251
3.73k
        return;
252
58.3k
    case PrimitiveType::TYPE_DECIMAL32:
253
58.3k
        create_concrete<TYPE_DECIMAL32>(std::move(field.template get<TYPE_DECIMAL32>()));
254
58.3k
        return;
255
94.2k
    case PrimitiveType::TYPE_DECIMAL64:
256
94.2k
        create_concrete<TYPE_DECIMAL64>(std::move(field.template get<TYPE_DECIMAL64>()));
257
94.2k
        return;
258
7.03k
    case PrimitiveType::TYPE_DECIMALV2:
259
7.03k
        create_concrete<TYPE_DECIMALV2>(std::move(field.template get<TYPE_DECIMALV2>()));
260
7.03k
        return;
261
93.0k
    case PrimitiveType::TYPE_DECIMAL128I:
262
93.0k
        create_concrete<TYPE_DECIMAL128I>(std::move(field.template get<TYPE_DECIMAL128I>()));
263
93.0k
        return;
264
43.7k
    case PrimitiveType::TYPE_DECIMAL256:
265
43.7k
        create_concrete<TYPE_DECIMAL256>(std::move(field.template get<TYPE_DECIMAL256>()));
266
43.7k
        return;
267
6.73k
    case PrimitiveType::TYPE_VARIANT:
268
6.73k
        create_concrete<TYPE_VARIANT>(std::move(field.template get<TYPE_VARIANT>()));
269
6.73k
        return;
270
36
    case PrimitiveType::TYPE_BITMAP:
271
36
        create_concrete<TYPE_BITMAP>(std::move(field.template get<TYPE_BITMAP>()));
272
36
        return;
273
4
    case PrimitiveType::TYPE_HLL:
274
4
        create_concrete<TYPE_HLL>(std::move(field.template get<TYPE_HLL>()));
275
4
        return;
276
2
    case PrimitiveType::TYPE_QUANTILE_STATE:
277
2
        create_concrete<TYPE_QUANTILE_STATE>(std::move(field.template get<TYPE_QUANTILE_STATE>()));
278
2
        return;
279
36
    case PrimitiveType::TYPE_VARBINARY:
280
36
        create_concrete<TYPE_VARBINARY>(std::move(field.template get<TYPE_VARBINARY>()));
281
36
        return;
282
0
    default:
283
0
        throw Exception(Status::FatalError("type not supported, type={}", field.get_type_name()));
284
36.8M
    }
285
36.8M
}
286
287
209M
Field::Field(const Field& rhs) {
288
209M
    create(rhs);
289
209M
}
290
291
1.71M
Field::Field(Field&& rhs) {
292
1.71M
    create(std::move(rhs));
293
1.71M
}
294
295
6.50M
Field& Field::operator=(const Field& rhs) {
296
6.50M
    if (this != &rhs) {
297
6.50M
        if (type != rhs.type) {
298
4.99M
            destroy();
299
            // A failed allocation while changing types must leave a destructible Field.
300
4.99M
            type = TYPE_NULL;
301
4.99M
            create(rhs);
302
4.99M
        } else {
303
1.51M
            assign(rhs); /// This assigns string or vector without deallocation of existing buffer.
304
1.51M
        }
305
6.50M
    }
306
6.50M
    return *this;
307
6.50M
}
308
309
214M
void Field::create(const Field& field) {
310
214M
    switch (field.type) {
311
39.0M
    case PrimitiveType::TYPE_NULL:
312
39.0M
        create_concrete<TYPE_NULL>(field.template get<TYPE_NULL>());
313
39.0M
        return;
314
4.05M
    case PrimitiveType::TYPE_DATETIMEV2:
315
4.05M
        create_concrete<TYPE_DATETIMEV2>(field.template get<TYPE_DATETIMEV2>());
316
4.05M
        return;
317
2.46k
    case PrimitiveType::TYPE_TIMESTAMP_NS:
318
2.46k
        create_concrete<TYPE_TIMESTAMP_NS>(field.template get<TYPE_TIMESTAMP_NS>());
319
2.46k
        return;
320
4.44M
    case PrimitiveType::TYPE_DATEV2:
321
4.44M
        create_concrete<TYPE_DATEV2>(field.template get<TYPE_DATEV2>());
322
4.44M
        return;
323
29.3k
    case PrimitiveType::TYPE_TIMESTAMPTZ:
324
29.3k
        create_concrete<TYPE_TIMESTAMPTZ>(field.template get<TYPE_TIMESTAMPTZ>());
325
29.3k
        return;
326
3.32M
    case PrimitiveType::TYPE_DATETIME:
327
3.32M
        create_concrete<TYPE_DATETIME>(field.template get<TYPE_DATETIME>());
328
3.32M
        return;
329
3.38M
    case PrimitiveType::TYPE_DATE:
330
3.38M
        create_concrete<TYPE_DATE>(field.template get<TYPE_DATE>());
331
3.38M
        return;
332
3.55M
    case PrimitiveType::TYPE_BOOLEAN:
333
3.55M
        create_concrete<TYPE_BOOLEAN>(field.template get<TYPE_BOOLEAN>());
334
3.55M
        return;
335
4.85M
    case PrimitiveType::TYPE_TINYINT:
336
4.85M
        create_concrete<TYPE_TINYINT>(field.template get<TYPE_TINYINT>());
337
4.85M
        return;
338
3.97M
    case PrimitiveType::TYPE_SMALLINT:
339
3.97M
        create_concrete<TYPE_SMALLINT>(field.template get<TYPE_SMALLINT>());
340
3.97M
        return;
341
947k
    case PrimitiveType::TYPE_INT:
342
947k
        create_concrete<TYPE_INT>(field.template get<TYPE_INT>());
343
947k
        return;
344
5.54M
    case PrimitiveType::TYPE_BIGINT:
345
5.54M
        create_concrete<TYPE_BIGINT>(field.template get<TYPE_BIGINT>());
346
5.54M
        return;
347
3.17M
    case PrimitiveType::TYPE_LARGEINT:
348
3.17M
        create_concrete<TYPE_LARGEINT>(field.template get<TYPE_LARGEINT>());
349
3.17M
        return;
350
26.8k
    case PrimitiveType::TYPE_IPV4:
351
26.8k
        create_concrete<TYPE_IPV4>(field.template get<TYPE_IPV4>());
352
26.8k
        return;
353
17.4k
    case PrimitiveType::TYPE_IPV6:
354
17.4k
        create_concrete<TYPE_IPV6>(field.template get<TYPE_IPV6>());
355
17.4k
        return;
356
3.48M
    case PrimitiveType::TYPE_FLOAT:
357
3.48M
        create_concrete<TYPE_FLOAT>(field.template get<TYPE_FLOAT>());
358
3.48M
        return;
359
8
    case PrimitiveType::TYPE_TIMEV2:
360
8
        create_concrete<TYPE_TIMEV2>(field.template get<TYPE_TIMEV2>());
361
8
        return;
362
3.79M
    case PrimitiveType::TYPE_DOUBLE:
363
3.79M
        create_concrete<TYPE_DOUBLE>(field.template get<TYPE_DOUBLE>());
364
3.79M
        return;
365
222k
    case PrimitiveType::TYPE_STRING:
366
222k
        create_concrete<TYPE_STRING>(field.template get<TYPE_STRING>());
367
222k
        return;
368
2.56k
    case PrimitiveType::TYPE_CHAR:
369
2.56k
        create_concrete<TYPE_CHAR>(field.template get<TYPE_CHAR>());
370
2.56k
        return;
371
7.77M
    case PrimitiveType::TYPE_VARCHAR:
372
7.77M
        create_concrete<TYPE_VARCHAR>(field.template get<TYPE_VARCHAR>());
373
7.77M
        return;
374
7
    case PrimitiveType::TYPE_JSONB:
375
7
        create_concrete<TYPE_JSONB>(field.template get<TYPE_JSONB>());
376
7
        return;
377
92.4M
    case PrimitiveType::TYPE_ARRAY:
378
92.4M
        create_concrete<TYPE_ARRAY>(field.template get<TYPE_ARRAY>());
379
92.4M
        return;
380
3.04M
    case PrimitiveType::TYPE_STRUCT:
381
3.04M
        create_concrete<TYPE_STRUCT>(field.template get<TYPE_STRUCT>());
382
3.04M
        return;
383
13.2M
    case PrimitiveType::TYPE_MAP:
384
13.2M
        create_concrete<TYPE_MAP>(field.template get<TYPE_MAP>());
385
13.2M
        return;
386
3.58M
    case PrimitiveType::TYPE_DECIMAL32:
387
3.58M
        create_concrete<TYPE_DECIMAL32>(field.template get<TYPE_DECIMAL32>());
388
3.58M
        return;
389
3.59M
    case PrimitiveType::TYPE_DECIMAL64:
390
3.59M
        create_concrete<TYPE_DECIMAL64>(field.template get<TYPE_DECIMAL64>());
391
3.59M
        return;
392
1.13k
    case PrimitiveType::TYPE_DECIMALV2:
393
1.13k
        create_concrete<TYPE_DECIMALV2>(field.template get<TYPE_DECIMALV2>());
394
1.13k
        return;
395
3.49M
    case PrimitiveType::TYPE_DECIMAL128I:
396
3.49M
        create_concrete<TYPE_DECIMAL128I>(field.template get<TYPE_DECIMAL128I>());
397
3.49M
        return;
398
3.67M
    case PrimitiveType::TYPE_DECIMAL256:
399
3.67M
        create_concrete<TYPE_DECIMAL256>(field.template get<TYPE_DECIMAL256>());
400
3.67M
        return;
401
0
    case PrimitiveType::TYPE_VARIANT:
402
0
        create_concrete<TYPE_VARIANT>(field.template get<TYPE_VARIANT>());
403
0
        return;
404
0
    case PrimitiveType::TYPE_BITMAP:
405
0
        create_concrete<TYPE_BITMAP>(field.template get<TYPE_BITMAP>());
406
0
        return;
407
0
    case PrimitiveType::TYPE_HLL:
408
0
        create_concrete<TYPE_HLL>(field.template get<TYPE_HLL>());
409
0
        return;
410
0
    case PrimitiveType::TYPE_QUANTILE_STATE:
411
0
        create_concrete<TYPE_QUANTILE_STATE>(field.template get<TYPE_QUANTILE_STATE>());
412
0
        return;
413
0
    case PrimitiveType::TYPE_UINT32:
414
0
        create_concrete<TYPE_UINT32>(field.template get<TYPE_UINT32>());
415
0
        return;
416
0
    case PrimitiveType::TYPE_UINT64:
417
0
        create_concrete<TYPE_UINT64>(field.template get<TYPE_UINT64>());
418
0
        return;
419
15
    case PrimitiveType::TYPE_VARBINARY:
420
15
        create_concrete<TYPE_VARBINARY>(field.template get<TYPE_VARBINARY>());
421
15
        return;
422
0
    default:
423
0
        throw Exception(Status::FatalError("type not supported, type={}", field.get_type_name()));
424
214M
    }
425
214M
}
426
427
398M
void Field::destroy() {
428
398M
    switch (type) {
429
5.09M
    case PrimitiveType::TYPE_STRING:
430
5.09M
        destroy<TYPE_STRING>();
431
5.09M
        break;
432
148k
    case PrimitiveType::TYPE_CHAR:
433
148k
        destroy<TYPE_CHAR>();
434
148k
        break;
435
10.2M
    case PrimitiveType::TYPE_VARCHAR:
436
10.2M
        destroy<TYPE_VARCHAR>();
437
10.2M
        break;
438
87.9k
    case PrimitiveType::TYPE_JSONB:
439
87.9k
        destroy<TYPE_JSONB>();
440
87.9k
        break;
441
92.6M
    case PrimitiveType::TYPE_ARRAY:
442
92.6M
        destroy<TYPE_ARRAY>();
443
92.6M
        break;
444
3.05M
    case PrimitiveType::TYPE_STRUCT:
445
3.05M
        destroy<TYPE_STRUCT>();
446
3.05M
        break;
447
13.2M
    case PrimitiveType::TYPE_MAP:
448
13.2M
        destroy<TYPE_MAP>();
449
13.2M
        break;
450
13.4k
    case PrimitiveType::TYPE_VARIANT:
451
13.4k
        destroy<TYPE_VARIANT>();
452
13.4k
        break;
453
2.53k
    case PrimitiveType::TYPE_BITMAP:
454
2.53k
        destroy<TYPE_BITMAP>();
455
2.53k
        break;
456
418
    case PrimitiveType::TYPE_HLL:
457
418
        destroy<TYPE_HLL>();
458
418
        break;
459
22.3k
    case PrimitiveType::TYPE_QUANTILE_STATE:
460
22.3k
        destroy<TYPE_QUANTILE_STATE>();
461
22.3k
        break;
462
165
    case PrimitiveType::TYPE_VARBINARY:
463
165
        destroy<TYPE_VARBINARY>();
464
165
        break;
465
274M
    default:
466
274M
        break;
467
398M
    }
468
469
398M
    type = PrimitiveType::
470
398M
            TYPE_NULL; /// for exception safety in subsequent calls to destroy and create, when create fails.
471
398M
}
472
473
2.38M
void Field::assign(Field&& field) {
474
2.38M
    switch (field.type) {
475
209k
    case PrimitiveType::TYPE_NULL:
476
209k
        assign_concrete<TYPE_NULL>(std::move(field.template get<TYPE_NULL>()));
477
209k
        return;
478
66.4k
    case PrimitiveType::TYPE_DATETIMEV2:
479
66.4k
        assign_concrete<TYPE_DATETIMEV2>(std::move(field.template get<TYPE_DATETIMEV2>()));
480
66.4k
        return;
481
300
    case PrimitiveType::TYPE_TIMESTAMP_NS:
482
300
        assign_concrete<TYPE_TIMESTAMP_NS>(std::move(field.template get<TYPE_TIMESTAMP_NS>()));
483
300
        return;
484
1.16k
    case PrimitiveType::TYPE_DATETIME:
485
1.16k
        assign_concrete<TYPE_DATETIME>(std::move(field.template get<TYPE_DATETIME>()));
486
1.16k
        return;
487
773
    case PrimitiveType::TYPE_DATE:
488
773
        assign_concrete<TYPE_DATE>(std::move(field.template get<TYPE_DATE>()));
489
773
        return;
490
60.4k
    case PrimitiveType::TYPE_DATEV2:
491
60.4k
        assign_concrete<TYPE_DATEV2>(std::move(field.template get<TYPE_DATEV2>()));
492
60.4k
        return;
493
7.01k
    case PrimitiveType::TYPE_TIMESTAMPTZ:
494
7.01k
        assign_concrete<TYPE_TIMESTAMPTZ>(std::move(field.template get<TYPE_TIMESTAMPTZ>()));
495
7.01k
        return;
496
17.4k
    case PrimitiveType::TYPE_BOOLEAN:
497
17.4k
        assign_concrete<TYPE_BOOLEAN>(std::move(field.template get<TYPE_BOOLEAN>()));
498
17.4k
        return;
499
81.9k
    case PrimitiveType::TYPE_TINYINT:
500
81.9k
        assign_concrete<TYPE_TINYINT>(std::move(field.template get<TYPE_TINYINT>()));
501
81.9k
        return;
502
22.3k
    case PrimitiveType::TYPE_SMALLINT:
503
22.3k
        assign_concrete<TYPE_SMALLINT>(std::move(field.template get<TYPE_SMALLINT>()));
504
22.3k
        return;
505
901k
    case PrimitiveType::TYPE_INT:
506
901k
        assign_concrete<TYPE_INT>(std::move(field.template get<TYPE_INT>()));
507
901k
        return;
508
345k
    case PrimitiveType::TYPE_BIGINT:
509
345k
        assign_concrete<TYPE_BIGINT>(std::move(field.template get<TYPE_BIGINT>()));
510
345k
        return;
511
33.4k
    case PrimitiveType::TYPE_LARGEINT:
512
33.4k
        assign_concrete<TYPE_LARGEINT>(std::move(field.template get<TYPE_LARGEINT>()));
513
33.4k
        return;
514
1.03k
    case PrimitiveType::TYPE_IPV4:
515
1.03k
        assign_concrete<TYPE_IPV4>(std::move(field.template get<TYPE_IPV4>()));
516
1.03k
        return;
517
1.06k
    case PrimitiveType::TYPE_IPV6:
518
1.06k
        assign_concrete<TYPE_IPV6>(std::move(field.template get<TYPE_IPV6>()));
519
1.06k
        return;
520
14.0k
    case PrimitiveType::TYPE_FLOAT:
521
14.0k
        assign_concrete<TYPE_FLOAT>(std::move(field.template get<TYPE_FLOAT>()));
522
14.0k
        return;
523
0
    case PrimitiveType::TYPE_TIMEV2:
524
0
        assign_concrete<TYPE_TIMEV2>(std::move(field.template get<TYPE_TIMEV2>()));
525
0
        return;
526
19.9k
    case PrimitiveType::TYPE_DOUBLE:
527
19.9k
        assign_concrete<TYPE_DOUBLE>(std::move(field.template get<TYPE_DOUBLE>()));
528
19.9k
        return;
529
155k
    case PrimitiveType::TYPE_STRING:
530
155k
        assign_concrete<TYPE_STRING>(std::move(field.template get<TYPE_STRING>()));
531
155k
        return;
532
35.2k
    case PrimitiveType::TYPE_CHAR:
533
35.2k
        assign_concrete<TYPE_CHAR>(std::move(field.template get<TYPE_CHAR>()));
534
35.2k
        return;
535
303k
    case PrimitiveType::TYPE_VARCHAR:
536
303k
        assign_concrete<TYPE_VARCHAR>(std::move(field.template get<TYPE_VARCHAR>()));
537
303k
        return;
538
43.9k
    case PrimitiveType::TYPE_JSONB:
539
43.9k
        assign_concrete<TYPE_JSONB>(std::move(field.template get<TYPE_JSONB>()));
540
43.9k
        return;
541
8
    case PrimitiveType::TYPE_ARRAY:
542
8
        assign_concrete<TYPE_ARRAY>(std::move(field.template get<TYPE_ARRAY>()));
543
8
        return;
544
0
    case PrimitiveType::TYPE_STRUCT:
545
0
        assign_concrete<TYPE_STRUCT>(std::move(field.template get<TYPE_STRUCT>()));
546
0
        return;
547
1
    case PrimitiveType::TYPE_MAP:
548
1
        assign_concrete<TYPE_MAP>(std::move(field.template get<TYPE_MAP>()));
549
1
        return;
550
6.72k
    case PrimitiveType::TYPE_DECIMAL32:
551
6.72k
        assign_concrete<TYPE_DECIMAL32>(std::move(field.template get<TYPE_DECIMAL32>()));
552
6.72k
        return;
553
32.9k
    case PrimitiveType::TYPE_DECIMAL64:
554
32.9k
        assign_concrete<TYPE_DECIMAL64>(std::move(field.template get<TYPE_DECIMAL64>()));
555
32.9k
        return;
556
402
    case PrimitiveType::TYPE_DECIMALV2:
557
402
        assign_concrete<TYPE_DECIMALV2>(std::move(field.template get<TYPE_DECIMALV2>()));
558
402
        return;
559
20.4k
    case PrimitiveType::TYPE_DECIMAL128I:
560
20.4k
        assign_concrete<TYPE_DECIMAL128I>(std::move(field.template get<TYPE_DECIMAL128I>()));
561
20.4k
        return;
562
1.15k
    case PrimitiveType::TYPE_DECIMAL256:
563
1.15k
        assign_concrete<TYPE_DECIMAL256>(std::move(field.template get<TYPE_DECIMAL256>()));
564
1.15k
        return;
565
0
    case PrimitiveType::TYPE_VARIANT:
566
0
        assign_concrete<TYPE_VARIANT>(std::move(field.template get<TYPE_VARIANT>()));
567
0
        return;
568
32
    case PrimitiveType::TYPE_BITMAP:
569
32
        assign_concrete<TYPE_BITMAP>(std::move(field.template get<TYPE_BITMAP>()));
570
32
        return;
571
1
    case PrimitiveType::TYPE_HLL:
572
1
        assign_concrete<TYPE_HLL>(std::move(field.template get<TYPE_HLL>()));
573
1
        return;
574
1
    case PrimitiveType::TYPE_QUANTILE_STATE:
575
1
        assign_concrete<TYPE_QUANTILE_STATE>(std::move(field.template get<TYPE_QUANTILE_STATE>()));
576
1
        return;
577
9
    case PrimitiveType::TYPE_VARBINARY:
578
9
        assign_concrete<TYPE_VARBINARY>(std::move(field.template get<TYPE_VARBINARY>()));
579
9
        return;
580
0
    default:
581
0
        throw Exception(Status::FatalError("type not supported, type={}", field.get_type_name()));
582
2.38M
    }
583
2.38M
}
584
585
1.51M
void Field::assign(const Field& field) {
586
1.51M
    switch (field.type) {
587
203k
    case PrimitiveType::TYPE_NULL:
588
203k
        assign_concrete<TYPE_NULL>(field.template get<TYPE_NULL>());
589
203k
        return;
590
65.2k
    case PrimitiveType::TYPE_DATETIMEV2:
591
65.2k
        assign_concrete<TYPE_DATETIMEV2>(field.template get<TYPE_DATETIMEV2>());
592
65.2k
        return;
593
297
    case PrimitiveType::TYPE_TIMESTAMP_NS:
594
297
        assign_concrete<TYPE_TIMESTAMP_NS>(field.template get<TYPE_TIMESTAMP_NS>());
595
297
        return;
596
838
    case PrimitiveType::TYPE_DATETIME:
597
838
        assign_concrete<TYPE_DATETIME>(field.template get<TYPE_DATETIME>());
598
838
        return;
599
699
    case PrimitiveType::TYPE_DATE:
600
699
        assign_concrete<TYPE_DATE>(field.template get<TYPE_DATE>());
601
699
        return;
602
55.5k
    case PrimitiveType::TYPE_DATEV2:
603
55.5k
        assign_concrete<TYPE_DATEV2>(field.template get<TYPE_DATEV2>());
604
55.5k
        return;
605
7.01k
    case PrimitiveType::TYPE_TIMESTAMPTZ:
606
7.01k
        assign_concrete<TYPE_TIMESTAMPTZ>(field.template get<TYPE_TIMESTAMPTZ>());
607
7.01k
        return;
608
17.4k
    case PrimitiveType::TYPE_BOOLEAN:
609
17.4k
        assign_concrete<TYPE_BOOLEAN>(field.template get<TYPE_BOOLEAN>());
610
17.4k
        return;
611
81.8k
    case PrimitiveType::TYPE_TINYINT:
612
81.8k
        assign_concrete<TYPE_TINYINT>(field.template get<TYPE_TINYINT>());
613
81.8k
        return;
614
22.1k
    case PrimitiveType::TYPE_SMALLINT:
615
22.1k
        assign_concrete<TYPE_SMALLINT>(field.template get<TYPE_SMALLINT>());
616
22.1k
        return;
617
193k
    case PrimitiveType::TYPE_INT:
618
193k
        assign_concrete<TYPE_INT>(field.template get<TYPE_INT>());
619
193k
        return;
620
333k
    case PrimitiveType::TYPE_BIGINT:
621
333k
        assign_concrete<TYPE_BIGINT>(field.template get<TYPE_BIGINT>());
622
333k
        return;
623
32.2k
    case PrimitiveType::TYPE_LARGEINT:
624
32.2k
        assign_concrete<TYPE_LARGEINT>(field.template get<TYPE_LARGEINT>());
625
32.2k
        return;
626
1.03k
    case PrimitiveType::TYPE_IPV4:
627
1.03k
        assign_concrete<TYPE_IPV4>(field.template get<TYPE_IPV4>());
628
1.03k
        return;
629
1.06k
    case PrimitiveType::TYPE_IPV6:
630
1.06k
        assign_concrete<TYPE_IPV6>(field.template get<TYPE_IPV6>());
631
1.06k
        return;
632
13.6k
    case PrimitiveType::TYPE_FLOAT:
633
13.6k
        assign_concrete<TYPE_FLOAT>(field.template get<TYPE_FLOAT>());
634
13.6k
        return;
635
0
    case PrimitiveType::TYPE_TIMEV2:
636
0
        assign_concrete<TYPE_TIMEV2>(field.template get<TYPE_TIMEV2>());
637
0
        return;
638
17.9k
    case PrimitiveType::TYPE_DOUBLE:
639
17.9k
        assign_concrete<TYPE_DOUBLE>(field.template get<TYPE_DOUBLE>());
640
17.9k
        return;
641
107k
    case PrimitiveType::TYPE_STRING:
642
107k
        assign_concrete<TYPE_STRING>(field.template get<TYPE_STRING>());
643
107k
        return;
644
26.3k
    case PrimitiveType::TYPE_CHAR:
645
26.3k
        assign_concrete<TYPE_CHAR>(field.template get<TYPE_CHAR>());
646
26.3k
        return;
647
286k
    case PrimitiveType::TYPE_VARCHAR:
648
286k
        assign_concrete<TYPE_VARCHAR>(field.template get<TYPE_VARCHAR>());
649
286k
        return;
650
1
    case PrimitiveType::TYPE_JSONB:
651
1
        assign_concrete<TYPE_JSONB>(field.template get<TYPE_JSONB>());
652
1
        return;
653
13
    case PrimitiveType::TYPE_ARRAY:
654
13
        assign_concrete<TYPE_ARRAY>(field.template get<TYPE_ARRAY>());
655
13
        return;
656
0
    case PrimitiveType::TYPE_STRUCT:
657
0
        assign_concrete<TYPE_STRUCT>(field.template get<TYPE_STRUCT>());
658
0
        return;
659
1
    case PrimitiveType::TYPE_MAP:
660
1
        assign_concrete<TYPE_MAP>(field.template get<TYPE_MAP>());
661
1
        return;
662
6.71k
    case PrimitiveType::TYPE_DECIMAL32:
663
6.71k
        assign_concrete<TYPE_DECIMAL32>(field.template get<TYPE_DECIMAL32>());
664
6.71k
        return;
665
18.5k
    case PrimitiveType::TYPE_DECIMAL64:
666
18.5k
        assign_concrete<TYPE_DECIMAL64>(field.template get<TYPE_DECIMAL64>());
667
18.5k
        return;
668
402
    case PrimitiveType::TYPE_DECIMALV2:
669
402
        assign_concrete<TYPE_DECIMALV2>(field.template get<TYPE_DECIMALV2>());
670
402
        return;
671
17.9k
    case PrimitiveType::TYPE_DECIMAL128I:
672
17.9k
        assign_concrete<TYPE_DECIMAL128I>(field.template get<TYPE_DECIMAL128I>());
673
17.9k
        return;
674
1.15k
    case PrimitiveType::TYPE_DECIMAL256:
675
1.15k
        assign_concrete<TYPE_DECIMAL256>(field.template get<TYPE_DECIMAL256>());
676
1.15k
        return;
677
0
    case PrimitiveType::TYPE_VARIANT:
678
0
        assign_concrete<TYPE_VARIANT>(field.template get<TYPE_VARIANT>());
679
0
        return;
680
2
    case PrimitiveType::TYPE_BITMAP:
681
2
        assign_concrete<TYPE_BITMAP>(field.template get<TYPE_BITMAP>());
682
2
        return;
683
1
    case PrimitiveType::TYPE_HLL:
684
1
        assign_concrete<TYPE_HLL>(field.template get<TYPE_HLL>());
685
1
        return;
686
1
    case PrimitiveType::TYPE_QUANTILE_STATE:
687
1
        assign_concrete<TYPE_QUANTILE_STATE>(field.template get<TYPE_QUANTILE_STATE>());
688
1
        return;
689
0
    case PrimitiveType::TYPE_UINT32:
690
0
        assign_concrete<TYPE_UINT32>(field.template get<TYPE_UINT32>());
691
0
        return;
692
0
    case PrimitiveType::TYPE_UINT64:
693
0
        assign_concrete<TYPE_UINT64>(field.template get<TYPE_UINT64>());
694
0
        return;
695
7
    case PrimitiveType::TYPE_VARBINARY:
696
7
        assign_concrete<TYPE_VARBINARY>(field.template get<TYPE_VARBINARY>());
697
7
        return;
698
0
    default:
699
0
        throw Exception(Status::FatalError("type not supported, type={}", field.get_type_name()));
700
1.51M
    }
701
1.51M
}
702
703
/// Assuming same types.
704
template <PrimitiveType Type>
705
2.38M
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
2.38M
    if constexpr (Type == TYPE_VARBINARY) {
707
9
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
9
        return;
709
9
    }
710
0
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
2.38M
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
2.38M
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE1EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
209k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
209k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
209k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
209k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE3EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
81.9k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
81.9k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
81.9k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
81.9k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE4EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
22.2k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
22.2k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
22.2k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
22.2k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE5EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
901k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
901k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
901k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
901k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE6EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
345k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
345k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
345k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
345k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE7EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
33.4k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
33.4k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
33.4k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
33.4k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE11EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
773
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
773
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
773
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
773
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE12EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
1.16k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
1.16k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
1.16k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
1.16k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE25EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
60.4k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
60.4k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
60.4k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
60.4k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE26EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
66.4k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
66.4k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
66.4k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
66.4k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE43EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
301
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
301
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
301
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
301
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE28EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
6.72k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
6.72k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
6.72k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
6.72k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE29EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
32.9k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
32.9k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
32.9k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
32.9k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE20EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
402
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
402
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
402
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
402
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE30EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
20.4k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
20.4k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
20.4k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
20.4k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE35EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
1.15k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
1.15k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
1.15k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
1.15k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE15EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
35.2k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
35.2k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
35.2k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
35.2k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE10EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
303k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
303k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
303k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
303k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE23EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
155k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
155k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
155k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
155k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE41EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
9
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
9
    if constexpr (Type == TYPE_VARBINARY) {
707
9
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
9
        return;
709
9
    }
710
0
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
9
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
9
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE19EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
1
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
1
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
1
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
1
}
Unexecuted instantiation: _ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE32EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE24EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
1
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
1
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
1
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
1
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE17EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
8
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
8
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
8
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
8
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE42EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
7.01k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
7.01k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
7.01k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
7.01k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE36EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
1.03k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
1.03k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
1.03k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
1.03k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE37EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
1.06k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
1.06k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
1.06k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
1.06k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE2EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
17.4k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
17.4k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
17.4k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
17.4k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE8EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
14.0k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
14.0k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
14.0k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
14.0k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE9EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
19.9k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
19.9k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
19.9k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
19.9k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE31EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
43.9k
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
43.9k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
43.9k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
43.9k
}
Unexecuted instantiation: _ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE16EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE18EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
1
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
1
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
1
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
1
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE22EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
32
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
    if constexpr (Type == TYPE_VARBINARY) {
707
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
708
        return;
709
    }
710
32
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
32
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
32
}
Unexecuted instantiation: _ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE27EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Unexecuted instantiation: _ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE38EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Unexecuted instantiation: _ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE39EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
713
714
template <PrimitiveType Type>
715
1.51M
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
1.51M
    if constexpr (Type == TYPE_VARBINARY) {
717
7
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
7
        return;
719
7
    }
720
0
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
1.51M
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
1.51M
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE1EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
203k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
203k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
203k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
203k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE3EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
81.8k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
81.8k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
81.8k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
81.8k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE4EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
22.1k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
22.1k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
22.1k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
22.1k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE5EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
193k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
193k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
193k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
193k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE6EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
333k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
333k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
333k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
333k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE7EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
32.2k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
32.2k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
32.2k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
32.2k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE11EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
699
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
699
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
699
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
699
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE12EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
838
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
838
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
838
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
838
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE25EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
55.5k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
55.5k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
55.5k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
55.5k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE26EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
65.2k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
65.2k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
65.2k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
65.2k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE43EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
297
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
297
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
297
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
297
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE42EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
7.01k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
7.01k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
7.01k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
7.01k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE28EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
6.71k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
6.71k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
6.71k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
6.71k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE29EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
18.5k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
18.5k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
18.5k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
18.5k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE20EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
402
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
402
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
402
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
402
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE30EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
17.9k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
17.9k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
17.9k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
17.9k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE35EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
1.15k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
1.15k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
1.15k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
1.15k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE15EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
26.3k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
26.3k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
26.3k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
26.3k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE10EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
286k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
286k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
286k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
286k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE23EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
107k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
107k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
107k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
107k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE41EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
7
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
7
    if constexpr (Type == TYPE_VARBINARY) {
717
7
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
7
        return;
719
7
    }
720
0
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
7
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
7
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE19EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
1
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
1
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
1
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
1
}
Unexecuted instantiation: _ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE32EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE24EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
1
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
1
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
1
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
1
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE17EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
13
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
13
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
13
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
13
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE36EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
1.03k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
1.03k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
1.03k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
1.03k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE37EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
1.06k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
1.06k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
1.06k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
1.06k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE2EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
17.4k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
17.4k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
17.4k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
17.4k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE8EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
13.6k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
13.6k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
13.6k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
13.6k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE9EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
18.0k
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
18.0k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
18.0k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
18.0k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE31EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
1
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
1
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
1
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
1
}
Unexecuted instantiation: _ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE16EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE18EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
1
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
1
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
1
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
1
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE22EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
2
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
    if constexpr (Type == TYPE_VARBINARY) {
717
        *reinterpret_cast<OwnedBinaryField*>(&storage) = OwnedBinaryField(x);
718
        return;
719
    }
720
2
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
2
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
2
}
Unexecuted instantiation: _ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE27EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Unexecuted instantiation: _ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE38EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Unexecuted instantiation: _ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE39EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
723
724
0
std::string Field::get_type_name() const {
725
0
    return type_to_string(type);
726
0
}
727
728
template <PrimitiveType T>
729
107M
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
107M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
107M
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
107M
    return *ptr;
736
107M
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE1EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
301k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
301k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
301k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
301k
    return *ptr;
736
301k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE3EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
4.90M
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
4.90M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
4.90M
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
4.90M
    return *ptr;
736
4.90M
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE4EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
158k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
158k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
158k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
158k
    return *ptr;
736
158k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE5EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
94.0M
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
94.0M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
94.0M
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
94.0M
    return *ptr;
736
94.0M
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE6EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
1.96M
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
1.96M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
1.96M
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
1.96M
    return *ptr;
736
1.96M
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE7EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
194k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
194k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
194k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
194k
    return *ptr;
736
194k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE11EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
14.7k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
14.7k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
14.7k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
14.7k
    return *ptr;
736
14.7k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE12EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
21.7k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
21.7k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
21.7k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
21.7k
    return *ptr;
736
21.7k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE25EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
559k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
559k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
559k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
559k
    return *ptr;
736
559k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE26EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
387k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
387k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
387k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
387k
    return *ptr;
736
387k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE43EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
6.48k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
6.48k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
6.48k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
6.48k
    return *ptr;
736
6.48k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE42EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
45.2k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
45.2k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
45.2k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
45.2k
    return *ptr;
736
45.2k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE28EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
66.9k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
66.9k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
66.9k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
66.9k
    return *ptr;
736
66.9k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE29EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
164k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
164k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
164k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
164k
    return *ptr;
736
164k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE20EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
10.2k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
10.2k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
10.2k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
10.2k
    return *ptr;
736
10.2k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE30EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
124k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
124k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
124k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
124k
    return *ptr;
736
124k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE35EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
46.5k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
46.5k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
46.5k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
46.5k
    return *ptr;
736
46.5k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE15EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
138k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
138k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
138k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
138k
    return *ptr;
736
138k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE10EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
1.73M
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
1.73M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
1.73M
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
1.73M
    return *ptr;
736
1.73M
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE23EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
2.06M
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
2.06M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
2.06M
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
2.06M
    return *ptr;
736
2.06M
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE41EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
87
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
87
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
87
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
87
    return *ptr;
736
87
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE19EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
6
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
6
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
6
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
6
    return *ptr;
736
6
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE32EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
6.76k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
6.76k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
6.76k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
6.76k
    return *ptr;
736
6.76k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE24EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
4
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
4
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
4
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
4
    return *ptr;
736
4
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE17EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
266k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
266k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
266k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
266k
    return *ptr;
736
266k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE36EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
39.0k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
39.0k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
39.0k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
39.0k
    return *ptr;
736
39.0k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE37EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
27.6k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
27.6k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
27.6k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
27.6k
    return *ptr;
736
27.6k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE2EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
93.2k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
93.2k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
93.2k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
93.2k
    return *ptr;
736
93.2k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE8EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
106k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
106k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
106k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
106k
    return *ptr;
736
106k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE9EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
254k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
254k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
254k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
254k
    return *ptr;
736
254k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE31EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
65.9k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
65.9k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
65.9k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
65.9k
    return *ptr;
736
65.9k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE16EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
11.2k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
11.2k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
11.2k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
11.2k
    return *ptr;
736
11.2k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE18EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
28.0k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
28.0k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
28.0k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
28.0k
    return *ptr;
736
28.0k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE22EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
198
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
198
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
198
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
198
    return *ptr;
736
198
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE27EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
195
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
195
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
731
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
732
0
                                           type_to_string(T), get_type_name()));
733
0
    }
734
195
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
195
    return *ptr;
736
195
}
Unexecuted instantiation: _ZN5doris5Field3getILNS_13PrimitiveTypeE38EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Unexecuted instantiation: _ZN5doris5Field3getILNS_13PrimitiveTypeE39EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
737
738
template <PrimitiveType T>
739
365M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
365M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
365M
    const auto* MAY_ALIAS ptr =
745
365M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
365M
    return *ptr;
747
365M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE1EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
39.2M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
39.2M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
39.2M
    const auto* MAY_ALIAS ptr =
745
39.2M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
39.2M
    return *ptr;
747
39.2M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE3EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
10.8M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
10.8M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
10.8M
    const auto* MAY_ALIAS ptr =
745
10.8M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
10.8M
    return *ptr;
747
10.8M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE4EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
5.15M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
5.15M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
5.15M
    const auto* MAY_ALIAS ptr =
745
5.15M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
5.15M
    return *ptr;
747
5.15M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE5EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
8.52M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
8.52M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
8.52M
    const auto* MAY_ALIAS ptr =
745
8.52M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
8.52M
    return *ptr;
747
8.52M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE6EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
22.1M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
22.1M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
22.1M
    const auto* MAY_ALIAS ptr =
745
22.1M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
22.1M
    return *ptr;
747
22.1M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE7EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
4.40M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
4.40M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
4.40M
    const auto* MAY_ALIAS ptr =
745
4.40M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
4.40M
    return *ptr;
747
4.40M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE11EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
4.39M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
4.39M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
4.39M
    const auto* MAY_ALIAS ptr =
745
4.39M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
4.39M
    return *ptr;
747
4.39M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE12EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
4.32M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
4.32M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
4.32M
    const auto* MAY_ALIAS ptr =
745
4.32M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
4.32M
    return *ptr;
747
4.32M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE25EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
7.83M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
7.83M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
7.83M
    const auto* MAY_ALIAS ptr =
745
7.83M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
7.83M
    return *ptr;
747
7.83M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE26EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
5.38M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
5.38M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
5.38M
    const auto* MAY_ALIAS ptr =
745
5.38M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
5.38M
    return *ptr;
747
5.38M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE43EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
9.99k
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
9.99k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
9.99k
    const auto* MAY_ALIAS ptr =
745
9.99k
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
9.99k
    return *ptr;
747
9.99k
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE42EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
110k
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
110k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
110k
    const auto* MAY_ALIAS ptr =
745
110k
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
110k
    return *ptr;
747
110k
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE28EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
4.62M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
4.62M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
4.62M
    const auto* MAY_ALIAS ptr =
745
4.62M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
4.62M
    return *ptr;
747
4.62M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE29EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
18.2M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
18.2M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
18.2M
    const auto* MAY_ALIAS ptr =
745
18.2M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
18.2M
    return *ptr;
747
18.2M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE20EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
18.2k
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
18.2k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
18.2k
    const auto* MAY_ALIAS ptr =
745
18.2k
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
18.2k
    return *ptr;
747
18.2k
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE30EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
4.58M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
4.58M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
4.58M
    const auto* MAY_ALIAS ptr =
745
4.58M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
4.58M
    return *ptr;
747
4.58M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE35EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
4.69M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
4.69M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
4.69M
    const auto* MAY_ALIAS ptr =
745
4.69M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
4.69M
    return *ptr;
747
4.69M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE15EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
44.4k
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
44.4k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
44.4k
    const auto* MAY_ALIAS ptr =
745
44.4k
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
44.4k
    return *ptr;
747
44.4k
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE10EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
11.5M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
11.5M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
11.5M
    const auto* MAY_ALIAS ptr =
745
11.5M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
11.5M
    return *ptr;
747
11.5M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE23EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
25.8M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
25.8M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
25.8M
    const auto* MAY_ALIAS ptr =
745
25.8M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
25.8M
    return *ptr;
747
25.8M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE41EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
111
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
111
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
111
    const auto* MAY_ALIAS ptr =
745
111
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
111
    return *ptr;
747
111
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE19EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
8
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
8
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
8
    const auto* MAY_ALIAS ptr =
745
8
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
8
    return *ptr;
747
8
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE32EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
6.70k
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
6.70k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
6.70k
    const auto* MAY_ALIAS ptr =
745
6.70k
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
6.70k
    return *ptr;
747
6.70k
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE24EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
20.0k
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
20.0k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
20.0k
    const auto* MAY_ALIAS ptr =
745
20.0k
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
20.0k
    return *ptr;
747
20.0k
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE17EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
119M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
119M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
119M
    const auto* MAY_ALIAS ptr =
745
119M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
119M
    return *ptr;
747
119M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE36EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
32.6k
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
32.6k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
32.6k
    const auto* MAY_ALIAS ptr =
745
32.6k
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
32.6k
    return *ptr;
747
32.6k
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE37EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
22.9k
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
22.9k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
22.9k
    const auto* MAY_ALIAS ptr =
745
22.9k
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
22.9k
    return *ptr;
747
22.9k
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE2EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
32.9M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
32.9M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
32.9M
    const auto* MAY_ALIAS ptr =
745
32.9M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
32.9M
    return *ptr;
747
32.9M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE8EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
4.55M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
4.55M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
4.55M
    const auto* MAY_ALIAS ptr =
745
4.55M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
4.55M
    return *ptr;
747
4.55M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE9EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
5.41M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
5.41M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
5.41M
    const auto* MAY_ALIAS ptr =
745
5.41M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
5.41M
    return *ptr;
747
5.41M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE31EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
22.0k
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
22.0k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
22.0k
    const auto* MAY_ALIAS ptr =
745
22.0k
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
22.0k
    return *ptr;
747
22.0k
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE16EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
4.05M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
4.05M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
4.05M
    const auto* MAY_ALIAS ptr =
745
4.05M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
4.05M
    return *ptr;
747
4.05M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE18EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
17.2M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
17.2M
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
17.2M
    const auto* MAY_ALIAS ptr =
745
17.2M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
17.2M
    return *ptr;
747
17.2M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE22EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
17.5k
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
17.5k
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
17.5k
    const auto* MAY_ALIAS ptr =
745
17.5k
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
17.5k
    return *ptr;
747
17.5k
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE27EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
252
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
252
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
252
    const auto* MAY_ALIAS ptr =
745
252
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
252
    return *ptr;
747
252
}
Unexecuted instantiation: _ZNK5doris5Field3getILNS_13PrimitiveTypeE38EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
_ZNK5doris5Field3getILNS_13PrimitiveTypeE39EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
40
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
40
    if (T != type && !(is_string_type(type) && is_string_type(T)) && type != TYPE_NULL) {
741
0
        throw Exception(Status::FatalError("Field::get type mismatch: requested {}, actual {}",
742
0
                                           type_to_string(T), get_type_name()));
743
0
    }
744
40
    const auto* MAY_ALIAS ptr =
745
40
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
40
    return *ptr;
747
40
}
748
749
template <PrimitiveType T>
750
124M
void Field::destroy() {
751
124M
    if constexpr (T == TYPE_VARBINARY) {
752
165
        reinterpret_cast<OwnedBinaryField*>(&storage)->~OwnedBinaryField();
753
165
        return;
754
165
    }
755
0
    using TargetType = typename PrimitiveTypeTraits<T>::CppType;
756
18.4E
    DCHECK(T == type || ((is_string_type(type) && is_string_type(T))))
757
18.4E
            << "Type mismatch: requested " << type_to_string(T) << ", actual " << get_type_name();
758
124M
    auto* MAY_ALIAS ptr = reinterpret_cast<TargetType*>(&storage);
759
124M
    ptr->~TargetType();
760
124M
}
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE1EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE3EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE4EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE5EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE6EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE7EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE11EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE12EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE25EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE26EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE43EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE42EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE28EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE29EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE20EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE30EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE35EEEvv
_ZN5doris5Field7destroyILNS_13PrimitiveTypeE15EEEvv
Line
Count
Source
750
148k
void Field::destroy() {
751
    if constexpr (T == TYPE_VARBINARY) {
752
        reinterpret_cast<OwnedBinaryField*>(&storage)->~OwnedBinaryField();
753
        return;
754
    }
755
148k
    using TargetType = typename PrimitiveTypeTraits<T>::CppType;
756
18.4E
    DCHECK(T == type || ((is_string_type(type) && is_string_type(T))))
757
18.4E
            << "Type mismatch: requested " << type_to_string(T) << ", actual " << get_type_name();
758
148k
    auto* MAY_ALIAS ptr = reinterpret_cast<TargetType*>(&storage);
759
148k
    ptr->~TargetType();
760
148k
}
_ZN5doris5Field7destroyILNS_13PrimitiveTypeE10EEEvv
Line
Count
Source
750
10.2M
void Field::destroy() {
751
    if constexpr (T == TYPE_VARBINARY) {
752
        reinterpret_cast<OwnedBinaryField*>(&storage)->~OwnedBinaryField();
753
        return;
754
    }
755
10.2M
    using TargetType = typename PrimitiveTypeTraits<T>::CppType;
756
18.4E
    DCHECK(T == type || ((is_string_type(type) && is_string_type(T))))
757
18.4E
            << "Type mismatch: requested " << type_to_string(T) << ", actual " << get_type_name();
758
10.2M
    auto* MAY_ALIAS ptr = reinterpret_cast<TargetType*>(&storage);
759
10.2M
    ptr->~TargetType();
760
10.2M
}
_ZN5doris5Field7destroyILNS_13PrimitiveTypeE23EEEvv
Line
Count
Source
750
5.09M
void Field::destroy() {
751
    if constexpr (T == TYPE_VARBINARY) {
752
        reinterpret_cast<OwnedBinaryField*>(&storage)->~OwnedBinaryField();
753
        return;
754
    }
755
5.09M
    using TargetType = typename PrimitiveTypeTraits<T>::CppType;
756
18.4E
    DCHECK(T == type || ((is_string_type(type) && is_string_type(T))))
757
18.4E
            << "Type mismatch: requested " << type_to_string(T) << ", actual " << get_type_name();
758
5.09M
    auto* MAY_ALIAS ptr = reinterpret_cast<TargetType*>(&storage);
759
5.09M
    ptr->~TargetType();
760
5.09M
}
_ZN5doris5Field7destroyILNS_13PrimitiveTypeE41EEEvv
Line
Count
Source
750
165
void Field::destroy() {
751
165
    if constexpr (T == TYPE_VARBINARY) {
752
165
        reinterpret_cast<OwnedBinaryField*>(&storage)->~OwnedBinaryField();
753
165
        return;
754
165
    }
755
0
    using TargetType = typename PrimitiveTypeTraits<T>::CppType;
756
165
    DCHECK(T == type || ((is_string_type(type) && is_string_type(T))))
757
165
            << "Type mismatch: requested " << type_to_string(T) << ", actual " << get_type_name();
758
165
    auto* MAY_ALIAS ptr = reinterpret_cast<TargetType*>(&storage);
759
165
    ptr->~TargetType();
760
165
}
_ZN5doris5Field7destroyILNS_13PrimitiveTypeE19EEEvv
Line
Count
Source
750
418
void Field::destroy() {
751
    if constexpr (T == TYPE_VARBINARY) {
752
        reinterpret_cast<OwnedBinaryField*>(&storage)->~OwnedBinaryField();
753
        return;
754
    }
755
418
    using TargetType = typename PrimitiveTypeTraits<T>::CppType;
756
418
    DCHECK(T == type || ((is_string_type(type) && is_string_type(T))))
757
0
            << "Type mismatch: requested " << type_to_string(T) << ", actual " << get_type_name();
758
418
    auto* MAY_ALIAS ptr = reinterpret_cast<TargetType*>(&storage);
759
418
    ptr->~TargetType();
760
418
}
_ZN5doris5Field7destroyILNS_13PrimitiveTypeE32EEEvv
Line
Count
Source
750
13.4k
void Field::destroy() {
751
    if constexpr (T == TYPE_VARBINARY) {
752
        reinterpret_cast<OwnedBinaryField*>(&storage)->~OwnedBinaryField();
753
        return;
754
    }
755
13.4k
    using TargetType = typename PrimitiveTypeTraits<T>::CppType;
756
18.4E
    DCHECK(T == type || ((is_string_type(type) && is_string_type(T))))
757
18.4E
            << "Type mismatch: requested " << type_to_string(T) << ", actual " << get_type_name();
758
13.4k
    auto* MAY_ALIAS ptr = reinterpret_cast<TargetType*>(&storage);
759
13.4k
    ptr->~TargetType();
760
13.4k
}
_ZN5doris5Field7destroyILNS_13PrimitiveTypeE24EEEvv
Line
Count
Source
750
22.3k
void Field::destroy() {
751
    if constexpr (T == TYPE_VARBINARY) {
752
        reinterpret_cast<OwnedBinaryField*>(&storage)->~OwnedBinaryField();
753
        return;
754
    }
755
22.3k
    using TargetType = typename PrimitiveTypeTraits<T>::CppType;
756
22.3k
    DCHECK(T == type || ((is_string_type(type) && is_string_type(T))))
757
0
            << "Type mismatch: requested " << type_to_string(T) << ", actual " << get_type_name();
758
22.3k
    auto* MAY_ALIAS ptr = reinterpret_cast<TargetType*>(&storage);
759
22.3k
    ptr->~TargetType();
760
22.3k
}
_ZN5doris5Field7destroyILNS_13PrimitiveTypeE17EEEvv
Line
Count
Source
750
92.6M
void Field::destroy() {
751
    if constexpr (T == TYPE_VARBINARY) {
752
        reinterpret_cast<OwnedBinaryField*>(&storage)->~OwnedBinaryField();
753
        return;
754
    }
755
92.6M
    using TargetType = typename PrimitiveTypeTraits<T>::CppType;
756
18.4E
    DCHECK(T == type || ((is_string_type(type) && is_string_type(T))))
757
18.4E
            << "Type mismatch: requested " << type_to_string(T) << ", actual " << get_type_name();
758
92.6M
    auto* MAY_ALIAS ptr = reinterpret_cast<TargetType*>(&storage);
759
92.6M
    ptr->~TargetType();
760
92.6M
}
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE36EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE37EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE2EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE8EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE9EEEvv
_ZN5doris5Field7destroyILNS_13PrimitiveTypeE31EEEvv
Line
Count
Source
750
87.9k
void Field::destroy() {
751
    if constexpr (T == TYPE_VARBINARY) {
752
        reinterpret_cast<OwnedBinaryField*>(&storage)->~OwnedBinaryField();
753
        return;
754
    }
755
87.9k
    using TargetType = typename PrimitiveTypeTraits<T>::CppType;
756
87.9k
    DCHECK(T == type || ((is_string_type(type) && is_string_type(T))))
757
0
            << "Type mismatch: requested " << type_to_string(T) << ", actual " << get_type_name();
758
87.9k
    auto* MAY_ALIAS ptr = reinterpret_cast<TargetType*>(&storage);
759
87.9k
    ptr->~TargetType();
760
87.9k
}
_ZN5doris5Field7destroyILNS_13PrimitiveTypeE16EEEvv
Line
Count
Source
750
3.05M
void Field::destroy() {
751
    if constexpr (T == TYPE_VARBINARY) {
752
        reinterpret_cast<OwnedBinaryField*>(&storage)->~OwnedBinaryField();
753
        return;
754
    }
755
3.05M
    using TargetType = typename PrimitiveTypeTraits<T>::CppType;
756
3.05M
    DCHECK(T == type || ((is_string_type(type) && is_string_type(T))))
757
0
            << "Type mismatch: requested " << type_to_string(T) << ", actual " << get_type_name();
758
3.05M
    auto* MAY_ALIAS ptr = reinterpret_cast<TargetType*>(&storage);
759
3.05M
    ptr->~TargetType();
760
3.05M
}
_ZN5doris5Field7destroyILNS_13PrimitiveTypeE18EEEvv
Line
Count
Source
750
13.2M
void Field::destroy() {
751
    if constexpr (T == TYPE_VARBINARY) {
752
        reinterpret_cast<OwnedBinaryField*>(&storage)->~OwnedBinaryField();
753
        return;
754
    }
755
13.2M
    using TargetType = typename PrimitiveTypeTraits<T>::CppType;
756
18.4E
    DCHECK(T == type || ((is_string_type(type) && is_string_type(T))))
757
18.4E
            << "Type mismatch: requested " << type_to_string(T) << ", actual " << get_type_name();
758
13.2M
    auto* MAY_ALIAS ptr = reinterpret_cast<TargetType*>(&storage);
759
13.2M
    ptr->~TargetType();
760
13.2M
}
_ZN5doris5Field7destroyILNS_13PrimitiveTypeE22EEEvv
Line
Count
Source
750
2.53k
void Field::destroy() {
751
    if constexpr (T == TYPE_VARBINARY) {
752
        reinterpret_cast<OwnedBinaryField*>(&storage)->~OwnedBinaryField();
753
        return;
754
    }
755
2.53k
    using TargetType = typename PrimitiveTypeTraits<T>::CppType;
756
2.53k
    DCHECK(T == type || ((is_string_type(type) && is_string_type(T))))
757
0
            << "Type mismatch: requested " << type_to_string(T) << ", actual " << get_type_name();
758
2.53k
    auto* MAY_ALIAS ptr = reinterpret_cast<TargetType*>(&storage);
759
2.53k
    ptr->~TargetType();
760
2.53k
}
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE27EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE38EEEvv
Unexecuted instantiation: _ZN5doris5Field7destroyILNS_13PrimitiveTypeE39EEEvv
761
762
11.3M
std::strong_ordering Field::operator<=>(const Field& rhs) const {
763
11.3M
    if (type == PrimitiveType::TYPE_NULL || rhs == PrimitiveType::TYPE_NULL) {
764
7.59M
        return type <=> rhs.type;
765
7.59M
    }
766
3.72M
    if (type != rhs.type) {
767
        // String-family types (STRING, CHAR, VARCHAR) all store String internally
768
        // and are inter-comparable.  This arises when comparing RowCursor fields
769
        // (which carry the declared column type) against Column::operator[] results
770
        // (which always return TYPE_STRING for ColumnString).
771
16.0k
        if (is_string_type(type) && is_string_type(rhs.type)) {
772
16.0k
            return get<TYPE_STRING>() <=> rhs.get<TYPE_STRING>();
773
16.0k
        }
774
0
        throw Exception(Status::FatalError("lhs type not equal with rhs, lhs={}, rhs={}",
775
0
                                           get_type_name(), rhs.get_type_name()));
776
16.0k
    }
777
778
3.71M
    switch (type) {
779
1.14k
    case PrimitiveType::TYPE_BITMAP:
780
1.34k
    case PrimitiveType::TYPE_HLL:
781
2.53k
    case PrimitiveType::TYPE_QUANTILE_STATE:
782
2.53k
    case PrimitiveType::INVALID_TYPE:
783
2.53k
    case PrimitiveType::TYPE_JSONB:
784
2.53k
    case PrimitiveType::TYPE_NULL:
785
8.67k
    case PrimitiveType::TYPE_ARRAY:
786
8.72k
    case PrimitiveType::TYPE_MAP:
787
8.75k
    case PrimitiveType::TYPE_STRUCT:
788
8.75k
    case PrimitiveType::TYPE_VARIANT:
789
8.75k
        return std::strong_ordering::equal; //TODO: throw Exception?
790
30.5k
    case PrimitiveType::TYPE_DATETIMEV2:
791
30.5k
        return get<PrimitiveType::TYPE_DATETIMEV2>().to_date_int_val() <=>
792
30.5k
               rhs.get<PrimitiveType::TYPE_DATETIMEV2>().to_date_int_val();
793
469
    case PrimitiveType::TYPE_TIMESTAMP_NS:
794
469
        return get<PrimitiveType::TYPE_TIMESTAMP_NS>() <=>
795
469
               rhs.get<PrimitiveType::TYPE_TIMESTAMP_NS>();
796
522k
    case PrimitiveType::TYPE_DATEV2:
797
522k
        return get<PrimitiveType::TYPE_DATEV2>().to_date_int_val() <=>
798
522k
               rhs.get<PrimitiveType::TYPE_DATEV2>().to_date_int_val();
799
7.99k
    case PrimitiveType::TYPE_TIMESTAMPTZ:
800
7.99k
        return get<PrimitiveType::TYPE_TIMESTAMPTZ>().to_date_int_val() <=>
801
7.99k
               rhs.get<PrimitiveType::TYPE_TIMESTAMPTZ>().to_date_int_val();
802
3.15k
    case PrimitiveType::TYPE_DATE:
803
3.15k
        return get<PrimitiveType::TYPE_DATE>() <=> rhs.get<PrimitiveType::TYPE_DATE>();
804
715
    case PrimitiveType::TYPE_DATETIME:
805
715
        return get<PrimitiveType::TYPE_DATETIME>() <=> rhs.get<PrimitiveType::TYPE_DATETIME>();
806
108k
    case PrimitiveType::TYPE_BIGINT:
807
108k
        return get<PrimitiveType::TYPE_BIGINT>() <=> rhs.get<PrimitiveType::TYPE_BIGINT>();
808
15.9k
    case PrimitiveType::TYPE_BOOLEAN:
809
15.9k
        return get<PrimitiveType::TYPE_BOOLEAN>() <=> rhs.get<PrimitiveType::TYPE_BOOLEAN>();
810
449k
    case PrimitiveType::TYPE_TINYINT:
811
449k
        return get<TYPE_TINYINT>() <=> rhs.get<TYPE_TINYINT>();
812
12.1k
    case PrimitiveType::TYPE_SMALLINT:
813
12.1k
        return get<TYPE_SMALLINT>() <=> rhs.get<TYPE_SMALLINT>();
814
875k
    case PrimitiveType::TYPE_INT:
815
875k
        return get<TYPE_INT>() <=> rhs.get<TYPE_INT>();
816
15.5k
    case PrimitiveType::TYPE_LARGEINT:
817
15.5k
        return get<TYPE_LARGEINT>() <=> rhs.get<TYPE_LARGEINT>();
818
236
    case PrimitiveType::TYPE_IPV6:
819
236
        return get<TYPE_IPV6>() <=> rhs.get<TYPE_IPV6>();
820
292
    case PrimitiveType::TYPE_IPV4:
821
292
        return get<TYPE_IPV4>() <=> rhs.get<TYPE_IPV4>();
822
66
    case PrimitiveType::TYPE_FLOAT:
823
66
        switch (Compare::compare(get<TYPE_FLOAT>(), rhs.get<TYPE_FLOAT>())) {
824
2
        case -1:
825
2
            return std::strong_ordering::less;
826
38
        case 0:
827
38
            return std::strong_ordering::equal;
828
26
        case 1:
829
26
            return std::strong_ordering::greater;
830
0
        default:
831
0
            LOG(FATAL) << "unexpected float compare result";
832
66
        }
833
11
    case PrimitiveType::TYPE_TIMEV2:
834
11
        return get<TYPE_TIMEV2>() < rhs.get<TYPE_TIMEV2>()    ? std::strong_ordering::less
835
11
               : get<TYPE_TIMEV2>() == rhs.get<TYPE_TIMEV2>() ? std::strong_ordering::equal
836
11
                                                              : std::strong_ordering::greater;
837
83
    case PrimitiveType::TYPE_DOUBLE:
838
83
        switch (Compare::compare(get<TYPE_DOUBLE>(), rhs.get<TYPE_DOUBLE>())) {
839
10
        case -1:
840
10
            return std::strong_ordering::less;
841
35
        case 0:
842
35
            return std::strong_ordering::equal;
843
38
        case 1:
844
38
            return std::strong_ordering::greater;
845
0
        default:
846
0
            LOG(FATAL) << "unexpected double compare result";
847
83
        }
848
27.6k
    case PrimitiveType::TYPE_STRING:
849
27.6k
        return get<TYPE_STRING>() <=> rhs.get<TYPE_STRING>();
850
377
    case PrimitiveType::TYPE_CHAR:
851
377
        return get<TYPE_CHAR>() <=> rhs.get<TYPE_CHAR>();
852
1.67M
    case PrimitiveType::TYPE_VARCHAR:
853
1.67M
        return get<TYPE_VARCHAR>() <=> rhs.get<TYPE_VARCHAR>();
854
21
    case PrimitiveType::TYPE_VARBINARY:
855
21
        return get<TYPE_VARBINARY>() <=> rhs.get<TYPE_VARBINARY>();
856
851
    case PrimitiveType::TYPE_DECIMAL32:
857
851
        return get<TYPE_DECIMAL32>() <=> rhs.get<TYPE_DECIMAL32>();
858
2.66k
    case PrimitiveType::TYPE_DECIMAL64:
859
2.66k
        return get<TYPE_DECIMAL64>() <=> rhs.get<TYPE_DECIMAL64>();
860
2.74k
    case PrimitiveType::TYPE_DECIMALV2:
861
2.74k
        return get<TYPE_DECIMALV2>() <=> rhs.get<TYPE_DECIMALV2>();
862
3.54k
    case PrimitiveType::TYPE_DECIMAL128I:
863
3.54k
        return get<TYPE_DECIMAL128I>() <=> rhs.get<TYPE_DECIMAL128I>();
864
2.10k
    case PrimitiveType::TYPE_DECIMAL256:
865
2.10k
        return get<TYPE_DECIMAL256>() <=> rhs.get<TYPE_DECIMAL256>();
866
0
    default:
867
0
        throw Exception(Status::FatalError("Unsupported type: {}", get_type_name()));
868
3.71M
    }
869
3.71M
}
870
871
#define MATCH_PRIMITIVE_TYPE(primitive_type)                                   \
872
10.5k
    if (type == primitive_type) {                                              \
873
1.62k
        const auto& v = get<primitive_type>();                                 \
874
1.62k
        return std::string_view(reinterpret_cast<const char*>(&v), sizeof(v)); \
875
1.62k
    }
876
877
6.43k
std::string_view Field::as_string_view() const {
878
6.43k
    if (type == PrimitiveType::TYPE_STRING || type == PrimitiveType::TYPE_VARCHAR ||
879
6.43k
        type == PrimitiveType::TYPE_CHAR) {
880
4.80k
        const auto& s = get<TYPE_STRING>();
881
4.80k
        return {s.data(), s.size()};
882
4.80k
    }
883
1.62k
    if (type == PrimitiveType::TYPE_VARBINARY) {
884
5
        const auto& svf = get<TYPE_VARBINARY>();
885
5
        return {svf.data(), svf.size()};
886
5
    }
887
    // MATCH_PRIMITIVE_TYPE(INVALID_TYPE);
888
    // MATCH_PRIMITIVE_TYPE(TYPE_NULL);
889
1.61k
    MATCH_PRIMITIVE_TYPE(TYPE_BOOLEAN);
890
1.61k
    MATCH_PRIMITIVE_TYPE(TYPE_TINYINT);
891
1.46k
    MATCH_PRIMITIVE_TYPE(TYPE_SMALLINT);
892
1.46k
    MATCH_PRIMITIVE_TYPE(TYPE_INT);
893
471
    MATCH_PRIMITIVE_TYPE(TYPE_BIGINT);
894
408
    MATCH_PRIMITIVE_TYPE(TYPE_LARGEINT);
895
408
    MATCH_PRIMITIVE_TYPE(TYPE_FLOAT)
896
408
    MATCH_PRIMITIVE_TYPE(TYPE_DOUBLE);
897
    // MATCH_PRIMITIVE_TYPE(TYPE_VARCHAR);
898
408
    MATCH_PRIMITIVE_TYPE(TYPE_DATE);
899
408
    MATCH_PRIMITIVE_TYPE(TYPE_DATETIME);
900
408
    MATCH_PRIMITIVE_TYPE(TYPE_TIMESTAMPTZ);
901
    // MATCH_PRIMITIVE_TYPE(TYPE_BINARY);
902
    // MATCH_PRIMITIVE_TYPE(TYPE_DECIMAL);
903
    // MATCH_PRIMITIVE_TYPE(TYPE_CHAR);
904
    // MATCH_PRIMITIVE_TYPE(TYPE_STRUCT);
905
    // MATCH_PRIMITIVE_TYPE(TYPE_ARRAY);
906
    // MATCH_PRIMITIVE_TYPE(TYPE_MAP);
907
    // MATCH_PRIMITIVE_TYPE(TYPE_HLL);
908
388
    MATCH_PRIMITIVE_TYPE(TYPE_DECIMALV2);
909
    // MATCH_PRIMITIVE_TYPE(TYPE_BITMAP);
910
    // MATCH_PRIMITIVE_TYPE(TYPE_STRING);
911
    // MATCH_PRIMITIVE_TYPE(TYPE_QUANTILE_STATE);
912
388
    MATCH_PRIMITIVE_TYPE(TYPE_DATEV2);
913
360
    MATCH_PRIMITIVE_TYPE(TYPE_DATETIMEV2);
914
321
    MATCH_PRIMITIVE_TYPE(TYPE_TIMESTAMP_NS);
915
18.4E
    MATCH_PRIMITIVE_TYPE(TYPE_TIMEV2);
916
18.4E
    MATCH_PRIMITIVE_TYPE(TYPE_DECIMAL32);
917
18.4E
    MATCH_PRIMITIVE_TYPE(TYPE_DECIMAL64);
918
18.4E
    MATCH_PRIMITIVE_TYPE(TYPE_DECIMAL128I);
919
    // MATCH_PRIMITIVE_TYPE(TYPE_JSONB);
920
    // MATCH_PRIMITIVE_TYPE(TYPE_VARIANT);
921
    // MATCH_PRIMITIVE_TYPE(TYPE_LAMBDA_FUNCTION);
922
    // MATCH_PRIMITIVE_TYPE(TYPE_AGG_STATE);
923
18.4E
    MATCH_PRIMITIVE_TYPE(TYPE_DECIMAL256);
924
18.4E
    MATCH_PRIMITIVE_TYPE(TYPE_IPV4);
925
18.4E
    MATCH_PRIMITIVE_TYPE(TYPE_IPV6);
926
18.4E
    MATCH_PRIMITIVE_TYPE(TYPE_UINT32);
927
18.4E
    MATCH_PRIMITIVE_TYPE(TYPE_UINT64);
928
    // MATCH_PRIMITIVE_TYPE(TYPE_FIXED_LENGTH_OBJECT);
929
18.4E
    throw Exception(
930
18.4E
            Status::FatalError("type not supported for as_string_view, type={}", get_type_name()));
931
18.4E
}
932
933
#undef MATCH_PRIMITIVE_TYPE
934
935
// Important!!! This method is not accurate, for example, decimal to string, it uses scale == 0, because
936
// it do not know the actual scale of the decimal value. It is only used for debug printing, so it is fine.
937
15.6M
std::string Field::to_debug_string(int scale) const {
938
15.6M
    if (is_null()) {
939
0
        return "NULL";
940
0
    }
941
15.6M
    switch (type) {
942
36.2k
    case PrimitiveType::TYPE_BOOLEAN:
943
36.2k
        return get<TYPE_BOOLEAN>() ? "true" : "false";
944
1.34M
    case PrimitiveType::TYPE_TINYINT:
945
1.34M
        return CastToString::from_number(get<TYPE_TINYINT>());
946
53.4k
    case PrimitiveType::TYPE_SMALLINT:
947
53.4k
        return CastToString::from_number(get<TYPE_SMALLINT>());
948
613k
    case PrimitiveType::TYPE_INT:
949
613k
        return CastToString::from_number(get<TYPE_INT>());
950
272k
    case PrimitiveType::TYPE_BIGINT:
951
272k
        return CastToString::from_number(get<TYPE_BIGINT>());
952
51.0k
    case PrimitiveType::TYPE_LARGEINT:
953
51.0k
        return CastToString::from_number(get<TYPE_LARGEINT>());
954
0
    case PrimitiveType::TYPE_FLOAT:
955
0
        return CastToString::from_number(get<TYPE_FLOAT>());
956
0
    case PrimitiveType::TYPE_DOUBLE:
957
0
        return CastToString::from_number(get<TYPE_DOUBLE>());
958
0
    case PrimitiveType::TYPE_STRING:
959
1.36k
    case PrimitiveType::TYPE_CHAR:
960
12.4M
    case PrimitiveType::TYPE_VARCHAR:
961
12.4M
        return get<TYPE_STRING>();
962
0
    case PrimitiveType::TYPE_VARBINARY:
963
0
        return get<TYPE_VARBINARY>();
964
2.46k
    case PrimitiveType::TYPE_DATE:
965
2.46k
        return CastToString::from_date_or_datetime(get<TYPE_DATE>());
966
190
    case PrimitiveType::TYPE_DATETIME:
967
190
        return CastToString::from_date_or_datetime(get<TYPE_DATETIME>());
968
840k
    case PrimitiveType::TYPE_DATEV2:
969
840k
        return CastToString::from_datev2(get<TYPE_DATEV2>());
970
12.5k
    case PrimitiveType::TYPE_DATETIMEV2:
971
12.5k
        return CastToString::from_datetimev2(get<TYPE_DATETIMEV2>(), scale);
972
330
    case PrimitiveType::TYPE_TIMESTAMP_NS:
973
330
        return get<TYPE_TIMESTAMP_NS>().to_string();
974
25.0k
    case PrimitiveType::TYPE_TIMESTAMPTZ:
975
25.0k
        return CastToString::from_timestamptz(get<TYPE_TIMESTAMPTZ>(), scale);
976
501
    case PrimitiveType::TYPE_DECIMALV2:
977
501
        return get<TYPE_DECIMALV2>().to_string();
978
2.17k
    case PrimitiveType::TYPE_DECIMAL32:
979
2.17k
        return CastToString::from_decimal(get<TYPE_DECIMAL32>(), scale);
980
1.11k
    case PrimitiveType::TYPE_DECIMAL64:
981
1.11k
        return CastToString::from_decimal(get<TYPE_DECIMAL64>(), scale);
982
4.47k
    case PrimitiveType::TYPE_DECIMAL128I:
983
4.47k
        return CastToString::from_decimal(get<TYPE_DECIMAL128I>(), scale);
984
2.30k
    case PrimitiveType::TYPE_DECIMAL256:
985
2.30k
        return CastToString::from_decimal(get<TYPE_DECIMAL256>(), scale);
986
0
    case PrimitiveType::TYPE_IPV4:
987
0
        return CastToString::from_ip(get<TYPE_IPV4>());
988
21
    case PrimitiveType::TYPE_IPV6:
989
21
        return CastToString::from_ip(get<TYPE_IPV6>());
990
0
    default:
991
0
        throw Exception(Status::FatalError("type not supported for to_debug_string, type={}",
992
0
                                           get_type_name()));
993
0
        __builtin_unreachable();
994
15.6M
    }
995
15.6M
}
996
997
#define DECLARE_FUNCTION(FUNC_NAME)                                                               \
998
    template void Field::FUNC_NAME<TYPE_NULL>(typename PrimitiveTypeTraits<TYPE_NULL>::CppType && \
999
                                              rhs);                                               \
1000
    template void Field::FUNC_NAME<TYPE_TINYINT>(                                                 \
1001
            typename PrimitiveTypeTraits<TYPE_TINYINT>::CppType && rhs);                          \
1002
    template void Field::FUNC_NAME<TYPE_SMALLINT>(                                                \
1003
            typename PrimitiveTypeTraits<TYPE_SMALLINT>::CppType && rhs);                         \
1004
    template void Field::FUNC_NAME<TYPE_INT>(typename PrimitiveTypeTraits<TYPE_INT>::CppType &&   \
1005
                                             rhs);                                                \
1006
    template void Field::FUNC_NAME<TYPE_BIGINT>(                                                  \
1007
            typename PrimitiveTypeTraits<TYPE_BIGINT>::CppType && rhs);                           \
1008
    template void Field::FUNC_NAME<TYPE_LARGEINT>(                                                \
1009
            typename PrimitiveTypeTraits<TYPE_LARGEINT>::CppType && rhs);                         \
1010
    template void Field::FUNC_NAME<TYPE_DATE>(typename PrimitiveTypeTraits<TYPE_DATE>::CppType && \
1011
                                              rhs);                                               \
1012
    template void Field::FUNC_NAME<TYPE_DATETIME>(                                                \
1013
            typename PrimitiveTypeTraits<TYPE_DATETIME>::CppType && rhs);                         \
1014
    template void Field::FUNC_NAME<TYPE_DATEV2>(                                                  \
1015
            typename PrimitiveTypeTraits<TYPE_DATEV2>::CppType && rhs);                           \
1016
    template void Field::FUNC_NAME<TYPE_DATETIMEV2>(                                              \
1017
            typename PrimitiveTypeTraits<TYPE_DATETIMEV2>::CppType && rhs);                       \
1018
    template void Field::FUNC_NAME<TYPE_TIMESTAMP_NS>(                                            \
1019
            typename PrimitiveTypeTraits<TYPE_TIMESTAMP_NS>::CppType && rhs);                     \
1020
    template void Field::FUNC_NAME<TYPE_DECIMAL32>(                                               \
1021
            typename PrimitiveTypeTraits<TYPE_DECIMAL32>::CppType && rhs);                        \
1022
    template void Field::FUNC_NAME<TYPE_DECIMAL64>(                                               \
1023
            typename PrimitiveTypeTraits<TYPE_DECIMAL64>::CppType && rhs);                        \
1024
    template void Field::FUNC_NAME<TYPE_DECIMALV2>(                                               \
1025
            typename PrimitiveTypeTraits<TYPE_DECIMALV2>::CppType && rhs);                        \
1026
    template void Field::FUNC_NAME<TYPE_DECIMAL128I>(                                             \
1027
            typename PrimitiveTypeTraits<TYPE_DECIMAL128I>::CppType && rhs);                      \
1028
    template void Field::FUNC_NAME<TYPE_DECIMAL256>(                                              \
1029
            typename PrimitiveTypeTraits<TYPE_DECIMAL256>::CppType && rhs);                       \
1030
    template void Field::FUNC_NAME<TYPE_CHAR>(typename PrimitiveTypeTraits<TYPE_CHAR>::CppType && \
1031
                                              rhs);                                               \
1032
    template void Field::FUNC_NAME<TYPE_VARCHAR>(                                                 \
1033
            typename PrimitiveTypeTraits<TYPE_VARCHAR>::CppType && rhs);                          \
1034
    template void Field::FUNC_NAME<TYPE_STRING>(                                                  \
1035
            typename PrimitiveTypeTraits<TYPE_STRING>::CppType && rhs);                           \
1036
    template void Field::FUNC_NAME<TYPE_VARBINARY>(                                               \
1037
            typename PrimitiveTypeTraits<TYPE_VARBINARY>::CppType && rhs);                        \
1038
    template void Field::FUNC_NAME<TYPE_HLL>(typename PrimitiveTypeTraits<TYPE_HLL>::CppType &&   \
1039
                                             rhs);                                                \
1040
    template void Field::FUNC_NAME<TYPE_VARIANT>(                                                 \
1041
            typename PrimitiveTypeTraits<TYPE_VARIANT>::CppType && rhs);                          \
1042
    template void Field::FUNC_NAME<TYPE_QUANTILE_STATE>(                                          \
1043
            typename PrimitiveTypeTraits<TYPE_QUANTILE_STATE>::CppType && rhs);                   \
1044
    template void Field::FUNC_NAME<TYPE_ARRAY>(                                                   \
1045
            typename PrimitiveTypeTraits<TYPE_ARRAY>::CppType && rhs);                            \
1046
    template void Field::FUNC_NAME<TYPE_NULL>(                                                    \
1047
            const typename PrimitiveTypeTraits<TYPE_NULL>::CppType& rhs);                         \
1048
    template void Field::FUNC_NAME<TYPE_TINYINT>(                                                 \
1049
            const typename PrimitiveTypeTraits<TYPE_TINYINT>::CppType& rhs);                      \
1050
    template void Field::FUNC_NAME<TYPE_SMALLINT>(                                                \
1051
            const typename PrimitiveTypeTraits<TYPE_SMALLINT>::CppType& rhs);                     \
1052
    template void Field::FUNC_NAME<TYPE_INT>(                                                     \
1053
            const typename PrimitiveTypeTraits<TYPE_INT>::CppType& rhs);                          \
1054
    template void Field::FUNC_NAME<TYPE_BIGINT>(                                                  \
1055
            const typename PrimitiveTypeTraits<TYPE_BIGINT>::CppType& rhs);                       \
1056
    template void Field::FUNC_NAME<TYPE_LARGEINT>(                                                \
1057
            const typename PrimitiveTypeTraits<TYPE_LARGEINT>::CppType& rhs);                     \
1058
    template void Field::FUNC_NAME<TYPE_DATE>(                                                    \
1059
            const typename PrimitiveTypeTraits<TYPE_DATE>::CppType& rhs);                         \
1060
    template void Field::FUNC_NAME<TYPE_DATETIME>(                                                \
1061
            const typename PrimitiveTypeTraits<TYPE_DATETIME>::CppType& rhs);                     \
1062
    template void Field::FUNC_NAME<TYPE_DATEV2>(                                                  \
1063
            const typename PrimitiveTypeTraits<TYPE_DATEV2>::CppType& rhs);                       \
1064
    template void Field::FUNC_NAME<TYPE_DATETIMEV2>(                                              \
1065
            const typename PrimitiveTypeTraits<TYPE_DATETIMEV2>::CppType& rhs);                   \
1066
    template void Field::FUNC_NAME<TYPE_TIMESTAMP_NS>(                                            \
1067
            const typename PrimitiveTypeTraits<TYPE_TIMESTAMP_NS>::CppType& rhs);                 \
1068
    template void Field::FUNC_NAME<TYPE_TIMESTAMPTZ>(                                             \
1069
            const typename PrimitiveTypeTraits<TYPE_TIMESTAMPTZ>::CppType& rhs);                  \
1070
    template void Field::FUNC_NAME<TYPE_TIMESTAMPTZ>(                                             \
1071
            typename PrimitiveTypeTraits<TYPE_TIMESTAMPTZ>::CppType && rhs);                      \
1072
    template void Field::FUNC_NAME<TYPE_DECIMAL32>(                                               \
1073
            const typename PrimitiveTypeTraits<TYPE_DECIMAL32>::CppType& rhs);                    \
1074
    template void Field::FUNC_NAME<TYPE_DECIMAL64>(                                               \
1075
            const typename PrimitiveTypeTraits<TYPE_DECIMAL64>::CppType& rhs);                    \
1076
    template void Field::FUNC_NAME<TYPE_DECIMALV2>(                                               \
1077
            const typename PrimitiveTypeTraits<TYPE_DECIMALV2>::CppType& rhs);                    \
1078
    template void Field::FUNC_NAME<TYPE_DECIMAL128I>(                                             \
1079
            const typename PrimitiveTypeTraits<TYPE_DECIMAL128I>::CppType& rhs);                  \
1080
    template void Field::FUNC_NAME<TYPE_DECIMAL256>(                                              \
1081
            const typename PrimitiveTypeTraits<TYPE_DECIMAL256>::CppType& rhs);                   \
1082
    template void Field::FUNC_NAME<TYPE_CHAR>(                                                    \
1083
            const typename PrimitiveTypeTraits<TYPE_CHAR>::CppType& rhs);                         \
1084
    template void Field::FUNC_NAME<TYPE_VARCHAR>(                                                 \
1085
            const typename PrimitiveTypeTraits<TYPE_VARCHAR>::CppType& rhs);                      \
1086
    template void Field::FUNC_NAME<TYPE_STRING>(                                                  \
1087
            const typename PrimitiveTypeTraits<TYPE_STRING>::CppType& rhs);                       \
1088
    template void Field::FUNC_NAME<TYPE_VARBINARY>(                                               \
1089
            const typename PrimitiveTypeTraits<TYPE_VARBINARY>::CppType& rhs);                    \
1090
    template void Field::FUNC_NAME<TYPE_HLL>(                                                     \
1091
            const typename PrimitiveTypeTraits<TYPE_HLL>::CppType& rhs);                          \
1092
    template void Field::FUNC_NAME<TYPE_VARIANT>(                                                 \
1093
            const typename PrimitiveTypeTraits<TYPE_VARIANT>::CppType& rhs);                      \
1094
    template void Field::FUNC_NAME<TYPE_QUANTILE_STATE>(                                          \
1095
            const typename PrimitiveTypeTraits<TYPE_QUANTILE_STATE>::CppType& rhs);               \
1096
    template void Field::FUNC_NAME<TYPE_ARRAY>(                                                   \
1097
            const typename PrimitiveTypeTraits<TYPE_ARRAY>::CppType& rhs);                        \
1098
    template void Field::FUNC_NAME<TYPE_IPV4>(typename PrimitiveTypeTraits<TYPE_IPV4>::CppType && \
1099
                                              rhs);                                               \
1100
    template void Field::FUNC_NAME<TYPE_IPV4>(                                                    \
1101
            const typename PrimitiveTypeTraits<TYPE_IPV4>::CppType& rhs);                         \
1102
    template void Field::FUNC_NAME<TYPE_IPV6>(typename PrimitiveTypeTraits<TYPE_IPV6>::CppType && \
1103
                                              rhs);                                               \
1104
    template void Field::FUNC_NAME<TYPE_IPV6>(                                                    \
1105
            const typename PrimitiveTypeTraits<TYPE_IPV6>::CppType& rhs);                         \
1106
    template void Field::FUNC_NAME<TYPE_BOOLEAN>(                                                 \
1107
            typename PrimitiveTypeTraits<TYPE_BOOLEAN>::CppType && rhs);                          \
1108
    template void Field::FUNC_NAME<TYPE_BOOLEAN>(                                                 \
1109
            const typename PrimitiveTypeTraits<TYPE_BOOLEAN>::CppType& rhs);                      \
1110
    template void Field::FUNC_NAME<TYPE_FLOAT>(                                                   \
1111
            typename PrimitiveTypeTraits<TYPE_FLOAT>::CppType && rhs);                            \
1112
    template void Field::FUNC_NAME<TYPE_FLOAT>(                                                   \
1113
            const typename PrimitiveTypeTraits<TYPE_FLOAT>::CppType& rhs);                        \
1114
    template void Field::FUNC_NAME<TYPE_DOUBLE>(                                                  \
1115
            typename PrimitiveTypeTraits<TYPE_DOUBLE>::CppType && rhs);                           \
1116
    template void Field::FUNC_NAME<TYPE_DOUBLE>(                                                  \
1117
            const typename PrimitiveTypeTraits<TYPE_DOUBLE>::CppType& rhs);                       \
1118
    template void Field::FUNC_NAME<TYPE_JSONB>(                                                   \
1119
            typename PrimitiveTypeTraits<TYPE_JSONB>::CppType && rhs);                            \
1120
    template void Field::FUNC_NAME<TYPE_JSONB>(                                                   \
1121
            const typename PrimitiveTypeTraits<TYPE_JSONB>::CppType& rhs);                        \
1122
    template void Field::FUNC_NAME<TYPE_STRUCT>(                                                  \
1123
            typename PrimitiveTypeTraits<TYPE_STRUCT>::CppType && rhs);                           \
1124
    template void Field::FUNC_NAME<TYPE_STRUCT>(                                                  \
1125
            const typename PrimitiveTypeTraits<TYPE_STRUCT>::CppType& rhs);                       \
1126
    template void Field::FUNC_NAME<TYPE_MAP>(typename PrimitiveTypeTraits<TYPE_MAP>::CppType &&   \
1127
                                             rhs);                                                \
1128
    template void Field::FUNC_NAME<TYPE_MAP>(                                                     \
1129
            const typename PrimitiveTypeTraits<TYPE_MAP>::CppType& rhs);                          \
1130
    template void Field::FUNC_NAME<TYPE_BITMAP>(                                                  \
1131
            typename PrimitiveTypeTraits<TYPE_BITMAP>::CppType && rhs);                           \
1132
    template void Field::FUNC_NAME<TYPE_BITMAP>(                                                  \
1133
            const typename PrimitiveTypeTraits<TYPE_BITMAP>::CppType& rhs);                       \
1134
    template void Field::FUNC_NAME<TYPE_TIMEV2>(                                                  \
1135
            const typename PrimitiveTypeTraits<TYPE_TIMEV2>::CppType& rhs);                       \
1136
    template void Field::FUNC_NAME<TYPE_TIMEV2>(                                                  \
1137
            typename PrimitiveTypeTraits<TYPE_TIMEV2>::CppType && rhs);                           \
1138
    template void Field::FUNC_NAME<TYPE_UINT32>(                                                  \
1139
            const typename PrimitiveTypeTraits<TYPE_UINT32>::CppType& rhs);                       \
1140
    template void Field::FUNC_NAME<TYPE_UINT32>(                                                  \
1141
            typename PrimitiveTypeTraits<TYPE_UINT32>::CppType && rhs);                           \
1142
    template void Field::FUNC_NAME<TYPE_UINT64>(                                                  \
1143
            const typename PrimitiveTypeTraits<TYPE_UINT64>::CppType& rhs);                       \
1144
    template void Field::FUNC_NAME<TYPE_UINT64>(                                                  \
1145
            typename PrimitiveTypeTraits<TYPE_UINT64>::CppType && rhs);
1146
DECLARE_FUNCTION(create_concrete)
1147
DECLARE_FUNCTION(assign_concrete)
1148
#undef DECLARE_FUNCTION
1149
1150
#define DECLARE_FUNCTION(TYPE_NAME)                                                          \
1151
    template typename PrimitiveTypeTraits<TYPE_NAME>::CppType& Field::get<TYPE_NAME>();      \
1152
    template const typename PrimitiveTypeTraits<TYPE_NAME>::CppType& Field::get<TYPE_NAME>() \
1153
            const;                                                                           \
1154
    template void Field::destroy<TYPE_NAME>();
1155
DECLARE_FUNCTION(TYPE_NULL)
1156
DECLARE_FUNCTION(TYPE_TINYINT)
1157
DECLARE_FUNCTION(TYPE_SMALLINT)
1158
DECLARE_FUNCTION(TYPE_INT)
1159
DECLARE_FUNCTION(TYPE_BIGINT)
1160
DECLARE_FUNCTION(TYPE_LARGEINT)
1161
DECLARE_FUNCTION(TYPE_DATE)
1162
DECLARE_FUNCTION(TYPE_DATETIME)
1163
DECLARE_FUNCTION(TYPE_DATEV2)
1164
DECLARE_FUNCTION(TYPE_DATETIMEV2)
1165
DECLARE_FUNCTION(TYPE_TIMESTAMP_NS)
1166
DECLARE_FUNCTION(TYPE_TIMESTAMPTZ)
1167
DECLARE_FUNCTION(TYPE_DECIMAL32)
1168
DECLARE_FUNCTION(TYPE_DECIMAL64)
1169
DECLARE_FUNCTION(TYPE_DECIMALV2)
1170
DECLARE_FUNCTION(TYPE_DECIMAL128I)
1171
DECLARE_FUNCTION(TYPE_DECIMAL256)
1172
DECLARE_FUNCTION(TYPE_CHAR)
1173
DECLARE_FUNCTION(TYPE_VARCHAR)
1174
DECLARE_FUNCTION(TYPE_STRING)
1175
DECLARE_FUNCTION(TYPE_VARBINARY)
1176
DECLARE_FUNCTION(TYPE_HLL)
1177
DECLARE_FUNCTION(TYPE_VARIANT)
1178
DECLARE_FUNCTION(TYPE_QUANTILE_STATE)
1179
DECLARE_FUNCTION(TYPE_ARRAY)
1180
DECLARE_FUNCTION(TYPE_IPV4)
1181
DECLARE_FUNCTION(TYPE_IPV6)
1182
DECLARE_FUNCTION(TYPE_BOOLEAN)
1183
DECLARE_FUNCTION(TYPE_FLOAT)
1184
DECLARE_FUNCTION(TYPE_DOUBLE)
1185
DECLARE_FUNCTION(TYPE_JSONB)
1186
DECLARE_FUNCTION(TYPE_STRUCT)
1187
DECLARE_FUNCTION(TYPE_MAP)
1188
DECLARE_FUNCTION(TYPE_BITMAP)
1189
DECLARE_FUNCTION(TYPE_TIMEV2)
1190
DECLARE_FUNCTION(TYPE_UINT32)
1191
DECLARE_FUNCTION(TYPE_UINT64)
1192
#undef DECLARE_FUNCTION
1193
} // namespace doris