Coverage Report

Created: 2026-09-23 06:46

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
147
    explicit OwnedBinaryField(const StringView& value) {
105
        // Inline views already own their bytes; preserve their allocation-free representation.
106
147
        if (value.isInline()) {
107
103
            view = value;
108
103
            return;
109
103
        }
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
143
    ~OwnedBinaryField() { release_bytes(); }
127
128
private:
129
157
    void release_bytes() const {
130
157
        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
157
    }
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
157M
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
157M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
148
157M
    if constexpr (Type == TYPE_VARBINARY) {
149
101
        static_assert(sizeof(OwnedBinaryField) <= sizeof(storage));
150
101
        new (&storage) OwnedBinaryField(x);
151
157M
    } else {
152
157M
        new (&storage) StorageType(std::move(x));
153
157M
    }
154
157M
    type = Type;
155
157M
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
157M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE1EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
133k
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
133k
    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
133k
    } else {
152
133k
        new (&storage) StorageType(std::move(x));
153
133k
    }
154
133k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
133k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE3EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
9.58M
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.58M
    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.58M
    } else {
152
9.58M
        new (&storage) StorageType(std::move(x));
153
9.58M
    }
154
9.58M
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
9.58M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE4EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
267k
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
267k
    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
267k
    } else {
152
267k
        new (&storage) StorageType(std::move(x));
153
267k
    }
154
267k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
267k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE5EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
27.8M
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.8M
    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.8M
    } else {
152
27.8M
        new (&storage) StorageType(std::move(x));
153
27.8M
    }
154
27.8M
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
27.8M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE6EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
32.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
32.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
32.4M
    } else {
152
32.4M
        new (&storage) StorageType(std::move(x));
153
32.4M
    }
154
32.4M
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
32.4M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE7EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
329k
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
329k
    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
329k
    } else {
152
329k
        new (&storage) StorageType(std::move(x));
153
329k
    }
154
329k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
329k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE11EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
23.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
23.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
23.4k
    } else {
152
23.4k
        new (&storage) StorageType(std::move(x));
153
23.4k
    }
154
23.4k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
23.4k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE12EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
33.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
33.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
33.9k
    } else {
152
33.9k
        new (&storage) StorageType(std::move(x));
153
33.9k
    }
154
33.9k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
33.9k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE25EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
792k
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
792k
    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
792k
    } else {
152
792k
        new (&storage) StorageType(std::move(x));
153
792k
    }
154
792k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
792k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE26EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
4.42M
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
4.42M
    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
4.42M
    } else {
152
4.42M
        new (&storage) StorageType(std::move(x));
153
4.42M
    }
154
4.42M
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
4.42M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE43EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
7.81k
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
7.81k
    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
7.81k
    } else {
152
7.81k
        new (&storage) StorageType(std::move(x));
153
7.81k
    }
154
7.81k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
7.81k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE28EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
121k
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
121k
    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
121k
    } else {
152
121k
        new (&storage) StorageType(std::move(x));
153
121k
    }
154
121k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
121k
}
_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.5k
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.5k
    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.5k
    } else {
152
18.5k
        new (&storage) StorageType(std::move(x));
153
18.5k
    }
154
18.5k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
18.5k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE30EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
209k
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
209k
    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
209k
    } else {
152
209k
        new (&storage) StorageType(std::move(x));
153
209k
    }
154
209k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
209k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE35EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
55.1k
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
55.1k
    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
55.1k
    } else {
152
55.1k
        new (&storage) StorageType(std::move(x));
153
55.1k
    }
154
55.1k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
55.1k
}
_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.11M
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.11M
    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.11M
    } else {
152
2.11M
        new (&storage) StorageType(std::move(x));
153
2.11M
    }
154
2.11M
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
2.11M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE23EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
35.6M
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
35.6M
    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
35.6M
    } else {
152
35.6M
        new (&storage) StorageType(std::move(x));
153
35.6M
    }
154
35.6M
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
35.6M
}
_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.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
13.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
13.2k
    } else {
152
13.2k
        new (&storage) StorageType(std::move(x));
153
13.2k
    }
154
13.2k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
13.2k
}
_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
158k
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
158k
    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
158k
    } else {
152
158k
        new (&storage) StorageType(std::move(x));
153
158k
    }
154
158k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
158k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE42EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
82.1k
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
82.1k
    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
82.1k
    } else {
152
82.1k
        new (&storage) StorageType(std::move(x));
153
82.1k
    }
154
82.1k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
82.1k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE36EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
44.1k
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
44.1k
    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
44.1k
    } else {
152
44.1k
        new (&storage) StorageType(std::move(x));
153
44.1k
    }
154
44.1k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
44.1k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE37EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
30.6k
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.6k
    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.6k
    } else {
152
30.6k
        new (&storage) StorageType(std::move(x));
153
30.6k
    }
154
30.6k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
30.6k
}
_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
166k
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
166k
    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
166k
    } else {
152
166k
        new (&storage) StorageType(std::move(x));
153
166k
    }
154
166k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
166k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE9EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
181k
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
181k
    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
181k
    } else {
152
181k
        new (&storage) StorageType(std::move(x));
153
181k
    }
154
181k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
181k
}
_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.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
20.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
20.2k
    } else {
152
20.2k
        new (&storage) StorageType(std::move(x));
153
20.2k
    }
154
20.2k
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
20.2k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE22EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
141
105
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
105
    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
105
    } else {
152
105
        new (&storage) StorageType(std::move(x));
153
105
    }
154
105
    type = Type;
155
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
156
105
}
_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
30
        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.57M
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.57M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
5.57M
    } else {
169
5.57M
        new (&storage) StorageType(x);
170
5.57M
    }
171
5.57M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
5.57M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE4EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
4.01M
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.01M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
4.01M
    } else {
169
4.01M
        new (&storage) StorageType(x);
170
4.01M
    }
171
4.01M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
4.01M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE5EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
27.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
27.2M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
27.2M
    } else {
169
27.2M
        new (&storage) StorageType(x);
170
27.2M
    }
171
27.2M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
27.2M
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE6EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
5.63M
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.63M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
5.63M
    } else {
169
5.63M
        new (&storage) StorageType(x);
170
5.63M
    }
171
5.63M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
5.63M
}
_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.09M
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.09M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
5.09M
    } else {
169
5.09M
        new (&storage) StorageType(x);
170
5.09M
    }
171
5.09M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
5.09M
}
_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
9.19k
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.19k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
9.19k
    } else {
169
9.19k
        new (&storage) StorageType(x);
170
9.19k
    }
171
9.19k
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
9.19k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE42EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
43.8k
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
43.8k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
43.8k
    } else {
169
43.8k
        new (&storage) StorageType(x);
170
43.8k
    }
171
43.8k
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
43.8k
}
_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.52k
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.52k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
9.52k
    } else {
169
9.52k
        new (&storage) StorageType(x);
170
9.52k
    }
171
9.52k
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
9.52k
}
_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.06k
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.06k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
4.06k
    } else {
169
4.06k
        new (&storage) StorageType(x);
170
4.06k
    }
171
4.06k
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
4.06k
}
_ZN5doris5Field15create_concreteILNS_13PrimitiveTypeE10EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
159
8.05M
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.05M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
8.05M
    } else {
169
8.05M
        new (&storage) StorageType(x);
170
8.05M
    }
171
8.05M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
8.05M
}
_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
30
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
30
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
30
    if constexpr (Type == TYPE_VARBINARY) {
167
30
        new (&storage) OwnedBinaryField(x);
168
    } else {
169
        new (&storage) StorageType(x);
170
    }
171
30
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
30
}
_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.7k
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.7k
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
41.7k
    } else {
169
41.7k
        new (&storage) StorageType(x);
170
41.7k
    }
171
41.7k
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
41.7k
}
_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
3.83M
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.83M
    using StorageType = typename PrimitiveTypeTraits<Type>::CppType;
166
    if constexpr (Type == TYPE_VARBINARY) {
167
        new (&storage) OwnedBinaryField(x);
168
3.83M
    } else {
169
3.83M
        new (&storage) StorageType(x);
170
3.83M
    }
171
3.83M
    type = Type;
172
    DCHECK_NE(type, PrimitiveType::INVALID_TYPE);
173
3.83M
}
_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
62.3M
void Field::create(Field&& field) {
176
62.3M
    switch (field.type) {
177
86.0k
    case PrimitiveType::TYPE_NULL:
178
86.0k
        create_concrete<TYPE_NULL>(std::move(field.template get<TYPE_NULL>()));
179
86.0k
        return;
180
2.22M
    case PrimitiveType::TYPE_DATETIMEV2:
181
2.22M
        create_concrete<TYPE_DATETIMEV2>(std::move(field.template get<TYPE_DATETIMEV2>()));
182
2.22M
        return;
183
6.79k
    case PrimitiveType::TYPE_TIMESTAMP_NS:
184
6.79k
        create_concrete<TYPE_TIMESTAMP_NS>(std::move(field.template get<TYPE_TIMESTAMP_NS>()));
185
6.79k
        return;
186
509k
    case PrimitiveType::TYPE_DATEV2:
187
509k
        create_concrete<TYPE_DATEV2>(std::move(field.template get<TYPE_DATEV2>()));
188
509k
        return;
189
43.6k
    case PrimitiveType::TYPE_TIMESTAMPTZ:
190
43.6k
        create_concrete<TYPE_TIMESTAMPTZ>(std::move(field.template get<TYPE_TIMESTAMPTZ>()));
191
43.6k
        return;
192
23.4k
    case PrimitiveType::TYPE_DATETIME:
193
23.4k
        create_concrete<TYPE_DATETIME>(std::move(field.template get<TYPE_DATETIME>()));
194
23.4k
        return;
195
16.2k
    case PrimitiveType::TYPE_DATE:
196
16.2k
        create_concrete<TYPE_DATE>(std::move(field.template get<TYPE_DATE>()));
197
16.2k
        return;
198
84.5k
    case PrimitiveType::TYPE_BOOLEAN:
199
84.5k
        create_concrete<TYPE_BOOLEAN>(std::move(field.template get<TYPE_BOOLEAN>()));
200
84.5k
        return;
201
4.89M
    case PrimitiveType::TYPE_TINYINT:
202
4.89M
        create_concrete<TYPE_TINYINT>(std::move(field.template get<TYPE_TINYINT>()));
203
4.89M
        return;
204
145k
    case PrimitiveType::TYPE_SMALLINT:
205
145k
        create_concrete<TYPE_SMALLINT>(std::move(field.template get<TYPE_SMALLINT>()));
206
145k
        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
9.29M
    case PrimitiveType::TYPE_BIGINT:
211
9.29M
        create_concrete<TYPE_BIGINT>(std::move(field.template get<TYPE_BIGINT>()));
212
9.29M
        return;
213
163k
    case PrimitiveType::TYPE_LARGEINT:
214
163k
        create_concrete<TYPE_LARGEINT>(std::move(field.template get<TYPE_LARGEINT>()));
215
163k
        return;
216
38.1k
    case PrimitiveType::TYPE_IPV4:
217
38.1k
        create_concrete<TYPE_IPV4>(std::move(field.template get<TYPE_IPV4>()));
218
38.1k
        return;
219
26.7k
    case PrimitiveType::TYPE_IPV6:
220
26.7k
        create_concrete<TYPE_IPV6>(std::move(field.template get<TYPE_IPV6>()));
221
26.7k
        return;
222
97.9k
    case PrimitiveType::TYPE_FLOAT:
223
97.9k
        create_concrete<TYPE_FLOAT>(std::move(field.template get<TYPE_FLOAT>()));
224
97.9k
        return;
225
191
    case PrimitiveType::TYPE_TIMEV2:
226
191
        create_concrete<TYPE_TIMEV2>(std::move(field.template get<TYPE_TIMEV2>()));
227
191
        return;
228
99.2k
    case PrimitiveType::TYPE_DOUBLE:
229
99.2k
        create_concrete<TYPE_DOUBLE>(std::move(field.template get<TYPE_DOUBLE>()));
230
99.2k
        return;
231
17.5M
    case PrimitiveType::TYPE_STRING:
232
17.5M
        create_concrete<TYPE_STRING>(std::move(field.template get<TYPE_STRING>()));
233
17.5M
        return;
234
54.3k
    case PrimitiveType::TYPE_CHAR:
235
54.3k
        create_concrete<TYPE_CHAR>(std::move(field.template get<TYPE_CHAR>()));
236
54.3k
        return;
237
1.05M
    case PrimitiveType::TYPE_VARCHAR:
238
1.05M
        create_concrete<TYPE_VARCHAR>(std::move(field.template get<TYPE_VARCHAR>()));
239
1.05M
        return;
240
9
    case PrimitiveType::TYPE_JSONB:
241
9
        create_concrete<TYPE_JSONB>(std::move(field.template get<TYPE_JSONB>()));
242
9
        return;
243
69.7k
    case PrimitiveType::TYPE_ARRAY:
244
69.7k
        create_concrete<TYPE_ARRAY>(std::move(field.template get<TYPE_ARRAY>()));
245
69.7k
        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.83k
    case PrimitiveType::TYPE_MAP:
250
3.83k
        create_concrete<TYPE_MAP>(std::move(field.template get<TYPE_MAP>()));
251
3.83k
        return;
252
67.0k
    case PrimitiveType::TYPE_DECIMAL32:
253
67.0k
        create_concrete<TYPE_DECIMAL32>(std::move(field.template get<TYPE_DECIMAL32>()));
254
67.0k
        return;
255
95.4k
    case PrimitiveType::TYPE_DECIMAL64:
256
95.4k
        create_concrete<TYPE_DECIMAL64>(std::move(field.template get<TYPE_DECIMAL64>()));
257
95.4k
        return;
258
7.23k
    case PrimitiveType::TYPE_DECIMALV2:
259
7.23k
        create_concrete<TYPE_DECIMALV2>(std::move(field.template get<TYPE_DECIMALV2>()));
260
7.23k
        return;
261
104k
    case PrimitiveType::TYPE_DECIMAL128I:
262
104k
        create_concrete<TYPE_DECIMAL128I>(std::move(field.template get<TYPE_DECIMAL128I>()));
263
104k
        return;
264
44.4k
    case PrimitiveType::TYPE_DECIMAL256:
265
44.4k
        create_concrete<TYPE_DECIMAL256>(std::move(field.template get<TYPE_DECIMAL256>()));
266
44.4k
        return;
267
6.67k
    case PrimitiveType::TYPE_VARIANT:
268
6.67k
        create_concrete<TYPE_VARIANT>(std::move(field.template get<TYPE_VARIANT>()));
269
6.67k
        return;
270
35
    case PrimitiveType::TYPE_BITMAP:
271
35
        create_concrete<TYPE_BITMAP>(std::move(field.template get<TYPE_BITMAP>()));
272
35
        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
62.3M
    }
285
62.3M
}
286
287
209M
Field::Field(const Field& rhs) {
288
209M
    create(rhs);
289
209M
}
290
291
1.68M
Field::Field(Field&& rhs) {
292
1.68M
    create(std::move(rhs));
293
1.68M
}
294
295
6.72M
Field& Field::operator=(const Field& rhs) {
296
6.72M
    if (this != &rhs) {
297
6.72M
        if (type != rhs.type) {
298
5.13M
            destroy();
299
            // A failed allocation while changing types must leave a destructible Field.
300
5.13M
            type = TYPE_NULL;
301
5.13M
            create(rhs);
302
5.13M
        } else {
303
1.58M
            assign(rhs); /// This assigns string or vector without deallocation of existing buffer.
304
1.58M
        }
305
6.72M
    }
306
6.72M
    return *this;
307
6.72M
}
308
309
215M
void Field::create(const Field& field) {
310
215M
    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.41k
    case PrimitiveType::TYPE_TIMESTAMP_NS:
318
2.41k
        create_concrete<TYPE_TIMESTAMP_NS>(field.template get<TYPE_TIMESTAMP_NS>());
319
2.41k
        return;
320
4.50M
    case PrimitiveType::TYPE_DATEV2:
321
4.50M
        create_concrete<TYPE_DATEV2>(field.template get<TYPE_DATEV2>());
322
4.50M
        return;
323
26.5k
    case PrimitiveType::TYPE_TIMESTAMPTZ:
324
26.5k
        create_concrete<TYPE_TIMESTAMPTZ>(field.template get<TYPE_TIMESTAMPTZ>());
325
26.5k
        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
5.15M
    case PrimitiveType::TYPE_TINYINT:
336
5.15M
        create_concrete<TYPE_TINYINT>(field.template get<TYPE_TINYINT>());
337
5.15M
        return;
338
3.96M
    case PrimitiveType::TYPE_SMALLINT:
339
3.96M
        create_concrete<TYPE_SMALLINT>(field.template get<TYPE_SMALLINT>());
340
3.96M
        return;
341
981k
    case PrimitiveType::TYPE_INT:
342
981k
        create_concrete<TYPE_INT>(field.template get<TYPE_INT>());
343
981k
        return;
344
5.47M
    case PrimitiveType::TYPE_BIGINT:
345
5.47M
        create_concrete<TYPE_BIGINT>(field.template get<TYPE_BIGINT>());
346
5.47M
        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
223k
    case PrimitiveType::TYPE_STRING:
366
223k
        create_concrete<TYPE_STRING>(field.template get<TYPE_STRING>());
367
223k
        return;
368
2.64k
    case PrimitiveType::TYPE_CHAR:
369
2.64k
        create_concrete<TYPE_CHAR>(field.template get<TYPE_CHAR>());
370
2.64k
        return;
371
7.74M
    case PrimitiveType::TYPE_VARCHAR:
372
7.74M
        create_concrete<TYPE_VARCHAR>(field.template get<TYPE_VARCHAR>());
373
7.74M
        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.59M
    case PrimitiveType::TYPE_DECIMAL32:
387
3.59M
        create_concrete<TYPE_DECIMAL32>(field.template get<TYPE_DECIMAL32>());
388
3.59M
        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
757
    case PrimitiveType::TYPE_DECIMALV2:
393
757
        create_concrete<TYPE_DECIMALV2>(field.template get<TYPE_DECIMALV2>());
394
757
        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
215M
    }
425
215M
}
426
427
476M
void Field::destroy() {
428
476M
    switch (type) {
429
36.8M
    case PrimitiveType::TYPE_STRING:
430
36.8M
        destroy<TYPE_STRING>();
431
36.8M
        break;
432
148k
    case PrimitiveType::TYPE_CHAR:
433
148k
        destroy<TYPE_CHAR>();
434
148k
        break;
435
10.1M
    case PrimitiveType::TYPE_VARCHAR:
436
10.1M
        destroy<TYPE_VARCHAR>();
437
10.1M
        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.3k
    case PrimitiveType::TYPE_VARIANT:
451
13.3k
        destroy<TYPE_VARIANT>();
452
13.3k
        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
129
    case PrimitiveType::TYPE_VARBINARY:
463
129
        destroy<TYPE_VARBINARY>();
464
129
        break;
465
321M
    default:
466
321M
        break;
467
476M
    }
468
469
476M
    type = PrimitiveType::
470
476M
            TYPE_NULL; /// for exception safety in subsequent calls to destroy and create, when create fails.
471
476M
}
472
473
2.45M
void Field::assign(Field&& field) {
474
2.45M
    switch (field.type) {
475
206k
    case PrimitiveType::TYPE_NULL:
476
206k
        assign_concrete<TYPE_NULL>(std::move(field.template get<TYPE_NULL>()));
477
206k
        return;
478
66.5k
    case PrimitiveType::TYPE_DATETIMEV2:
479
66.5k
        assign_concrete<TYPE_DATETIMEV2>(std::move(field.template get<TYPE_DATETIMEV2>()));
480
66.5k
        return;
481
299
    case PrimitiveType::TYPE_TIMESTAMP_NS:
482
299
        assign_concrete<TYPE_TIMESTAMP_NS>(std::move(field.template get<TYPE_TIMESTAMP_NS>()));
483
299
        return;
484
1.14k
    case PrimitiveType::TYPE_DATETIME:
485
1.14k
        assign_concrete<TYPE_DATETIME>(std::move(field.template get<TYPE_DATETIME>()));
486
1.14k
        return;
487
743
    case PrimitiveType::TYPE_DATE:
488
743
        assign_concrete<TYPE_DATE>(std::move(field.template get<TYPE_DATE>()));
489
743
        return;
490
60.6k
    case PrimitiveType::TYPE_DATEV2:
491
60.6k
        assign_concrete<TYPE_DATEV2>(std::move(field.template get<TYPE_DATEV2>()));
492
60.6k
        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.3k
    case PrimitiveType::TYPE_BOOLEAN:
497
17.3k
        assign_concrete<TYPE_BOOLEAN>(std::move(field.template get<TYPE_BOOLEAN>()));
498
17.3k
        return;
499
82.4k
    case PrimitiveType::TYPE_TINYINT:
500
82.4k
        assign_concrete<TYPE_TINYINT>(std::move(field.template get<TYPE_TINYINT>()));
501
82.4k
        return;
502
22.7k
    case PrimitiveType::TYPE_SMALLINT:
503
22.7k
        assign_concrete<TYPE_SMALLINT>(std::move(field.template get<TYPE_SMALLINT>()));
504
22.7k
        return;
505
901k
    case PrimitiveType::TYPE_INT:
506
901k
        assign_concrete<TYPE_INT>(std::move(field.template get<TYPE_INT>()));
507
901k
        return;
508
428k
    case PrimitiveType::TYPE_BIGINT:
509
428k
        assign_concrete<TYPE_BIGINT>(std::move(field.template get<TYPE_BIGINT>()));
510
428k
        return;
511
34.0k
    case PrimitiveType::TYPE_LARGEINT:
512
34.0k
        assign_concrete<TYPE_LARGEINT>(std::move(field.template get<TYPE_LARGEINT>()));
513
34.0k
        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.2k
    case PrimitiveType::TYPE_FLOAT:
521
14.2k
        assign_concrete<TYPE_FLOAT>(std::move(field.template get<TYPE_FLOAT>()));
522
14.2k
        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
149k
    case PrimitiveType::TYPE_STRING:
530
149k
        assign_concrete<TYPE_STRING>(std::move(field.template get<TYPE_STRING>()));
531
149k
        return;
532
35.4k
    case PrimitiveType::TYPE_CHAR:
533
35.4k
        assign_concrete<TYPE_CHAR>(std::move(field.template get<TYPE_CHAR>()));
534
35.4k
        return;
535
301k
    case PrimitiveType::TYPE_VARCHAR:
536
301k
        assign_concrete<TYPE_VARCHAR>(std::move(field.template get<TYPE_VARCHAR>()));
537
301k
        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
118
    case PrimitiveType::TYPE_ARRAY:
542
118
        assign_concrete<TYPE_ARRAY>(std::move(field.template get<TYPE_ARRAY>()));
543
118
        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.87k
    case PrimitiveType::TYPE_DECIMAL32:
551
6.87k
        assign_concrete<TYPE_DECIMAL32>(std::move(field.template get<TYPE_DECIMAL32>()));
552
6.87k
        return;
553
33.1k
    case PrimitiveType::TYPE_DECIMAL64:
554
33.1k
        assign_concrete<TYPE_DECIMAL64>(std::move(field.template get<TYPE_DECIMAL64>()));
555
33.1k
        return;
556
412
    case PrimitiveType::TYPE_DECIMALV2:
557
412
        assign_concrete<TYPE_DECIMALV2>(std::move(field.template get<TYPE_DECIMALV2>()));
558
412
        return;
559
20.3k
    case PrimitiveType::TYPE_DECIMAL128I:
560
20.3k
        assign_concrete<TYPE_DECIMAL128I>(std::move(field.template get<TYPE_DECIMAL128I>()));
561
20.3k
        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
31
    case PrimitiveType::TYPE_BITMAP:
569
31
        assign_concrete<TYPE_BITMAP>(std::move(field.template get<TYPE_BITMAP>()));
570
31
        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.45M
    }
583
2.45M
}
584
585
1.59M
void Field::assign(const Field& field) {
586
1.59M
    switch (field.type) {
587
204k
    case PrimitiveType::TYPE_NULL:
588
204k
        assign_concrete<TYPE_NULL>(field.template get<TYPE_NULL>());
589
204k
        return;
590
65.3k
    case PrimitiveType::TYPE_DATETIMEV2:
591
65.3k
        assign_concrete<TYPE_DATETIMEV2>(field.template get<TYPE_DATETIMEV2>());
592
65.3k
        return;
593
295
    case PrimitiveType::TYPE_TIMESTAMP_NS:
594
295
        assign_concrete<TYPE_TIMESTAMP_NS>(field.template get<TYPE_TIMESTAMP_NS>());
595
295
        return;
596
803
    case PrimitiveType::TYPE_DATETIME:
597
803
        assign_concrete<TYPE_DATETIME>(field.template get<TYPE_DATETIME>());
598
803
        return;
599
680
    case PrimitiveType::TYPE_DATE:
600
680
        assign_concrete<TYPE_DATE>(field.template get<TYPE_DATE>());
601
680
        return;
602
55.6k
    case PrimitiveType::TYPE_DATEV2:
603
55.6k
        assign_concrete<TYPE_DATEV2>(field.template get<TYPE_DATEV2>());
604
55.6k
        return;
605
7.00k
    case PrimitiveType::TYPE_TIMESTAMPTZ:
606
7.00k
        assign_concrete<TYPE_TIMESTAMPTZ>(field.template get<TYPE_TIMESTAMPTZ>());
607
7.00k
        return;
608
17.3k
    case PrimitiveType::TYPE_BOOLEAN:
609
17.3k
        assign_concrete<TYPE_BOOLEAN>(field.template get<TYPE_BOOLEAN>());
610
17.3k
        return;
611
82.2k
    case PrimitiveType::TYPE_TINYINT:
612
82.2k
        assign_concrete<TYPE_TINYINT>(field.template get<TYPE_TINYINT>());
613
82.2k
        return;
614
22.5k
    case PrimitiveType::TYPE_SMALLINT:
615
22.5k
        assign_concrete<TYPE_SMALLINT>(field.template get<TYPE_SMALLINT>());
616
22.5k
        return;
617
193k
    case PrimitiveType::TYPE_INT:
618
193k
        assign_concrete<TYPE_INT>(field.template get<TYPE_INT>());
619
193k
        return;
620
416k
    case PrimitiveType::TYPE_BIGINT:
621
416k
        assign_concrete<TYPE_BIGINT>(field.template get<TYPE_BIGINT>());
622
416k
        return;
623
32.8k
    case PrimitiveType::TYPE_LARGEINT:
624
32.8k
        assign_concrete<TYPE_LARGEINT>(field.template get<TYPE_LARGEINT>());
625
32.8k
        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.05k
    case PrimitiveType::TYPE_IPV6:
630
1.05k
        assign_concrete<TYPE_IPV6>(field.template get<TYPE_IPV6>());
631
1.05k
        return;
632
13.8k
    case PrimitiveType::TYPE_FLOAT:
633
13.8k
        assign_concrete<TYPE_FLOAT>(field.template get<TYPE_FLOAT>());
634
13.8k
        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
101k
    case PrimitiveType::TYPE_STRING:
642
101k
        assign_concrete<TYPE_STRING>(field.template get<TYPE_STRING>());
643
101k
        return;
644
26.4k
    case PrimitiveType::TYPE_CHAR:
645
26.4k
        assign_concrete<TYPE_CHAR>(field.template get<TYPE_CHAR>());
646
26.4k
        return;
647
285k
    case PrimitiveType::TYPE_VARCHAR:
648
285k
        assign_concrete<TYPE_VARCHAR>(field.template get<TYPE_VARCHAR>());
649
285k
        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.86k
    case PrimitiveType::TYPE_DECIMAL32:
663
6.86k
        assign_concrete<TYPE_DECIMAL32>(field.template get<TYPE_DECIMAL32>());
664
6.86k
        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.8k
    case PrimitiveType::TYPE_DECIMAL128I:
672
17.8k
        assign_concrete<TYPE_DECIMAL128I>(field.template get<TYPE_DECIMAL128I>());
673
17.8k
        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.59M
    }
701
1.59M
}
702
703
/// Assuming same types.
704
template <PrimitiveType Type>
705
2.45M
void Field::assign_concrete(typename PrimitiveTypeTraits<Type>::CppType&& x) {
706
2.45M
    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.45M
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
2.45M
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE1EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
206k
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
206k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
206k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
206k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE3EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
82.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
82.4k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
82.4k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
82.4k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE4EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
22.7k
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.7k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
22.7k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
22.7k
}
_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
428k
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
428k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
428k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
428k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE7EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
34.1k
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
34.1k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
34.1k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
34.1k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE11EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
743
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
743
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
743
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
743
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE12EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
1.14k
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.14k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
1.14k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
1.14k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE25EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
60.6k
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.6k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
60.6k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
60.6k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE26EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
66.5k
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.5k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
66.5k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
66.5k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE43EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
299
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
299
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
299
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
299
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE28EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
6.87k
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.87k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
6.87k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
6.87k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE29EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
33.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
33.0k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
33.0k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
33.0k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE20EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
412
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
412
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
412
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
412
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE30EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
20.3k
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.3k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
20.3k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
20.3k
}
_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.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
35.4k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
35.4k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
35.4k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE10EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
301k
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
301k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
301k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
301k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE23EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
149k
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
149k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
149k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
149k
}
_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
118
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
118
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
118
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
118
}
_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.3k
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.3k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
17.3k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
17.3k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE8EEEvONS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
705
14.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
14.2k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
14.2k
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
14.2k
}
_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
31
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
31
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
711
31
    *ptr = std::forward<typename PrimitiveTypeTraits<Type>::CppType>(x);
712
31
}
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.59M
void Field::assign_concrete(const typename PrimitiveTypeTraits<Type>::CppType& x) {
716
1.59M
    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.59M
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
1.59M
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE1EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
204k
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
204k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
204k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
204k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE3EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
82.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
82.2k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
82.2k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
82.2k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE4EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
22.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
22.5k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
22.5k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
22.5k
}
_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
416k
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
416k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
416k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
416k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE7EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
32.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
32.8k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
32.8k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
32.8k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE11EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
680
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
680
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
680
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
680
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE12EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
803
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
803
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
803
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
803
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE25EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
55.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
55.6k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
55.6k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
55.6k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE26EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
65.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
65.3k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
65.3k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
65.3k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE43EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
295
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
295
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
295
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
295
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE42EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
7.00k
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.00k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
7.00k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
7.00k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE28EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
6.86k
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.86k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
6.86k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
6.86k
}
_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.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
17.8k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
17.8k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
17.8k
}
_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.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
26.4k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
26.4k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
26.4k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE10EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
285k
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
285k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
285k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
285k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE23EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
101k
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
101k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
101k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
101k
}
_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.05k
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.05k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
1.05k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
1.05k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE2EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
17.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
17.3k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
17.3k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
17.3k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE8EEEvRKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeE
Line
Count
Source
715
13.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
13.8k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<Type>::CppType*>(&storage);
721
13.8k
    *ptr = std::forward<const typename PrimitiveTypeTraits<Type>::CppType>(x);
722
13.8k
}
_ZN5doris5Field15assign_concreteILNS_13PrimitiveTypeE9EEEvRKNS_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_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
133M
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
133M
    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
133M
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
133M
    return *ptr;
736
133M
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE1EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
292k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
292k
    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
292k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
292k
    return *ptr;
736
292k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE3EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
4.98M
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
4.98M
    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.98M
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
4.98M
    return *ptr;
736
4.98M
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE4EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
171k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
171k
    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
171k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
171k
    return *ptr;
736
171k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE5EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
94.1M
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
94.1M
    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.1M
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
94.1M
    return *ptr;
736
94.1M
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE6EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
9.78M
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
9.78M
    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
9.78M
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
9.78M
    return *ptr;
736
9.78M
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE7EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
200k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
200k
    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
200k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
200k
    return *ptr;
736
200k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE11EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
17.1k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
17.1k
    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
17.1k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
17.1k
    return *ptr;
736
17.1k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE12EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
25.2k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
25.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
25.2k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
25.2k
    return *ptr;
736
25.2k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE25EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
583k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
583k
    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
583k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
583k
    return *ptr;
736
583k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE26EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
2.29M
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
2.29M
    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.29M
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
2.29M
    return *ptr;
736
2.29M
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE43EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
7.32k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
7.32k
    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
7.32k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
7.32k
    return *ptr;
736
7.32k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE42EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
50.8k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
50.8k
    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
50.8k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
50.8k
    return *ptr;
736
50.8k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE28EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
75.4k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
75.4k
    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
75.4k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
75.4k
    return *ptr;
736
75.4k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE29EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
165k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
165k
    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
165k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
165k
    return *ptr;
736
165k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE20EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
10.4k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
10.4k
    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.4k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
10.4k
    return *ptr;
736
10.4k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE30EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
136k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
136k
    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
136k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
136k
    return *ptr;
736
136k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE35EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
47.2k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
47.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
47.2k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
47.2k
    return *ptr;
736
47.2k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE15EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
139k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
139k
    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
139k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
139k
    return *ptr;
736
139k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE10EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
1.72M
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
1.72M
    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.72M
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
1.72M
    return *ptr;
736
1.72M
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE23EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
17.9M
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
17.9M
    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
17.9M
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
17.9M
    return *ptr;
736
17.9M
}
_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.70k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
6.70k
    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.70k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
6.70k
    return *ptr;
736
6.70k
}
_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
265k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
265k
    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
265k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
265k
    return *ptr;
736
265k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE36EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
39.1k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
39.1k
    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.1k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
39.1k
    return *ptr;
736
39.1k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE37EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
27.8k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
27.8k
    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.8k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
27.8k
    return *ptr;
736
27.8k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE2EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
101k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
101k
    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
101k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
101k
    return *ptr;
736
101k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE8EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
113k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
113k
    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
113k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
113k
    return *ptr;
736
113k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE9EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
125k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
125k
    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
125k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
125k
    return *ptr;
736
125k
}
_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.1k
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
28.1k
    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.1k
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
28.1k
    return *ptr;
736
28.1k
}
_ZN5doris5Field3getILNS_13PrimitiveTypeE22EEERNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
729
196
typename PrimitiveTypeTraits<T>::CppType& Field::get() {
730
196
    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
196
    auto* MAY_ALIAS ptr = reinterpret_cast<typename PrimitiveTypeTraits<T>::CppType*>(&storage);
735
196
    return *ptr;
736
196
}
_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
366M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
366M
    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
366M
    const auto* MAY_ALIAS ptr =
745
366M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
366M
    return *ptr;
747
366M
}
_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
11.6M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
11.6M
    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.6M
    const auto* MAY_ALIAS ptr =
745
11.6M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
11.6M
    return *ptr;
747
11.6M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE4EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
5.12M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
5.12M
    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.12M
    const auto* MAY_ALIAS ptr =
745
5.12M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
5.12M
    return *ptr;
747
5.12M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE5EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
8.69M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
8.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
8.69M
    const auto* MAY_ALIAS ptr =
745
8.69M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
8.69M
    return *ptr;
747
8.69M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE6EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
22.2M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
22.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
22.2M
    const auto* MAY_ALIAS ptr =
745
22.2M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
22.2M
    return *ptr;
747
22.2M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE7EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
4.37M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
4.37M
    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.37M
    const auto* MAY_ALIAS ptr =
745
4.37M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
4.37M
    return *ptr;
747
4.37M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE11EEERKNS_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_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.98M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
7.98M
    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.98M
    const auto* MAY_ALIAS ptr =
745
7.98M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
7.98M
    return *ptr;
747
7.98M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE26EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
5.39M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
5.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
5.39M
    const auto* MAY_ALIAS ptr =
745
5.39M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
5.39M
    return *ptr;
747
5.39M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE43EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
9.45k
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
9.45k
    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.45k
    const auto* MAY_ALIAS ptr =
745
9.45k
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
9.45k
    return *ptr;
747
9.45k
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE42EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
105k
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
105k
    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
105k
    const auto* MAY_ALIAS ptr =
745
105k
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
105k
    return *ptr;
747
105k
}
_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
17.6k
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
17.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
17.6k
    const auto* MAY_ALIAS ptr =
745
17.6k
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
17.6k
    return *ptr;
747
17.6k
}
_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.68M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
4.68M
    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.68M
    const auto* MAY_ALIAS ptr =
745
4.68M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
4.68M
    return *ptr;
747
4.68M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE15EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
40.5k
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
40.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
40.5k
    const auto* MAY_ALIAS ptr =
745
40.5k
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
40.5k
    return *ptr;
747
40.5k
}
_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
26.1M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
26.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
26.1M
    const auto* MAY_ALIAS ptr =
745
26.1M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
26.1M
    return *ptr;
747
26.1M
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE41EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
75
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
75
    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
75
    const auto* MAY_ALIAS ptr =
745
75
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
75
    return *ptr;
747
75
}
_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.66k
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
6.66k
    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.66k
    const auto* MAY_ALIAS ptr =
745
6.66k
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
6.66k
    return *ptr;
747
6.66k
}
_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.7k
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
32.7k
    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.7k
    const auto* MAY_ALIAS ptr =
745
32.7k
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
32.7k
    return *ptr;
747
32.7k
}
_ZNK5doris5Field3getILNS_13PrimitiveTypeE37EEERKNS_19PrimitiveTypeTraitsIXT_EE7CppTypeEv
Line
Count
Source
739
23.0k
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
23.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
23.0k
    const auto* MAY_ALIAS ptr =
745
23.0k
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
23.0k
    return *ptr;
747
23.0k
}
_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
4.88M
const typename PrimitiveTypeTraits<T>::CppType& Field::get() const {
740
4.88M
    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.88M
    const auto* MAY_ALIAS ptr =
745
4.88M
            reinterpret_cast<const typename PrimitiveTypeTraits<T>::CppType*>(&storage);
746
4.88M
    return *ptr;
747
4.88M
}
_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
156M
void Field::destroy() {
751
156M
    if constexpr (T == TYPE_VARBINARY) {
752
129
        reinterpret_cast<OwnedBinaryField*>(&storage)->~OwnedBinaryField();
753
129
        return;
754
129
    }
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
156M
    auto* MAY_ALIAS ptr = reinterpret_cast<TargetType*>(&storage);
759
156M
    ptr->~TargetType();
760
156M
}
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.1M
void Field::destroy() {
751
    if constexpr (T == TYPE_VARBINARY) {
752
        reinterpret_cast<OwnedBinaryField*>(&storage)->~OwnedBinaryField();
753
        return;
754
    }
755
10.1M
    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.1M
    auto* MAY_ALIAS ptr = reinterpret_cast<TargetType*>(&storage);
759
10.1M
    ptr->~TargetType();
760
10.1M
}
_ZN5doris5Field7destroyILNS_13PrimitiveTypeE23EEEvv
Line
Count
Source
750
36.8M
void Field::destroy() {
751
    if constexpr (T == TYPE_VARBINARY) {
752
        reinterpret_cast<OwnedBinaryField*>(&storage)->~OwnedBinaryField();
753
        return;
754
    }
755
36.8M
    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
36.8M
    auto* MAY_ALIAS ptr = reinterpret_cast<TargetType*>(&storage);
759
36.8M
    ptr->~TargetType();
760
36.8M
}
_ZN5doris5Field7destroyILNS_13PrimitiveTypeE41EEEvv
Line
Count
Source
750
129
void Field::destroy() {
751
129
    if constexpr (T == TYPE_VARBINARY) {
752
129
        reinterpret_cast<OwnedBinaryField*>(&storage)->~OwnedBinaryField();
753
129
        return;
754
129
    }
755
0
    using TargetType = typename PrimitiveTypeTraits<T>::CppType;
756
129
    DCHECK(T == type || ((is_string_type(type) && is_string_type(T))))
757
129
            << "Type mismatch: requested " << type_to_string(T) << ", actual " << get_type_name();
758
129
    auto* MAY_ALIAS ptr = reinterpret_cast<TargetType*>(&storage);
759
129
    ptr->~TargetType();
760
129
}
_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.3k
void Field::destroy() {
751
    if constexpr (T == TYPE_VARBINARY) {
752
        reinterpret_cast<OwnedBinaryField*>(&storage)->~OwnedBinaryField();
753
        return;
754
    }
755
13.3k
    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.3k
    auto* MAY_ALIAS ptr = reinterpret_cast<TargetType*>(&storage);
759
13.3k
    ptr->~TargetType();
760
13.3k
}
_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.5M
std::strong_ordering Field::operator<=>(const Field& rhs) const {
763
11.5M
    if (type == PrimitiveType::TYPE_NULL || rhs == PrimitiveType::TYPE_NULL) {
764
7.74M
        return type <=> rhs.type;
765
7.74M
    }
766
3.79M
    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
17.1k
        if (is_string_type(type) && is_string_type(rhs.type)) {
772
17.1k
            return get<TYPE_STRING>() <=> rhs.get<TYPE_STRING>();
773
17.1k
        }
774
0
        throw Exception(Status::FatalError("lhs type not equal with rhs, lhs={}, rhs={}",
775
0
                                           get_type_name(), rhs.get_type_name()));
776
17.1k
    }
777
778
3.78M
    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
32.6k
    case PrimitiveType::TYPE_DATETIMEV2:
791
32.6k
        return get<PrimitiveType::TYPE_DATETIMEV2>().to_date_int_val() <=>
792
32.6k
               rhs.get<PrimitiveType::TYPE_DATETIMEV2>().to_date_int_val();
793
323
    case PrimitiveType::TYPE_TIMESTAMP_NS:
794
323
        return get<PrimitiveType::TYPE_TIMESTAMP_NS>() <=>
795
323
               rhs.get<PrimitiveType::TYPE_TIMESTAMP_NS>();
796
535k
    case PrimitiveType::TYPE_DATEV2:
797
535k
        return get<PrimitiveType::TYPE_DATEV2>().to_date_int_val() <=>
798
535k
               rhs.get<PrimitiveType::TYPE_DATEV2>().to_date_int_val();
799
7.70k
    case PrimitiveType::TYPE_TIMESTAMPTZ:
800
7.70k
        return get<PrimitiveType::TYPE_TIMESTAMPTZ>().to_date_int_val() <=>
801
7.70k
               rhs.get<PrimitiveType::TYPE_TIMESTAMPTZ>().to_date_int_val();
802
3.77k
    case PrimitiveType::TYPE_DATE:
803
3.77k
        return get<PrimitiveType::TYPE_DATE>() <=> rhs.get<PrimitiveType::TYPE_DATE>();
804
527
    case PrimitiveType::TYPE_DATETIME:
805
527
        return get<PrimitiveType::TYPE_DATETIME>() <=> rhs.get<PrimitiveType::TYPE_DATETIME>();
806
85.0k
    case PrimitiveType::TYPE_BIGINT:
807
85.0k
        return get<PrimitiveType::TYPE_BIGINT>() <=> rhs.get<PrimitiveType::TYPE_BIGINT>();
808
15.8k
    case PrimitiveType::TYPE_BOOLEAN:
809
15.8k
        return get<PrimitiveType::TYPE_BOOLEAN>() <=> rhs.get<PrimitiveType::TYPE_BOOLEAN>();
810
518k
    case PrimitiveType::TYPE_TINYINT:
811
518k
        return get<TYPE_TINYINT>() <=> rhs.get<TYPE_TINYINT>();
812
9.59k
    case PrimitiveType::TYPE_SMALLINT:
813
9.59k
        return get<TYPE_SMALLINT>() <=> rhs.get<TYPE_SMALLINT>();
814
896k
    case PrimitiveType::TYPE_INT:
815
896k
        return get<TYPE_INT>() <=> rhs.get<TYPE_INT>();
816
14.2k
    case PrimitiveType::TYPE_LARGEINT:
817
14.2k
        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
52
    case PrimitiveType::TYPE_FLOAT:
823
52
        switch (Compare::compare(get<TYPE_FLOAT>(), rhs.get<TYPE_FLOAT>())) {
824
2
        case -1:
825
2
            return std::strong_ordering::less;
826
24
        case 0:
827
24
            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
52
        }
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
69
    case PrimitiveType::TYPE_DOUBLE:
838
69
        switch (Compare::compare(get<TYPE_DOUBLE>(), rhs.get<TYPE_DOUBLE>())) {
839
10
        case -1:
840
10
            return std::strong_ordering::less;
841
21
        case 0:
842
21
            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
69
        }
848
27.3k
    case PrimitiveType::TYPE_STRING:
849
27.3k
        return get<TYPE_STRING>() <=> rhs.get<TYPE_STRING>();
850
405
    case PrimitiveType::TYPE_CHAR:
851
405
        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
3
    case PrimitiveType::TYPE_VARBINARY:
855
3
        return get<TYPE_VARBINARY>() <=> rhs.get<TYPE_VARBINARY>();
856
806
    case PrimitiveType::TYPE_DECIMAL32:
857
806
        return get<TYPE_DECIMAL32>() <=> rhs.get<TYPE_DECIMAL32>();
858
2.62k
    case PrimitiveType::TYPE_DECIMAL64:
859
2.62k
        return get<TYPE_DECIMAL64>() <=> rhs.get<TYPE_DECIMAL64>();
860
2.73k
    case PrimitiveType::TYPE_DECIMALV2:
861
2.73k
        return get<TYPE_DECIMALV2>() <=> rhs.get<TYPE_DECIMALV2>();
862
3.29k
    case PrimitiveType::TYPE_DECIMAL128I:
863
3.29k
        return get<TYPE_DECIMAL128I>() <=> rhs.get<TYPE_DECIMAL128I>();
864
2.07k
    case PrimitiveType::TYPE_DECIMAL256:
865
2.07k
        return get<TYPE_DECIMAL256>() <=> rhs.get<TYPE_DECIMAL256>();
866
0
    default:
867
0
        throw Exception(Status::FatalError("Unsupported type: {}", get_type_name()));
868
3.78M
    }
869
3.78M
}
870
871
#define MATCH_PRIMITIVE_TYPE(primitive_type)                                   \
872
10.1k
    if (type == primitive_type) {                                              \
873
1.57k
        const auto& v = get<primitive_type>();                                 \
874
1.57k
        return std::string_view(reinterpret_cast<const char*>(&v), sizeof(v)); \
875
1.57k
    }
876
877
3.08k
std::string_view Field::as_string_view() const {
878
3.08k
    if (type == PrimitiveType::TYPE_STRING || type == PrimitiveType::TYPE_VARCHAR ||
879
3.08k
        type == PrimitiveType::TYPE_CHAR) {
880
1.50k
        const auto& s = get<TYPE_STRING>();
881
1.50k
        return {s.data(), s.size()};
882
1.50k
    }
883
1.58k
    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.57k
    MATCH_PRIMITIVE_TYPE(TYPE_BOOLEAN);
890
1.57k
    MATCH_PRIMITIVE_TYPE(TYPE_TINYINT);
891
1.41k
    MATCH_PRIMITIVE_TYPE(TYPE_SMALLINT);
892
1.41k
    MATCH_PRIMITIVE_TYPE(TYPE_INT);
893
449
    MATCH_PRIMITIVE_TYPE(TYPE_BIGINT);
894
386
    MATCH_PRIMITIVE_TYPE(TYPE_LARGEINT);
895
386
    MATCH_PRIMITIVE_TYPE(TYPE_FLOAT)
896
386
    MATCH_PRIMITIVE_TYPE(TYPE_DOUBLE);
897
    // MATCH_PRIMITIVE_TYPE(TYPE_VARCHAR);
898
386
    MATCH_PRIMITIVE_TYPE(TYPE_DATE);
899
386
    MATCH_PRIMITIVE_TYPE(TYPE_DATETIME);
900
386
    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
366
    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
366
    MATCH_PRIMITIVE_TYPE(TYPE_DATEV2);
913
338
    MATCH_PRIMITIVE_TYPE(TYPE_DATETIMEV2);
914
299
    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
16.2M
std::string Field::to_debug_string(int scale) const {
938
16.2M
    if (is_null()) {
939
0
        return "NULL";
940
0
    }
941
16.2M
    switch (type) {
942
36.2k
    case PrimitiveType::TYPE_BOOLEAN:
943
36.2k
        return get<TYPE_BOOLEAN>() ? "true" : "false";
944
1.66M
    case PrimitiveType::TYPE_TINYINT:
945
1.66M
        return CastToString::from_number(get<TYPE_TINYINT>());
946
29.7k
    case PrimitiveType::TYPE_SMALLINT:
947
29.7k
        return CastToString::from_number(get<TYPE_SMALLINT>());
948
692k
    case PrimitiveType::TYPE_INT:
949
692k
        return CastToString::from_number(get<TYPE_INT>());
950
206k
    case PrimitiveType::TYPE_BIGINT:
951
206k
        return CastToString::from_number(get<TYPE_BIGINT>());
952
31.8k
    case PrimitiveType::TYPE_LARGEINT:
953
31.8k
        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.47k
    case PrimitiveType::TYPE_CHAR:
960
12.6M
    case PrimitiveType::TYPE_VARCHAR:
961
12.6M
        return get<TYPE_STRING>();
962
0
    case PrimitiveType::TYPE_VARBINARY:
963
0
        return get<TYPE_VARBINARY>();
964
2.92k
    case PrimitiveType::TYPE_DATE:
965
2.92k
        return CastToString::from_date_or_datetime(get<TYPE_DATE>());
966
53
    case PrimitiveType::TYPE_DATETIME:
967
53
        return CastToString::from_date_or_datetime(get<TYPE_DATETIME>());
968
916k
    case PrimitiveType::TYPE_DATEV2:
969
916k
        return CastToString::from_datev2(get<TYPE_DATEV2>());
970
12.1k
    case PrimitiveType::TYPE_DATETIMEV2:
971
12.1k
        return CastToString::from_datetimev2(get<TYPE_DATETIMEV2>(), scale);
972
356
    case PrimitiveType::TYPE_TIMESTAMP_NS:
973
356
        return get<TYPE_TIMESTAMP_NS>().to_string();
974
23.7k
    case PrimitiveType::TYPE_TIMESTAMPTZ:
975
23.7k
        return CastToString::from_timestamptz(get<TYPE_TIMESTAMPTZ>(), scale);
976
58
    case PrimitiveType::TYPE_DECIMALV2:
977
58
        return get<TYPE_DECIMALV2>().to_string();
978
2.39k
    case PrimitiveType::TYPE_DECIMAL32:
979
2.39k
        return CastToString::from_decimal(get<TYPE_DECIMAL32>(), scale);
980
2.49k
    case PrimitiveType::TYPE_DECIMAL64:
981
2.49k
        return CastToString::from_decimal(get<TYPE_DECIMAL64>(), scale);
982
5.02k
    case PrimitiveType::TYPE_DECIMAL128I:
983
5.02k
        return CastToString::from_decimal(get<TYPE_DECIMAL128I>(), scale);
984
1.38k
    case PrimitiveType::TYPE_DECIMAL256:
985
1.38k
        return CastToString::from_decimal(get<TYPE_DECIMAL256>(), scale);
986
0
    case PrimitiveType::TYPE_IPV4:
987
0
        return CastToString::from_ip(get<TYPE_IPV4>());
988
23
    case PrimitiveType::TYPE_IPV6:
989
23
        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
16.2M
    }
995
16.2M
}
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