Coverage Report

Created: 2026-08-01 21:36

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/exprs/function/cast/function_cast.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
18
#include <utility>
19
20
#include "core/data_type/data_type_agg_state.h"
21
#include "core/data_type/data_type_decimal.h"
22
#include "core/data_type/data_type_number.h" // IWYU pragma: keep
23
#include "core/data_type/data_type_quantilestate.h"
24
#include "core/data_type/data_type_variant.h"
25
#include "core/data_type/data_type_variant_v2.h"
26
#include "core/data_type/primitive_type.h"
27
#include "exprs/function/cast/cast_to_array.h"
28
#include "exprs/function/cast/cast_to_jsonb.h"
29
#include "exprs/function/cast/cast_to_map.h"
30
#include "exprs/function/cast/cast_to_struct.h"
31
#include "exprs/function/cast/cast_to_variant.h"
32
#include "exprs/function/cast/cast_wrapper_decls.h"
33
#include "exprs/function/cast/variant_v2/cast_variant_v2.h"
34
#include "exprs/function/simple_function_factory.h"
35
36
namespace doris {
37
38
namespace CastWrapper {
39
40
WrapperType create_hll_wrapper(FunctionContext* context, const DataTypePtr& from_type_untyped,
41
6
                               const DataTypeHLL& to_type) {
42
    /// Conversion from String through parsing.
43
6
    if (check_and_get_data_type<DataTypeString>(from_type_untyped.get())) {
44
6
        return cast_from_string_to_generic;
45
6
    }
46
47
0
    return CastWrapper::create_unsupport_wrapper("Cast to HLL only support from String type");
48
6
}
49
50
WrapperType create_bitmap_wrapper(FunctionContext* context, const DataTypePtr& from_type_untyped,
51
4
                                  const DataTypeBitMap& to_type) {
52
    /// Conversion from String through parsing.
53
4
    if (check_and_get_data_type<DataTypeString>(from_type_untyped.get())) {
54
4
        return cast_from_string_to_generic;
55
4
    }
56
57
0
    return CastWrapper::create_unsupport_wrapper("Cast to BitMap only support from String type");
58
4
}
59
60
WrapperType create_quantile_state_wrapper(FunctionContext* context,
61
                                          const DataTypePtr& from_type_untyped,
62
2
                                          const DataTypeQuantileState& to_type) {
63
    /// Conversion from String through parsing.
64
2
    if (check_and_get_data_type<DataTypeString>(from_type_untyped.get())) {
65
2
        return cast_from_string_to_generic;
66
2
    }
67
68
0
    return CastWrapper::create_unsupport_wrapper(
69
0
            "Cast to QuantileState only support from String type");
70
2
}
71
72
314
WrapperType create_varbinary_wrapper(const DataTypePtr& from_type_untyped) {
73
    /// Conversion from String through parsing.
74
314
    if (check_and_get_data_type<DataTypeString>(from_type_untyped.get())) {
75
314
        return cast_from_string_to_generic;
76
314
    }
77
78
0
    return CastWrapper::create_unsupport_wrapper("Cast to Varbinary only support from String type");
79
314
}
80
81
WrapperType prepare_unpack_dictionaries(FunctionContext* context, const DataTypePtr& from_type,
82
195k
                                        const DataTypePtr& to_type) {
83
195k
    const auto& from_nested = from_type;
84
195k
    const auto& to_nested = to_type;
85
86
195k
    if (from_type->is_null_literal()) {
87
942
        if (!to_nested->is_nullable()) {
88
0
            return CastWrapper::create_unsupport_wrapper(
89
0
                    "Cannot convert NULL to a non-nullable type");
90
0
        }
91
92
942
        return [](FunctionContext* context, Block& block, const ColumnNumbers&, uint32_t result,
93
942
                  size_t input_rows_count, const NullMap::value_type* null_map = nullptr) {
94
            /// TODO: remove this in the future.
95
942
            auto& res = block.get_by_position(result);
96
942
            res.column = res.type->create_column_const_with_default_value(input_rows_count)
97
942
                                 ->convert_to_full_column_if_const();
98
942
            return Status::OK();
99
942
        };
100
942
    }
101
102
194k
    auto wrapper = prepare_remove_nullable(context, from_nested, to_nested);
103
104
194k
    return wrapper;
105
195k
}
106
107
bool need_replace_null_data_to_default(FunctionContext* context, const DataTypePtr& from_type,
108
173k
                                       const DataTypePtr& to_type) {
109
173k
    if (from_type->equals(*to_type)) {
110
22.2k
        return false;
111
22.2k
    }
112
113
150k
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
97.7k
        using Types = std::decay_t<decltype(types)>;
115
97.7k
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
7.36k
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
7.36k
            return false;
121
7.36k
        }
122
0
        return call_on_index_and_data_type<
123
97.7k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
90.3k
            using Types2 = std::decay_t<decltype(types2)>;
125
90.3k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
24.2k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
24.2k
                return false;
130
24.2k
            }
131
41.2k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
41.2k
                using FromFieldType = typename FromDataType::FieldType;
133
41.2k
                using ToFieldType = typename ToDataType::FieldType;
134
41.2k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
41.2k
                UInt32 from_scale = 0;
136
137
41.2k
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
31.3k
                    const auto* from_decimal_type =
139
31.3k
                            check_and_get_data_type<FromDataType>(from_type.get());
140
31.3k
                    from_precision =
141
31.3k
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
31.3k
                    from_scale = from_decimal_type->get_scale();
143
31.3k
                }
144
145
41.2k
                UInt32 to_max_digits = 0;
146
41.2k
                UInt32 to_precision = 0;
147
41.2k
                UInt32 to_scale = 0;
148
149
41.2k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
40.7k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
40.7k
                    const auto* to_decimal_type =
153
40.7k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
40.7k
                    to_precision = to_decimal_type->get_precision();
155
40.7k
                    ToDataType::check_type_precision(to_precision);
156
157
40.7k
                    to_scale = to_decimal_type->get_scale();
158
40.7k
                    ToDataType::check_type_scale(to_scale);
159
40.7k
                }
160
41.2k
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
585
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
585
                    to_precision = to_max_digits;
163
585
                }
164
165
41.2k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
41.2k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
41.2k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
41.2k
                if (to_scale > from_scale) {
170
3.43k
                    multiply_may_overflow &=
171
3.43k
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
3.43k
                }
173
41.2k
                return narrow_integral || multiply_may_overflow;
174
41.2k
            }
175
0
            return false;
176
90.3k
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_ISE_SE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_3EEESE_EEEEbSI_
Line
Count
Source
123
4
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
4
            using Types2 = std::decay_t<decltype(types2)>;
125
4
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
4
            return false;
176
4
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_4EEESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_5EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_6EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_7EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_8EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_9EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_28EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
2
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
2
                using FromFieldType = typename FromDataType::FieldType;
133
2
                using ToFieldType = typename ToDataType::FieldType;
134
2
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
2
                UInt32 from_scale = 0;
136
137
2
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
2
                    const auto* from_decimal_type =
139
2
                            check_and_get_data_type<FromDataType>(from_type.get());
140
2
                    from_precision =
141
2
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
2
                    from_scale = from_decimal_type->get_scale();
143
2
                }
144
145
2
                UInt32 to_max_digits = 0;
146
2
                UInt32 to_precision = 0;
147
2
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
2
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
2
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
2
                    to_precision = to_max_digits;
163
2
                }
164
165
2
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
2
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
2
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
2
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
2
                return narrow_integral || multiply_may_overflow;
174
2
            }
175
0
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_29EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
2
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
2
                using FromFieldType = typename FromDataType::FieldType;
133
2
                using ToFieldType = typename ToDataType::FieldType;
134
2
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
2
                UInt32 from_scale = 0;
136
137
2
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
2
                    const auto* from_decimal_type =
139
2
                            check_and_get_data_type<FromDataType>(from_type.get());
140
2
                    from_precision =
141
2
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
2
                    from_scale = from_decimal_type->get_scale();
143
2
                }
144
145
2
                UInt32 to_max_digits = 0;
146
2
                UInt32 to_precision = 0;
147
2
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
2
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
2
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
2
                    to_precision = to_max_digits;
163
2
                }
164
165
2
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
2
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
2
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
2
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
2
                return narrow_integral || multiply_may_overflow;
174
2
            }
175
0
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_20EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
2
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
2
                using FromFieldType = typename FromDataType::FieldType;
133
2
                using ToFieldType = typename ToDataType::FieldType;
134
2
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
2
                UInt32 from_scale = 0;
136
137
2
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
2
                    const auto* from_decimal_type =
139
2
                            check_and_get_data_type<FromDataType>(from_type.get());
140
2
                    from_precision =
141
2
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
2
                    from_scale = from_decimal_type->get_scale();
143
2
                }
144
145
2
                UInt32 to_max_digits = 0;
146
2
                UInt32 to_precision = 0;
147
2
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
2
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
2
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
2
                    to_precision = to_max_digits;
163
2
                }
164
165
2
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
2
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
2
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
2
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
2
                return narrow_integral || multiply_may_overflow;
174
2
            }
175
0
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_30EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
2
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
2
                using FromFieldType = typename FromDataType::FieldType;
133
2
                using ToFieldType = typename ToDataType::FieldType;
134
2
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
2
                UInt32 from_scale = 0;
136
137
2
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
2
                    const auto* from_decimal_type =
139
2
                            check_and_get_data_type<FromDataType>(from_type.get());
140
2
                    from_precision =
141
2
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
2
                    from_scale = from_decimal_type->get_scale();
143
2
                }
144
145
2
                UInt32 to_max_digits = 0;
146
2
                UInt32 to_precision = 0;
147
2
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
2
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
2
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
2
                    to_precision = to_max_digits;
163
2
                }
164
165
2
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
2
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
2
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
2
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
2
                return narrow_integral || multiply_may_overflow;
174
2
            }
175
0
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_35EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
2
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
2
                using FromFieldType = typename FromDataType::FieldType;
133
2
                using ToFieldType = typename ToDataType::FieldType;
134
2
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
2
                UInt32 from_scale = 0;
136
137
2
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
2
                    const auto* from_decimal_type =
139
2
                            check_and_get_data_type<FromDataType>(from_type.get());
140
2
                    from_precision =
141
2
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
2
                    from_scale = from_decimal_type->get_scale();
143
2
                }
144
145
2
                UInt32 to_max_digits = 0;
146
2
                UInt32 to_precision = 0;
147
2
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
2
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
2
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
2
                    to_precision = to_max_digits;
163
2
                }
164
165
2
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
2
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
2
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
2
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
2
                return narrow_integral || multiply_may_overflow;
174
2
            }
175
0
            return false;
176
2
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeDateESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeDateV2ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_18DataTypeDateTimeV2ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_22DataTypeDateTimeV2NanoESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_16DataTypeDateTimeESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeTimeV2ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_19DataTypeTimeStampTzESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv4ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv6ESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeStringESE_EEEEbSI_
Line
Count
Source
123
26
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
26
            using Types2 = std::decay_t<decltype(types2)>;
125
26
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
26
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
26
                return false;
130
26
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
26
            return false;
176
26
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_2EEESE_EEEEbSI_
Line
Count
Source
123
586
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
586
            using Types2 = std::decay_t<decltype(types2)>;
125
586
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
586
            return false;
176
586
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_ISE_SE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_4EEESE_EEEEbSI_
Line
Count
Source
123
7
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7
            using Types2 = std::decay_t<decltype(types2)>;
125
7
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
7
            return false;
176
7
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_5EEESE_EEEEbSI_
Line
Count
Source
123
23
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
23
            using Types2 = std::decay_t<decltype(types2)>;
125
23
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
23
            return false;
176
23
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_6EEESE_EEEEbSI_
Line
Count
Source
123
7
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7
            using Types2 = std::decay_t<decltype(types2)>;
125
7
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
7
            return false;
176
7
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_7EEESE_EEEEbSI_
Line
Count
Source
123
7
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7
            using Types2 = std::decay_t<decltype(types2)>;
125
7
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
7
            return false;
176
7
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_8EEESE_EEEEbSI_
Line
Count
Source
123
23
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
23
            using Types2 = std::decay_t<decltype(types2)>;
125
23
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
23
            return false;
176
23
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_9EEESE_EEEEbSI_
Line
Count
Source
123
27
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
27
            using Types2 = std::decay_t<decltype(types2)>;
125
27
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
27
            return false;
176
27
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_28EEESE_EEEEbSI_
Line
Count
Source
123
14
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
14
            using Types2 = std::decay_t<decltype(types2)>;
125
14
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
14
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
14
                using FromFieldType = typename FromDataType::FieldType;
133
14
                using ToFieldType = typename ToDataType::FieldType;
134
14
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
14
                UInt32 from_scale = 0;
136
137
14
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
14
                    const auto* from_decimal_type =
139
14
                            check_and_get_data_type<FromDataType>(from_type.get());
140
14
                    from_precision =
141
14
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
14
                    from_scale = from_decimal_type->get_scale();
143
14
                }
144
145
14
                UInt32 to_max_digits = 0;
146
14
                UInt32 to_precision = 0;
147
14
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
14
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
14
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
14
                    to_precision = to_max_digits;
163
14
                }
164
165
14
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
14
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
14
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
14
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
14
                return narrow_integral || multiply_may_overflow;
174
14
            }
175
0
            return false;
176
14
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_29EEESE_EEEEbSI_
Line
Count
Source
123
18
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
18
            using Types2 = std::decay_t<decltype(types2)>;
125
18
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
18
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
18
                using FromFieldType = typename FromDataType::FieldType;
133
18
                using ToFieldType = typename ToDataType::FieldType;
134
18
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
18
                UInt32 from_scale = 0;
136
137
18
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
18
                    const auto* from_decimal_type =
139
18
                            check_and_get_data_type<FromDataType>(from_type.get());
140
18
                    from_precision =
141
18
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
18
                    from_scale = from_decimal_type->get_scale();
143
18
                }
144
145
18
                UInt32 to_max_digits = 0;
146
18
                UInt32 to_precision = 0;
147
18
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
18
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
18
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
18
                    to_precision = to_max_digits;
163
18
                }
164
165
18
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
18
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
18
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
18
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
18
                return narrow_integral || multiply_may_overflow;
174
18
            }
175
0
            return false;
176
18
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_20EEESE_EEEEbSI_
Line
Count
Source
123
8
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
8
            using Types2 = std::decay_t<decltype(types2)>;
125
8
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
8
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
8
                using FromFieldType = typename FromDataType::FieldType;
133
8
                using ToFieldType = typename ToDataType::FieldType;
134
8
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
8
                UInt32 from_scale = 0;
136
137
8
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
8
                    const auto* from_decimal_type =
139
8
                            check_and_get_data_type<FromDataType>(from_type.get());
140
8
                    from_precision =
141
8
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
8
                    from_scale = from_decimal_type->get_scale();
143
8
                }
144
145
8
                UInt32 to_max_digits = 0;
146
8
                UInt32 to_precision = 0;
147
8
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
8
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
8
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
8
                    to_precision = to_max_digits;
163
8
                }
164
165
8
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
8
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
8
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
8
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
8
                return narrow_integral || multiply_may_overflow;
174
8
            }
175
0
            return false;
176
8
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_30EEESE_EEEEbSI_
Line
Count
Source
123
18
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
18
            using Types2 = std::decay_t<decltype(types2)>;
125
18
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
18
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
18
                using FromFieldType = typename FromDataType::FieldType;
133
18
                using ToFieldType = typename ToDataType::FieldType;
134
18
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
18
                UInt32 from_scale = 0;
136
137
18
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
18
                    const auto* from_decimal_type =
139
18
                            check_and_get_data_type<FromDataType>(from_type.get());
140
18
                    from_precision =
141
18
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
18
                    from_scale = from_decimal_type->get_scale();
143
18
                }
144
145
18
                UInt32 to_max_digits = 0;
146
18
                UInt32 to_precision = 0;
147
18
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
18
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
18
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
18
                    to_precision = to_max_digits;
163
18
                }
164
165
18
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
18
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
18
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
18
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
18
                return narrow_integral || multiply_may_overflow;
174
18
            }
175
0
            return false;
176
18
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_35EEESE_EEEEbSI_
Line
Count
Source
123
18
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
18
            using Types2 = std::decay_t<decltype(types2)>;
125
18
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
18
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
18
                using FromFieldType = typename FromDataType::FieldType;
133
18
                using ToFieldType = typename ToDataType::FieldType;
134
18
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
18
                UInt32 from_scale = 0;
136
137
18
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
18
                    const auto* from_decimal_type =
139
18
                            check_and_get_data_type<FromDataType>(from_type.get());
140
18
                    from_precision =
141
18
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
18
                    from_scale = from_decimal_type->get_scale();
143
18
                }
144
145
18
                UInt32 to_max_digits = 0;
146
18
                UInt32 to_precision = 0;
147
18
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
18
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
18
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
18
                    to_precision = to_max_digits;
163
18
                }
164
165
18
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
18
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
18
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
18
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
18
                return narrow_integral || multiply_may_overflow;
174
18
            }
175
0
            return false;
176
18
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeDateESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeDateV2ESE_EEEEbSI_
Line
Count
Source
123
72
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
72
            using Types2 = std::decay_t<decltype(types2)>;
125
72
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
72
            return false;
176
72
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_18DataTypeDateTimeV2ESE_EEEEbSI_
Line
Count
Source
123
24
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
24
            using Types2 = std::decay_t<decltype(types2)>;
125
24
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
24
            return false;
176
24
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_22DataTypeDateTimeV2NanoESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_16DataTypeDateTimeESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeTimeV2ESE_EEEEbSI_
Line
Count
Source
123
320
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
320
            using Types2 = std::decay_t<decltype(types2)>;
125
320
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
320
            return false;
176
320
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_19DataTypeTimeStampTzESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv4ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv6ESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeStringESE_EEEEbSI_
Line
Count
Source
123
4.83k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
4.83k
            using Types2 = std::decay_t<decltype(types2)>;
125
4.83k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
4.83k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
4.83k
                return false;
130
4.83k
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
4.83k
            return false;
176
4.83k
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_2EEESE_EEEEbSI_
Line
Count
Source
123
90
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
90
            using Types2 = std::decay_t<decltype(types2)>;
125
90
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
90
            return false;
176
90
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_3EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_ISE_SE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_5EEESE_EEEEbSI_
Line
Count
Source
123
7
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7
            using Types2 = std::decay_t<decltype(types2)>;
125
7
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
7
            return false;
176
7
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_6EEESE_EEEEbSI_
Line
Count
Source
123
7
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7
            using Types2 = std::decay_t<decltype(types2)>;
125
7
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
7
            return false;
176
7
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_7EEESE_EEEEbSI_
Line
Count
Source
123
7
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7
            using Types2 = std::decay_t<decltype(types2)>;
125
7
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
7
            return false;
176
7
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_8EEESE_EEEEbSI_
Line
Count
Source
123
21
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
21
            using Types2 = std::decay_t<decltype(types2)>;
125
21
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
21
            return false;
176
21
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_9EEESE_EEEEbSI_
Line
Count
Source
123
25
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
25
            using Types2 = std::decay_t<decltype(types2)>;
125
25
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
25
            return false;
176
25
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_28EEESE_EEEEbSI_
Line
Count
Source
123
14
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
14
            using Types2 = std::decay_t<decltype(types2)>;
125
14
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
14
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
14
                using FromFieldType = typename FromDataType::FieldType;
133
14
                using ToFieldType = typename ToDataType::FieldType;
134
14
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
14
                UInt32 from_scale = 0;
136
137
14
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
14
                    const auto* from_decimal_type =
139
14
                            check_and_get_data_type<FromDataType>(from_type.get());
140
14
                    from_precision =
141
14
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
14
                    from_scale = from_decimal_type->get_scale();
143
14
                }
144
145
14
                UInt32 to_max_digits = 0;
146
14
                UInt32 to_precision = 0;
147
14
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
14
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
14
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
14
                    to_precision = to_max_digits;
163
14
                }
164
165
14
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
14
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
14
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
14
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
14
                return narrow_integral || multiply_may_overflow;
174
14
            }
175
0
            return false;
176
14
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_29EEESE_EEEEbSI_
Line
Count
Source
123
18
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
18
            using Types2 = std::decay_t<decltype(types2)>;
125
18
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
18
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
18
                using FromFieldType = typename FromDataType::FieldType;
133
18
                using ToFieldType = typename ToDataType::FieldType;
134
18
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
18
                UInt32 from_scale = 0;
136
137
18
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
18
                    const auto* from_decimal_type =
139
18
                            check_and_get_data_type<FromDataType>(from_type.get());
140
18
                    from_precision =
141
18
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
18
                    from_scale = from_decimal_type->get_scale();
143
18
                }
144
145
18
                UInt32 to_max_digits = 0;
146
18
                UInt32 to_precision = 0;
147
18
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
18
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
18
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
18
                    to_precision = to_max_digits;
163
18
                }
164
165
18
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
18
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
18
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
18
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
18
                return narrow_integral || multiply_may_overflow;
174
18
            }
175
0
            return false;
176
18
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_20EEESE_EEEEbSI_
Line
Count
Source
123
8
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
8
            using Types2 = std::decay_t<decltype(types2)>;
125
8
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
8
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
8
                using FromFieldType = typename FromDataType::FieldType;
133
8
                using ToFieldType = typename ToDataType::FieldType;
134
8
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
8
                UInt32 from_scale = 0;
136
137
8
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
8
                    const auto* from_decimal_type =
139
8
                            check_and_get_data_type<FromDataType>(from_type.get());
140
8
                    from_precision =
141
8
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
8
                    from_scale = from_decimal_type->get_scale();
143
8
                }
144
145
8
                UInt32 to_max_digits = 0;
146
8
                UInt32 to_precision = 0;
147
8
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
8
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
8
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
8
                    to_precision = to_max_digits;
163
8
                }
164
165
8
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
8
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
8
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
8
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
8
                return narrow_integral || multiply_may_overflow;
174
8
            }
175
0
            return false;
176
8
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_30EEESE_EEEEbSI_
Line
Count
Source
123
18
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
18
            using Types2 = std::decay_t<decltype(types2)>;
125
18
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
18
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
18
                using FromFieldType = typename FromDataType::FieldType;
133
18
                using ToFieldType = typename ToDataType::FieldType;
134
18
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
18
                UInt32 from_scale = 0;
136
137
18
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
18
                    const auto* from_decimal_type =
139
18
                            check_and_get_data_type<FromDataType>(from_type.get());
140
18
                    from_precision =
141
18
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
18
                    from_scale = from_decimal_type->get_scale();
143
18
                }
144
145
18
                UInt32 to_max_digits = 0;
146
18
                UInt32 to_precision = 0;
147
18
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
18
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
18
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
18
                    to_precision = to_max_digits;
163
18
                }
164
165
18
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
18
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
18
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
18
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
18
                return narrow_integral || multiply_may_overflow;
174
18
            }
175
0
            return false;
176
18
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_35EEESE_EEEEbSI_
Line
Count
Source
123
18
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
18
            using Types2 = std::decay_t<decltype(types2)>;
125
18
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
18
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
18
                using FromFieldType = typename FromDataType::FieldType;
133
18
                using ToFieldType = typename ToDataType::FieldType;
134
18
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
18
                UInt32 from_scale = 0;
136
137
18
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
18
                    const auto* from_decimal_type =
139
18
                            check_and_get_data_type<FromDataType>(from_type.get());
140
18
                    from_precision =
141
18
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
18
                    from_scale = from_decimal_type->get_scale();
143
18
                }
144
145
18
                UInt32 to_max_digits = 0;
146
18
                UInt32 to_precision = 0;
147
18
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
18
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
18
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
18
                    to_precision = to_max_digits;
163
18
                }
164
165
18
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
18
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
18
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
18
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
18
                return narrow_integral || multiply_may_overflow;
174
18
            }
175
0
            return false;
176
18
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeDateESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeDateV2ESE_EEEEbSI_
Line
Count
Source
123
72
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
72
            using Types2 = std::decay_t<decltype(types2)>;
125
72
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
72
            return false;
176
72
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_18DataTypeDateTimeV2ESE_EEEEbSI_
Line
Count
Source
123
24
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
24
            using Types2 = std::decay_t<decltype(types2)>;
125
24
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
24
            return false;
176
24
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_22DataTypeDateTimeV2NanoESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_16DataTypeDateTimeESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeTimeV2ESE_EEEEbSI_
Line
Count
Source
123
320
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
320
            using Types2 = std::decay_t<decltype(types2)>;
125
320
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
320
            return false;
176
320
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_19DataTypeTimeStampTzESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv4ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv6ESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeStringESE_EEEEbSI_
Line
Count
Source
123
921
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
921
            using Types2 = std::decay_t<decltype(types2)>;
125
921
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
921
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
921
                return false;
130
921
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
921
            return false;
176
921
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_2EEESE_EEEEbSI_
Line
Count
Source
123
4
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
4
            using Types2 = std::decay_t<decltype(types2)>;
125
4
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
4
            return false;
176
4
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_3EEESE_EEEEbSI_
Line
Count
Source
123
2.17k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2.17k
            using Types2 = std::decay_t<decltype(types2)>;
125
2.17k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2.17k
            return false;
176
2.17k
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_4EEESE_EEEEbSI_
Line
Count
Source
123
224
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
224
            using Types2 = std::decay_t<decltype(types2)>;
125
224
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
224
            return false;
176
224
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_ISE_SE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_6EEESE_EEEEbSI_
Line
Count
Source
123
1.37k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
1.37k
            using Types2 = std::decay_t<decltype(types2)>;
125
1.37k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
1.37k
            return false;
176
1.37k
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_7EEESE_EEEEbSI_
Line
Count
Source
123
7
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7
            using Types2 = std::decay_t<decltype(types2)>;
125
7
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
7
            return false;
176
7
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_8EEESE_EEEEbSI_
Line
Count
Source
123
17
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
17
            using Types2 = std::decay_t<decltype(types2)>;
125
17
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
17
            return false;
176
17
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_9EEESE_EEEEbSI_
Line
Count
Source
123
55
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
55
            using Types2 = std::decay_t<decltype(types2)>;
125
55
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
55
            return false;
176
55
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_28EEESE_EEEEbSI_
Line
Count
Source
123
14
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
14
            using Types2 = std::decay_t<decltype(types2)>;
125
14
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
14
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
14
                using FromFieldType = typename FromDataType::FieldType;
133
14
                using ToFieldType = typename ToDataType::FieldType;
134
14
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
14
                UInt32 from_scale = 0;
136
137
14
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
14
                    const auto* from_decimal_type =
139
14
                            check_and_get_data_type<FromDataType>(from_type.get());
140
14
                    from_precision =
141
14
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
14
                    from_scale = from_decimal_type->get_scale();
143
14
                }
144
145
14
                UInt32 to_max_digits = 0;
146
14
                UInt32 to_precision = 0;
147
14
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
14
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
14
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
14
                    to_precision = to_max_digits;
163
14
                }
164
165
14
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
14
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
14
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
14
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
14
                return narrow_integral || multiply_may_overflow;
174
14
            }
175
0
            return false;
176
14
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_29EEESE_EEEEbSI_
Line
Count
Source
123
18
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
18
            using Types2 = std::decay_t<decltype(types2)>;
125
18
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
18
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
18
                using FromFieldType = typename FromDataType::FieldType;
133
18
                using ToFieldType = typename ToDataType::FieldType;
134
18
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
18
                UInt32 from_scale = 0;
136
137
18
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
18
                    const auto* from_decimal_type =
139
18
                            check_and_get_data_type<FromDataType>(from_type.get());
140
18
                    from_precision =
141
18
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
18
                    from_scale = from_decimal_type->get_scale();
143
18
                }
144
145
18
                UInt32 to_max_digits = 0;
146
18
                UInt32 to_precision = 0;
147
18
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
18
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
18
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
18
                    to_precision = to_max_digits;
163
18
                }
164
165
18
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
18
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
18
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
18
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
18
                return narrow_integral || multiply_may_overflow;
174
18
            }
175
0
            return false;
176
18
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_20EEESE_EEEEbSI_
Line
Count
Source
123
8
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
8
            using Types2 = std::decay_t<decltype(types2)>;
125
8
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
8
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
8
                using FromFieldType = typename FromDataType::FieldType;
133
8
                using ToFieldType = typename ToDataType::FieldType;
134
8
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
8
                UInt32 from_scale = 0;
136
137
8
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
8
                    const auto* from_decimal_type =
139
8
                            check_and_get_data_type<FromDataType>(from_type.get());
140
8
                    from_precision =
141
8
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
8
                    from_scale = from_decimal_type->get_scale();
143
8
                }
144
145
8
                UInt32 to_max_digits = 0;
146
8
                UInt32 to_precision = 0;
147
8
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
8
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
8
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
8
                    to_precision = to_max_digits;
163
8
                }
164
165
8
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
8
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
8
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
8
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
8
                return narrow_integral || multiply_may_overflow;
174
8
            }
175
0
            return false;
176
8
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_30EEESE_EEEEbSI_
Line
Count
Source
123
18
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
18
            using Types2 = std::decay_t<decltype(types2)>;
125
18
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
18
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
18
                using FromFieldType = typename FromDataType::FieldType;
133
18
                using ToFieldType = typename ToDataType::FieldType;
134
18
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
18
                UInt32 from_scale = 0;
136
137
18
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
18
                    const auto* from_decimal_type =
139
18
                            check_and_get_data_type<FromDataType>(from_type.get());
140
18
                    from_precision =
141
18
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
18
                    from_scale = from_decimal_type->get_scale();
143
18
                }
144
145
18
                UInt32 to_max_digits = 0;
146
18
                UInt32 to_precision = 0;
147
18
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
18
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
18
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
18
                    to_precision = to_max_digits;
163
18
                }
164
165
18
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
18
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
18
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
18
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
18
                return narrow_integral || multiply_may_overflow;
174
18
            }
175
0
            return false;
176
18
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_35EEESE_EEEEbSI_
Line
Count
Source
123
18
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
18
            using Types2 = std::decay_t<decltype(types2)>;
125
18
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
18
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
18
                using FromFieldType = typename FromDataType::FieldType;
133
18
                using ToFieldType = typename ToDataType::FieldType;
134
18
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
18
                UInt32 from_scale = 0;
136
137
18
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
18
                    const auto* from_decimal_type =
139
18
                            check_and_get_data_type<FromDataType>(from_type.get());
140
18
                    from_precision =
141
18
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
18
                    from_scale = from_decimal_type->get_scale();
143
18
                }
144
145
18
                UInt32 to_max_digits = 0;
146
18
                UInt32 to_precision = 0;
147
18
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
18
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
18
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
18
                    to_precision = to_max_digits;
163
18
                }
164
165
18
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
18
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
18
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
18
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
18
                return narrow_integral || multiply_may_overflow;
174
18
            }
175
0
            return false;
176
18
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeDateESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeDateV2ESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_18DataTypeDateTimeV2ESE_EEEEbSI_
Line
Count
Source
123
24
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
24
            using Types2 = std::decay_t<decltype(types2)>;
125
24
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
24
            return false;
176
24
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_22DataTypeDateTimeV2NanoESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_16DataTypeDateTimeESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeTimeV2ESE_EEEEbSI_
Line
Count
Source
123
276
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
276
            using Types2 = std::decay_t<decltype(types2)>;
125
276
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
276
            return false;
176
276
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_19DataTypeTimeStampTzESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv4ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv6ESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeStringESE_EEEEbSI_
Line
Count
Source
123
5.40k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
5.40k
            using Types2 = std::decay_t<decltype(types2)>;
125
5.40k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
5.40k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
5.40k
                return false;
130
5.40k
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
5.40k
            return false;
176
5.40k
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_2EEESE_EEEEbSI_
Line
Count
Source
123
323
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
323
            using Types2 = std::decay_t<decltype(types2)>;
125
323
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
323
            return false;
176
323
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_3EEESE_EEEEbSI_
Line
Count
Source
123
306
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
306
            using Types2 = std::decay_t<decltype(types2)>;
125
306
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
306
            return false;
176
306
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_4EEESE_EEEEbSI_
Line
Count
Source
123
16
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
16
            using Types2 = std::decay_t<decltype(types2)>;
125
16
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
16
            return false;
176
16
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_5EEESE_EEEEbSI_
Line
Count
Source
123
5.05k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
5.05k
            using Types2 = std::decay_t<decltype(types2)>;
125
5.05k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
5.05k
            return false;
176
5.05k
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_ISE_SE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_7EEESE_EEEEbSI_
Line
Count
Source
123
7
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7
            using Types2 = std::decay_t<decltype(types2)>;
125
7
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
7
            return false;
176
7
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_8EEESE_EEEEbSI_
Line
Count
Source
123
13
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
13
            using Types2 = std::decay_t<decltype(types2)>;
125
13
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
13
            return false;
176
13
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_9EEESE_EEEEbSI_
Line
Count
Source
123
21
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
21
            using Types2 = std::decay_t<decltype(types2)>;
125
21
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
21
            return false;
176
21
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_28EEESE_EEEEbSI_
Line
Count
Source
123
14
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
14
            using Types2 = std::decay_t<decltype(types2)>;
125
14
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
14
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
14
                using FromFieldType = typename FromDataType::FieldType;
133
14
                using ToFieldType = typename ToDataType::FieldType;
134
14
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
14
                UInt32 from_scale = 0;
136
137
14
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
14
                    const auto* from_decimal_type =
139
14
                            check_and_get_data_type<FromDataType>(from_type.get());
140
14
                    from_precision =
141
14
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
14
                    from_scale = from_decimal_type->get_scale();
143
14
                }
144
145
14
                UInt32 to_max_digits = 0;
146
14
                UInt32 to_precision = 0;
147
14
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
14
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
14
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
14
                    to_precision = to_max_digits;
163
14
                }
164
165
14
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
14
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
14
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
14
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
14
                return narrow_integral || multiply_may_overflow;
174
14
            }
175
0
            return false;
176
14
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_29EEESE_EEEEbSI_
Line
Count
Source
123
18
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
18
            using Types2 = std::decay_t<decltype(types2)>;
125
18
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
18
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
18
                using FromFieldType = typename FromDataType::FieldType;
133
18
                using ToFieldType = typename ToDataType::FieldType;
134
18
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
18
                UInt32 from_scale = 0;
136
137
18
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
18
                    const auto* from_decimal_type =
139
18
                            check_and_get_data_type<FromDataType>(from_type.get());
140
18
                    from_precision =
141
18
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
18
                    from_scale = from_decimal_type->get_scale();
143
18
                }
144
145
18
                UInt32 to_max_digits = 0;
146
18
                UInt32 to_precision = 0;
147
18
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
18
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
18
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
18
                    to_precision = to_max_digits;
163
18
                }
164
165
18
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
18
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
18
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
18
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
18
                return narrow_integral || multiply_may_overflow;
174
18
            }
175
0
            return false;
176
18
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_20EEESE_EEEEbSI_
Line
Count
Source
123
8
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
8
            using Types2 = std::decay_t<decltype(types2)>;
125
8
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
8
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
8
                using FromFieldType = typename FromDataType::FieldType;
133
8
                using ToFieldType = typename ToDataType::FieldType;
134
8
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
8
                UInt32 from_scale = 0;
136
137
8
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
8
                    const auto* from_decimal_type =
139
8
                            check_and_get_data_type<FromDataType>(from_type.get());
140
8
                    from_precision =
141
8
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
8
                    from_scale = from_decimal_type->get_scale();
143
8
                }
144
145
8
                UInt32 to_max_digits = 0;
146
8
                UInt32 to_precision = 0;
147
8
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
8
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
8
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
8
                    to_precision = to_max_digits;
163
8
                }
164
165
8
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
8
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
8
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
8
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
8
                return narrow_integral || multiply_may_overflow;
174
8
            }
175
0
            return false;
176
8
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_30EEESE_EEEEbSI_
Line
Count
Source
123
24
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
24
            using Types2 = std::decay_t<decltype(types2)>;
125
24
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
24
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
24
                using FromFieldType = typename FromDataType::FieldType;
133
24
                using ToFieldType = typename ToDataType::FieldType;
134
24
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
24
                UInt32 from_scale = 0;
136
137
24
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
24
                    const auto* from_decimal_type =
139
24
                            check_and_get_data_type<FromDataType>(from_type.get());
140
24
                    from_precision =
141
24
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
24
                    from_scale = from_decimal_type->get_scale();
143
24
                }
144
145
24
                UInt32 to_max_digits = 0;
146
24
                UInt32 to_precision = 0;
147
24
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
24
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
24
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
24
                    to_precision = to_max_digits;
163
24
                }
164
165
24
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
24
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
24
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
24
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
24
                return narrow_integral || multiply_may_overflow;
174
24
            }
175
0
            return false;
176
24
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_35EEESE_EEEEbSI_
Line
Count
Source
123
18
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
18
            using Types2 = std::decay_t<decltype(types2)>;
125
18
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
18
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
18
                using FromFieldType = typename FromDataType::FieldType;
133
18
                using ToFieldType = typename ToDataType::FieldType;
134
18
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
18
                UInt32 from_scale = 0;
136
137
18
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
18
                    const auto* from_decimal_type =
139
18
                            check_and_get_data_type<FromDataType>(from_type.get());
140
18
                    from_precision =
141
18
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
18
                    from_scale = from_decimal_type->get_scale();
143
18
                }
144
145
18
                UInt32 to_max_digits = 0;
146
18
                UInt32 to_precision = 0;
147
18
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
18
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
18
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
18
                    to_precision = to_max_digits;
163
18
                }
164
165
18
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
18
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
18
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
18
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
18
                return narrow_integral || multiply_may_overflow;
174
18
            }
175
0
            return false;
176
18
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeDateESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeDateV2ESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_18DataTypeDateTimeV2ESE_EEEEbSI_
Line
Count
Source
123
8
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
8
            using Types2 = std::decay_t<decltype(types2)>;
125
8
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
8
            return false;
176
8
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_22DataTypeDateTimeV2NanoESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_16DataTypeDateTimeESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeTimeV2ESE_EEEEbSI_
Line
Count
Source
123
4
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
4
            using Types2 = std::decay_t<decltype(types2)>;
125
4
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
4
            return false;
176
4
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_19DataTypeTimeStampTzESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv4ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv6ESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeStringESE_EEEEbSI_
Line
Count
Source
123
4.63k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
4.63k
            using Types2 = std::decay_t<decltype(types2)>;
125
4.63k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
4.63k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
4.63k
                return false;
130
4.63k
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
4.63k
            return false;
176
4.63k
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_2EEESE_EEEEbSI_
Line
Count
Source
123
85
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
85
            using Types2 = std::decay_t<decltype(types2)>;
125
85
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
85
            return false;
176
85
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_3EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_4EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_5EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_6EEESE_EEEEbSI_
Line
Count
Source
123
84
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
84
            using Types2 = std::decay_t<decltype(types2)>;
125
84
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
84
            return false;
176
84
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_ISE_SE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_8EEESE_EEEEbSI_
Line
Count
Source
123
9
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
9
            using Types2 = std::decay_t<decltype(types2)>;
125
9
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
9
            return false;
176
9
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_9EEESE_EEEEbSI_
Line
Count
Source
123
13
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
13
            using Types2 = std::decay_t<decltype(types2)>;
125
13
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
13
            return false;
176
13
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_28EEESE_EEEEbSI_
Line
Count
Source
123
14
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
14
            using Types2 = std::decay_t<decltype(types2)>;
125
14
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
14
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
14
                using FromFieldType = typename FromDataType::FieldType;
133
14
                using ToFieldType = typename ToDataType::FieldType;
134
14
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
14
                UInt32 from_scale = 0;
136
137
14
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
14
                    const auto* from_decimal_type =
139
14
                            check_and_get_data_type<FromDataType>(from_type.get());
140
14
                    from_precision =
141
14
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
14
                    from_scale = from_decimal_type->get_scale();
143
14
                }
144
145
14
                UInt32 to_max_digits = 0;
146
14
                UInt32 to_precision = 0;
147
14
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
14
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
14
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
14
                    to_precision = to_max_digits;
163
14
                }
164
165
14
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
14
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
14
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
14
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
14
                return narrow_integral || multiply_may_overflow;
174
14
            }
175
0
            return false;
176
14
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_29EEESE_EEEEbSI_
Line
Count
Source
123
18
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
18
            using Types2 = std::decay_t<decltype(types2)>;
125
18
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
18
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
18
                using FromFieldType = typename FromDataType::FieldType;
133
18
                using ToFieldType = typename ToDataType::FieldType;
134
18
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
18
                UInt32 from_scale = 0;
136
137
18
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
18
                    const auto* from_decimal_type =
139
18
                            check_and_get_data_type<FromDataType>(from_type.get());
140
18
                    from_precision =
141
18
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
18
                    from_scale = from_decimal_type->get_scale();
143
18
                }
144
145
18
                UInt32 to_max_digits = 0;
146
18
                UInt32 to_precision = 0;
147
18
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
18
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
18
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
18
                    to_precision = to_max_digits;
163
18
                }
164
165
18
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
18
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
18
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
18
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
18
                return narrow_integral || multiply_may_overflow;
174
18
            }
175
0
            return false;
176
18
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_20EEESE_EEEEbSI_
Line
Count
Source
123
8
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
8
            using Types2 = std::decay_t<decltype(types2)>;
125
8
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
8
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
8
                using FromFieldType = typename FromDataType::FieldType;
133
8
                using ToFieldType = typename ToDataType::FieldType;
134
8
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
8
                UInt32 from_scale = 0;
136
137
8
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
8
                    const auto* from_decimal_type =
139
8
                            check_and_get_data_type<FromDataType>(from_type.get());
140
8
                    from_precision =
141
8
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
8
                    from_scale = from_decimal_type->get_scale();
143
8
                }
144
145
8
                UInt32 to_max_digits = 0;
146
8
                UInt32 to_precision = 0;
147
8
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
8
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
8
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
8
                    to_precision = to_max_digits;
163
8
                }
164
165
8
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
8
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
8
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
8
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
8
                return narrow_integral || multiply_may_overflow;
174
8
            }
175
0
            return false;
176
8
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_30EEESE_EEEEbSI_
Line
Count
Source
123
18
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
18
            using Types2 = std::decay_t<decltype(types2)>;
125
18
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
18
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
18
                using FromFieldType = typename FromDataType::FieldType;
133
18
                using ToFieldType = typename ToDataType::FieldType;
134
18
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
18
                UInt32 from_scale = 0;
136
137
18
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
18
                    const auto* from_decimal_type =
139
18
                            check_and_get_data_type<FromDataType>(from_type.get());
140
18
                    from_precision =
141
18
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
18
                    from_scale = from_decimal_type->get_scale();
143
18
                }
144
145
18
                UInt32 to_max_digits = 0;
146
18
                UInt32 to_precision = 0;
147
18
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
18
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
18
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
18
                    to_precision = to_max_digits;
163
18
                }
164
165
18
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
18
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
18
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
18
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
18
                return narrow_integral || multiply_may_overflow;
174
18
            }
175
0
            return false;
176
18
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_35EEESE_EEEEbSI_
Line
Count
Source
123
18
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
18
            using Types2 = std::decay_t<decltype(types2)>;
125
18
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
18
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
18
                using FromFieldType = typename FromDataType::FieldType;
133
18
                using ToFieldType = typename ToDataType::FieldType;
134
18
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
18
                UInt32 from_scale = 0;
136
137
18
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
18
                    const auto* from_decimal_type =
139
18
                            check_and_get_data_type<FromDataType>(from_type.get());
140
18
                    from_precision =
141
18
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
18
                    from_scale = from_decimal_type->get_scale();
143
18
                }
144
145
18
                UInt32 to_max_digits = 0;
146
18
                UInt32 to_precision = 0;
147
18
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
18
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
18
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
18
                    to_precision = to_max_digits;
163
18
                }
164
165
18
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
18
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
18
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
18
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
18
                return narrow_integral || multiply_may_overflow;
174
18
            }
175
0
            return false;
176
18
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeDateESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeDateV2ESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_18DataTypeDateTimeV2ESE_EEEEbSI_
Line
Count
Source
123
8
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
8
            using Types2 = std::decay_t<decltype(types2)>;
125
8
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
8
            return false;
176
8
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_22DataTypeDateTimeV2NanoESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_16DataTypeDateTimeESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeTimeV2ESE_EEEEbSI_
Line
Count
Source
123
4
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
4
            using Types2 = std::decay_t<decltype(types2)>;
125
4
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
4
            return false;
176
4
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_19DataTypeTimeStampTzESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv4ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv6ESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeStringESE_EEEEbSI_
Line
Count
Source
123
811
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
811
            using Types2 = std::decay_t<decltype(types2)>;
125
811
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
811
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
811
                return false;
130
811
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
811
            return false;
176
811
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_2EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_3EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_4EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_5EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_6EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_7EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_ISE_SE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_9EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_28EEESE_EEEEbSI_
Line
Count
Source
123
14
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
14
            using Types2 = std::decay_t<decltype(types2)>;
125
14
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
14
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
14
                using FromFieldType = typename FromDataType::FieldType;
133
14
                using ToFieldType = typename ToDataType::FieldType;
134
14
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
14
                UInt32 from_scale = 0;
136
137
14
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
14
                    const auto* from_decimal_type =
139
14
                            check_and_get_data_type<FromDataType>(from_type.get());
140
14
                    from_precision =
141
14
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
14
                    from_scale = from_decimal_type->get_scale();
143
14
                }
144
145
14
                UInt32 to_max_digits = 0;
146
14
                UInt32 to_precision = 0;
147
14
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
14
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
14
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
14
                    to_precision = to_max_digits;
163
14
                }
164
165
14
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
14
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
14
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
14
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
14
                return narrow_integral || multiply_may_overflow;
174
14
            }
175
0
            return false;
176
14
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_29EEESE_EEEEbSI_
Line
Count
Source
123
18
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
18
            using Types2 = std::decay_t<decltype(types2)>;
125
18
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
18
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
18
                using FromFieldType = typename FromDataType::FieldType;
133
18
                using ToFieldType = typename ToDataType::FieldType;
134
18
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
18
                UInt32 from_scale = 0;
136
137
18
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
18
                    const auto* from_decimal_type =
139
18
                            check_and_get_data_type<FromDataType>(from_type.get());
140
18
                    from_precision =
141
18
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
18
                    from_scale = from_decimal_type->get_scale();
143
18
                }
144
145
18
                UInt32 to_max_digits = 0;
146
18
                UInt32 to_precision = 0;
147
18
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
18
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
18
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
18
                    to_precision = to_max_digits;
163
18
                }
164
165
18
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
18
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
18
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
18
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
18
                return narrow_integral || multiply_may_overflow;
174
18
            }
175
0
            return false;
176
18
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_20EEESE_EEEEbSI_
Line
Count
Source
123
16
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
16
            using Types2 = std::decay_t<decltype(types2)>;
125
16
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
16
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
16
                using FromFieldType = typename FromDataType::FieldType;
133
16
                using ToFieldType = typename ToDataType::FieldType;
134
16
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
16
                UInt32 from_scale = 0;
136
137
16
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
16
                    const auto* from_decimal_type =
139
16
                            check_and_get_data_type<FromDataType>(from_type.get());
140
16
                    from_precision =
141
16
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
16
                    from_scale = from_decimal_type->get_scale();
143
16
                }
144
145
16
                UInt32 to_max_digits = 0;
146
16
                UInt32 to_precision = 0;
147
16
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
16
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
16
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
16
                    to_precision = to_max_digits;
163
16
                }
164
165
16
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
16
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
16
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
16
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
16
                return narrow_integral || multiply_may_overflow;
174
16
            }
175
0
            return false;
176
16
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_30EEESE_EEEEbSI_
Line
Count
Source
123
18
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
18
            using Types2 = std::decay_t<decltype(types2)>;
125
18
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
18
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
18
                using FromFieldType = typename FromDataType::FieldType;
133
18
                using ToFieldType = typename ToDataType::FieldType;
134
18
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
18
                UInt32 from_scale = 0;
136
137
18
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
18
                    const auto* from_decimal_type =
139
18
                            check_and_get_data_type<FromDataType>(from_type.get());
140
18
                    from_precision =
141
18
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
18
                    from_scale = from_decimal_type->get_scale();
143
18
                }
144
145
18
                UInt32 to_max_digits = 0;
146
18
                UInt32 to_precision = 0;
147
18
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
18
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
18
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
18
                    to_precision = to_max_digits;
163
18
                }
164
165
18
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
18
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
18
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
18
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
18
                return narrow_integral || multiply_may_overflow;
174
18
            }
175
0
            return false;
176
18
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_35EEESE_EEEEbSI_
Line
Count
Source
123
36
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
36
            using Types2 = std::decay_t<decltype(types2)>;
125
36
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
36
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
36
                using FromFieldType = typename FromDataType::FieldType;
133
36
                using ToFieldType = typename ToDataType::FieldType;
134
36
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
36
                UInt32 from_scale = 0;
136
137
36
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
36
                    const auto* from_decimal_type =
139
36
                            check_and_get_data_type<FromDataType>(from_type.get());
140
36
                    from_precision =
141
36
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
36
                    from_scale = from_decimal_type->get_scale();
143
36
                }
144
145
36
                UInt32 to_max_digits = 0;
146
36
                UInt32 to_precision = 0;
147
36
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
36
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
36
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
36
                    to_precision = to_max_digits;
163
36
                }
164
165
36
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
36
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
36
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
36
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
36
                return narrow_integral || multiply_may_overflow;
174
36
            }
175
0
            return false;
176
36
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeDateESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeDateV2ESE_EEEEbSI_
Line
Count
Source
123
37
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
37
            using Types2 = std::decay_t<decltype(types2)>;
125
37
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
37
            return false;
176
37
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_18DataTypeDateTimeV2ESE_EEEEbSI_
Line
Count
Source
123
7.78k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7.78k
            using Types2 = std::decay_t<decltype(types2)>;
125
7.78k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
7.78k
            return false;
176
7.78k
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_22DataTypeDateTimeV2NanoESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_16DataTypeDateTimeESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeTimeV2ESE_EEEEbSI_
Line
Count
Source
123
162
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
162
            using Types2 = std::decay_t<decltype(types2)>;
125
162
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
162
            return false;
176
162
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_19DataTypeTimeStampTzESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv4ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv6ESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeStringESE_EEEEbSI_
Line
Count
Source
123
102
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
102
            using Types2 = std::decay_t<decltype(types2)>;
125
102
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
102
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
102
                return false;
130
102
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
102
            return false;
176
102
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_2EEESE_EEEEbSI_
Line
Count
Source
123
111
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
111
            using Types2 = std::decay_t<decltype(types2)>;
125
111
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
111
            return false;
176
111
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_3EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_4EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_5EEESE_EEEEbSI_
Line
Count
Source
123
14
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
14
            using Types2 = std::decay_t<decltype(types2)>;
125
14
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
14
            return false;
176
14
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_6EEESE_EEEEbSI_
Line
Count
Source
123
248
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
248
            using Types2 = std::decay_t<decltype(types2)>;
125
248
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
248
            return false;
176
248
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_7EEESE_EEEEbSI_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_8EEESE_EEEEbSI_
Line
Count
Source
123
1.73k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
1.73k
            using Types2 = std::decay_t<decltype(types2)>;
125
1.73k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
1.73k
            return false;
176
1.73k
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_ISE_SE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_28EEESE_EEEEbSI_
Line
Count
Source
123
14
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
14
            using Types2 = std::decay_t<decltype(types2)>;
125
14
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
14
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
14
                using FromFieldType = typename FromDataType::FieldType;
133
14
                using ToFieldType = typename ToDataType::FieldType;
134
14
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
14
                UInt32 from_scale = 0;
136
137
14
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
14
                    const auto* from_decimal_type =
139
14
                            check_and_get_data_type<FromDataType>(from_type.get());
140
14
                    from_precision =
141
14
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
14
                    from_scale = from_decimal_type->get_scale();
143
14
                }
144
145
14
                UInt32 to_max_digits = 0;
146
14
                UInt32 to_precision = 0;
147
14
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
14
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
14
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
14
                    to_precision = to_max_digits;
163
14
                }
164
165
14
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
14
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
14
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
14
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
14
                return narrow_integral || multiply_may_overflow;
174
14
            }
175
0
            return false;
176
14
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_29EEESE_EEEEbSI_
Line
Count
Source
123
18
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
18
            using Types2 = std::decay_t<decltype(types2)>;
125
18
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
18
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
18
                using FromFieldType = typename FromDataType::FieldType;
133
18
                using ToFieldType = typename ToDataType::FieldType;
134
18
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
18
                UInt32 from_scale = 0;
136
137
18
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
18
                    const auto* from_decimal_type =
139
18
                            check_and_get_data_type<FromDataType>(from_type.get());
140
18
                    from_precision =
141
18
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
18
                    from_scale = from_decimal_type->get_scale();
143
18
                }
144
145
18
                UInt32 to_max_digits = 0;
146
18
                UInt32 to_precision = 0;
147
18
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
18
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
18
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
18
                    to_precision = to_max_digits;
163
18
                }
164
165
18
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
18
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
18
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
18
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
18
                return narrow_integral || multiply_may_overflow;
174
18
            }
175
0
            return false;
176
18
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_20EEESE_EEEEbSI_
Line
Count
Source
123
16
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
16
            using Types2 = std::decay_t<decltype(types2)>;
125
16
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
16
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
16
                using FromFieldType = typename FromDataType::FieldType;
133
16
                using ToFieldType = typename ToDataType::FieldType;
134
16
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
16
                UInt32 from_scale = 0;
136
137
16
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
16
                    const auto* from_decimal_type =
139
16
                            check_and_get_data_type<FromDataType>(from_type.get());
140
16
                    from_precision =
141
16
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
16
                    from_scale = from_decimal_type->get_scale();
143
16
                }
144
145
16
                UInt32 to_max_digits = 0;
146
16
                UInt32 to_precision = 0;
147
16
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
16
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
16
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
16
                    to_precision = to_max_digits;
163
16
                }
164
165
16
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
16
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
16
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
16
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
16
                return narrow_integral || multiply_may_overflow;
174
16
            }
175
0
            return false;
176
16
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_30EEESE_EEEEbSI_
Line
Count
Source
123
20
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
20
            using Types2 = std::decay_t<decltype(types2)>;
125
20
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
20
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
20
                using FromFieldType = typename FromDataType::FieldType;
133
20
                using ToFieldType = typename ToDataType::FieldType;
134
20
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
20
                UInt32 from_scale = 0;
136
137
20
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
20
                    const auto* from_decimal_type =
139
20
                            check_and_get_data_type<FromDataType>(from_type.get());
140
20
                    from_precision =
141
20
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
20
                    from_scale = from_decimal_type->get_scale();
143
20
                }
144
145
20
                UInt32 to_max_digits = 0;
146
20
                UInt32 to_precision = 0;
147
20
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
20
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
20
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
20
                    to_precision = to_max_digits;
163
20
                }
164
165
20
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
20
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
20
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
20
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
20
                return narrow_integral || multiply_may_overflow;
174
20
            }
175
0
            return false;
176
20
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_15DataTypeDecimalILSD_35EEESE_EEEEbSI_
Line
Count
Source
123
18
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
18
            using Types2 = std::decay_t<decltype(types2)>;
125
18
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
18
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
18
                using FromFieldType = typename FromDataType::FieldType;
133
18
                using ToFieldType = typename ToDataType::FieldType;
134
18
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
18
                UInt32 from_scale = 0;
136
137
18
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
18
                    const auto* from_decimal_type =
139
18
                            check_and_get_data_type<FromDataType>(from_type.get());
140
18
                    from_precision =
141
18
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
18
                    from_scale = from_decimal_type->get_scale();
143
18
                }
144
145
18
                UInt32 to_max_digits = 0;
146
18
                UInt32 to_precision = 0;
147
18
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
18
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
18
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
18
                    to_precision = to_max_digits;
163
18
                }
164
165
18
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
18
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
18
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
18
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
18
                return narrow_integral || multiply_may_overflow;
174
18
            }
175
0
            return false;
176
18
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeDateESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeDateV2ESE_EEEEbSI_
Line
Count
Source
123
69
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
69
            using Types2 = std::decay_t<decltype(types2)>;
125
69
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
69
            return false;
176
69
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_18DataTypeDateTimeV2ESE_EEEEbSI_
Line
Count
Source
123
7.82k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7.82k
            using Types2 = std::decay_t<decltype(types2)>;
125
7.82k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
7.82k
            return false;
176
7.82k
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_22DataTypeDateTimeV2NanoESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_16DataTypeDateTimeESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeTimeV2ESE_EEEEbSI_
Line
Count
Source
123
162
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
162
            using Types2 = std::decay_t<decltype(types2)>;
125
162
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
162
            return false;
176
162
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_19DataTypeTimeStampTzESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv4ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv6ESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeStringESE_EEEEbSI_
Line
Count
Source
123
540
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
540
            using Types2 = std::decay_t<decltype(types2)>;
125
540
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
540
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
540
                return false;
130
540
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
540
            return false;
176
540
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_2EEESE_EEEEbSI_
Line
Count
Source
123
7
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7
            using Types2 = std::decay_t<decltype(types2)>;
125
7
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
7
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
7
                using FromFieldType = typename FromDataType::FieldType;
133
7
                using ToFieldType = typename ToDataType::FieldType;
134
7
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
7
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
7
                UInt32 to_max_digits = 0;
146
7
                UInt32 to_precision = 0;
147
7
                UInt32 to_scale = 0;
148
149
7
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
7
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
7
                    const auto* to_decimal_type =
153
7
                            check_and_get_data_type<ToDataType>(to_type.get());
154
7
                    to_precision = to_decimal_type->get_precision();
155
7
                    ToDataType::check_type_precision(to_precision);
156
157
7
                    to_scale = to_decimal_type->get_scale();
158
7
                    ToDataType::check_type_scale(to_scale);
159
7
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
7
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
7
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
7
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
7
                if (to_scale > from_scale) {
170
6
                    multiply_may_overflow &=
171
6
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
6
                }
173
7
                return narrow_integral || multiply_may_overflow;
174
7
            }
175
0
            return false;
176
7
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_3EEESE_EEEEbSI_
Line
Count
Source
123
34
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
34
            using Types2 = std::decay_t<decltype(types2)>;
125
34
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
34
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
34
                using FromFieldType = typename FromDataType::FieldType;
133
34
                using ToFieldType = typename ToDataType::FieldType;
134
34
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
34
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
34
                UInt32 to_max_digits = 0;
146
34
                UInt32 to_precision = 0;
147
34
                UInt32 to_scale = 0;
148
149
34
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
34
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
34
                    const auto* to_decimal_type =
153
34
                            check_and_get_data_type<ToDataType>(to_type.get());
154
34
                    to_precision = to_decimal_type->get_precision();
155
34
                    ToDataType::check_type_precision(to_precision);
156
157
34
                    to_scale = to_decimal_type->get_scale();
158
34
                    ToDataType::check_type_scale(to_scale);
159
34
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
34
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
34
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
34
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
34
                if (to_scale > from_scale) {
170
23
                    multiply_may_overflow &=
171
23
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
23
                }
173
34
                return narrow_integral || multiply_may_overflow;
174
34
            }
175
0
            return false;
176
34
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_4EEESE_EEEEbSI_
Line
Count
Source
123
39
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
39
            using Types2 = std::decay_t<decltype(types2)>;
125
39
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
39
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
39
                using FromFieldType = typename FromDataType::FieldType;
133
39
                using ToFieldType = typename ToDataType::FieldType;
134
39
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
39
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
39
                UInt32 to_max_digits = 0;
146
39
                UInt32 to_precision = 0;
147
39
                UInt32 to_scale = 0;
148
149
39
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
39
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
39
                    const auto* to_decimal_type =
153
39
                            check_and_get_data_type<ToDataType>(to_type.get());
154
39
                    to_precision = to_decimal_type->get_precision();
155
39
                    ToDataType::check_type_precision(to_precision);
156
157
39
                    to_scale = to_decimal_type->get_scale();
158
39
                    ToDataType::check_type_scale(to_scale);
159
39
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
39
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
39
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
39
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
39
                if (to_scale > from_scale) {
170
23
                    multiply_may_overflow &=
171
23
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
23
                }
173
39
                return narrow_integral || multiply_may_overflow;
174
39
            }
175
0
            return false;
176
39
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_5EEESE_EEEEbSI_
Line
Count
Source
123
49
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
49
            using Types2 = std::decay_t<decltype(types2)>;
125
49
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
49
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
49
                using FromFieldType = typename FromDataType::FieldType;
133
49
                using ToFieldType = typename ToDataType::FieldType;
134
49
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
49
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
49
                UInt32 to_max_digits = 0;
146
49
                UInt32 to_precision = 0;
147
49
                UInt32 to_scale = 0;
148
149
49
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
49
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
49
                    const auto* to_decimal_type =
153
49
                            check_and_get_data_type<ToDataType>(to_type.get());
154
49
                    to_precision = to_decimal_type->get_precision();
155
49
                    ToDataType::check_type_precision(to_precision);
156
157
49
                    to_scale = to_decimal_type->get_scale();
158
49
                    ToDataType::check_type_scale(to_scale);
159
49
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
49
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
49
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
49
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
49
                if (to_scale > from_scale) {
170
28
                    multiply_may_overflow &=
171
28
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
28
                }
173
49
                return narrow_integral || multiply_may_overflow;
174
49
            }
175
0
            return false;
176
49
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_6EEESE_EEEEbSI_
Line
Count
Source
123
49
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
49
            using Types2 = std::decay_t<decltype(types2)>;
125
49
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
49
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
49
                using FromFieldType = typename FromDataType::FieldType;
133
49
                using ToFieldType = typename ToDataType::FieldType;
134
49
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
49
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
49
                UInt32 to_max_digits = 0;
146
49
                UInt32 to_precision = 0;
147
49
                UInt32 to_scale = 0;
148
149
49
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
49
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
49
                    const auto* to_decimal_type =
153
49
                            check_and_get_data_type<ToDataType>(to_type.get());
154
49
                    to_precision = to_decimal_type->get_precision();
155
49
                    ToDataType::check_type_precision(to_precision);
156
157
49
                    to_scale = to_decimal_type->get_scale();
158
49
                    ToDataType::check_type_scale(to_scale);
159
49
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
49
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
49
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
49
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
49
                if (to_scale > from_scale) {
170
28
                    multiply_may_overflow &=
171
28
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
28
                }
173
49
                return narrow_integral || multiply_may_overflow;
174
49
            }
175
0
            return false;
176
49
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_7EEESE_EEEEbSI_
Line
Count
Source
123
49
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
49
            using Types2 = std::decay_t<decltype(types2)>;
125
49
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
49
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
49
                using FromFieldType = typename FromDataType::FieldType;
133
49
                using ToFieldType = typename ToDataType::FieldType;
134
49
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
49
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
49
                UInt32 to_max_digits = 0;
146
49
                UInt32 to_precision = 0;
147
49
                UInt32 to_scale = 0;
148
149
49
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
49
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
49
                    const auto* to_decimal_type =
153
49
                            check_and_get_data_type<ToDataType>(to_type.get());
154
49
                    to_precision = to_decimal_type->get_precision();
155
49
                    ToDataType::check_type_precision(to_precision);
156
157
49
                    to_scale = to_decimal_type->get_scale();
158
49
                    ToDataType::check_type_scale(to_scale);
159
49
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
49
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
49
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
49
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
49
                if (to_scale > from_scale) {
170
28
                    multiply_may_overflow &=
171
28
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
28
                }
173
49
                return narrow_integral || multiply_may_overflow;
174
49
            }
175
0
            return false;
176
49
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_8EEESE_EEEEbSI_
Line
Count
Source
123
99
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
99
            using Types2 = std::decay_t<decltype(types2)>;
125
99
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
99
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
99
                using FromFieldType = typename FromDataType::FieldType;
133
99
                using ToFieldType = typename ToDataType::FieldType;
134
99
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
99
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
99
                UInt32 to_max_digits = 0;
146
99
                UInt32 to_precision = 0;
147
99
                UInt32 to_scale = 0;
148
149
99
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
99
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
99
                    const auto* to_decimal_type =
153
99
                            check_and_get_data_type<ToDataType>(to_type.get());
154
99
                    to_precision = to_decimal_type->get_precision();
155
99
                    ToDataType::check_type_precision(to_precision);
156
157
99
                    to_scale = to_decimal_type->get_scale();
158
99
                    ToDataType::check_type_scale(to_scale);
159
99
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
99
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
99
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
99
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
99
                if (to_scale > from_scale) {
170
66
                    multiply_may_overflow &=
171
66
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
66
                }
173
99
                return narrow_integral || multiply_may_overflow;
174
99
            }
175
0
            return false;
176
99
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_9EEESE_EEEEbSI_
Line
Count
Source
123
103
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
103
            using Types2 = std::decay_t<decltype(types2)>;
125
103
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
103
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
103
                using FromFieldType = typename FromDataType::FieldType;
133
103
                using ToFieldType = typename ToDataType::FieldType;
134
103
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
103
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
103
                UInt32 to_max_digits = 0;
146
103
                UInt32 to_precision = 0;
147
103
                UInt32 to_scale = 0;
148
149
103
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
103
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
103
                    const auto* to_decimal_type =
153
103
                            check_and_get_data_type<ToDataType>(to_type.get());
154
103
                    to_precision = to_decimal_type->get_precision();
155
103
                    ToDataType::check_type_precision(to_precision);
156
157
103
                    to_scale = to_decimal_type->get_scale();
158
103
                    ToDataType::check_type_scale(to_scale);
159
103
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
103
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
103
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
103
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
103
                if (to_scale > from_scale) {
170
66
                    multiply_may_overflow &=
171
66
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
66
                }
173
103
                return narrow_integral || multiply_may_overflow;
174
103
            }
175
0
            return false;
176
103
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_ISE_SE_EEEEbSI_
Line
Count
Source
123
128
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
128
            using Types2 = std::decay_t<decltype(types2)>;
125
128
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
128
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
128
                using FromFieldType = typename FromDataType::FieldType;
133
128
                using ToFieldType = typename ToDataType::FieldType;
134
128
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
128
                UInt32 from_scale = 0;
136
137
128
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
128
                    const auto* from_decimal_type =
139
128
                            check_and_get_data_type<FromDataType>(from_type.get());
140
128
                    from_precision =
141
128
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
128
                    from_scale = from_decimal_type->get_scale();
143
128
                }
144
145
128
                UInt32 to_max_digits = 0;
146
128
                UInt32 to_precision = 0;
147
128
                UInt32 to_scale = 0;
148
149
128
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
128
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
128
                    const auto* to_decimal_type =
153
128
                            check_and_get_data_type<ToDataType>(to_type.get());
154
128
                    to_precision = to_decimal_type->get_precision();
155
128
                    ToDataType::check_type_precision(to_precision);
156
157
128
                    to_scale = to_decimal_type->get_scale();
158
128
                    ToDataType::check_type_scale(to_scale);
159
128
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
128
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
128
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
128
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
128
                if (to_scale > from_scale) {
170
62
                    multiply_may_overflow &=
171
62
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
62
                }
173
128
                return narrow_integral || multiply_may_overflow;
174
128
            }
175
0
            return false;
176
128
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_29EEESE_EEEEbSI_
Line
Count
Source
123
397
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
397
            using Types2 = std::decay_t<decltype(types2)>;
125
397
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
397
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
397
                using FromFieldType = typename FromDataType::FieldType;
133
397
                using ToFieldType = typename ToDataType::FieldType;
134
397
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
397
                UInt32 from_scale = 0;
136
137
397
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
397
                    const auto* from_decimal_type =
139
397
                            check_and_get_data_type<FromDataType>(from_type.get());
140
397
                    from_precision =
141
397
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
397
                    from_scale = from_decimal_type->get_scale();
143
397
                }
144
145
397
                UInt32 to_max_digits = 0;
146
397
                UInt32 to_precision = 0;
147
397
                UInt32 to_scale = 0;
148
149
397
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
397
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
397
                    const auto* to_decimal_type =
153
397
                            check_and_get_data_type<ToDataType>(to_type.get());
154
397
                    to_precision = to_decimal_type->get_precision();
155
397
                    ToDataType::check_type_precision(to_precision);
156
157
397
                    to_scale = to_decimal_type->get_scale();
158
397
                    ToDataType::check_type_scale(to_scale);
159
397
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
397
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
397
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
397
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
397
                if (to_scale > from_scale) {
170
190
                    multiply_may_overflow &=
171
190
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
190
                }
173
397
                return narrow_integral || multiply_may_overflow;
174
397
            }
175
0
            return false;
176
397
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_20EEESE_EEEEbSI_
Line
Count
Source
123
197
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
197
            using Types2 = std::decay_t<decltype(types2)>;
125
197
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
197
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
197
                using FromFieldType = typename FromDataType::FieldType;
133
197
                using ToFieldType = typename ToDataType::FieldType;
134
197
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
197
                UInt32 from_scale = 0;
136
137
197
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
197
                    const auto* from_decimal_type =
139
197
                            check_and_get_data_type<FromDataType>(from_type.get());
140
197
                    from_precision =
141
197
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
197
                    from_scale = from_decimal_type->get_scale();
143
197
                }
144
145
197
                UInt32 to_max_digits = 0;
146
197
                UInt32 to_precision = 0;
147
197
                UInt32 to_scale = 0;
148
149
197
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
197
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
197
                    const auto* to_decimal_type =
153
197
                            check_and_get_data_type<ToDataType>(to_type.get());
154
197
                    to_precision = to_decimal_type->get_precision();
155
197
                    ToDataType::check_type_precision(to_precision);
156
157
197
                    to_scale = to_decimal_type->get_scale();
158
197
                    ToDataType::check_type_scale(to_scale);
159
197
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
197
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
197
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
197
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
197
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
197
                return narrow_integral || multiply_may_overflow;
174
197
            }
175
0
            return false;
176
197
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_30EEESE_EEEEbSI_
Line
Count
Source
123
4.29k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
4.29k
            using Types2 = std::decay_t<decltype(types2)>;
125
4.29k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
4.29k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
4.29k
                using FromFieldType = typename FromDataType::FieldType;
133
4.29k
                using ToFieldType = typename ToDataType::FieldType;
134
4.29k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
4.29k
                UInt32 from_scale = 0;
136
137
4.29k
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
4.29k
                    const auto* from_decimal_type =
139
4.29k
                            check_and_get_data_type<FromDataType>(from_type.get());
140
4.29k
                    from_precision =
141
4.29k
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
4.29k
                    from_scale = from_decimal_type->get_scale();
143
4.29k
                }
144
145
4.29k
                UInt32 to_max_digits = 0;
146
4.29k
                UInt32 to_precision = 0;
147
4.29k
                UInt32 to_scale = 0;
148
149
4.29k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
4.29k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
4.29k
                    const auto* to_decimal_type =
153
4.29k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
4.29k
                    to_precision = to_decimal_type->get_precision();
155
4.29k
                    ToDataType::check_type_precision(to_precision);
156
157
4.29k
                    to_scale = to_decimal_type->get_scale();
158
4.29k
                    ToDataType::check_type_scale(to_scale);
159
4.29k
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
4.29k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
4.29k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
4.29k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
4.29k
                if (to_scale > from_scale) {
170
134
                    multiply_may_overflow &=
171
134
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
134
                }
173
4.29k
                return narrow_integral || multiply_may_overflow;
174
4.29k
            }
175
0
            return false;
176
4.29k
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_35EEESE_EEEEbSI_
Line
Count
Source
123
296
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
296
            using Types2 = std::decay_t<decltype(types2)>;
125
296
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
296
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
296
                using FromFieldType = typename FromDataType::FieldType;
133
296
                using ToFieldType = typename ToDataType::FieldType;
134
296
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
296
                UInt32 from_scale = 0;
136
137
296
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
296
                    const auto* from_decimal_type =
139
296
                            check_and_get_data_type<FromDataType>(from_type.get());
140
296
                    from_precision =
141
296
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
296
                    from_scale = from_decimal_type->get_scale();
143
296
                }
144
145
296
                UInt32 to_max_digits = 0;
146
296
                UInt32 to_precision = 0;
147
296
                UInt32 to_scale = 0;
148
149
296
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
296
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
296
                    const auto* to_decimal_type =
153
296
                            check_and_get_data_type<ToDataType>(to_type.get());
154
296
                    to_precision = to_decimal_type->get_precision();
155
296
                    ToDataType::check_type_precision(to_precision);
156
157
296
                    to_scale = to_decimal_type->get_scale();
158
296
                    ToDataType::check_type_scale(to_scale);
159
296
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
296
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
296
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
296
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
296
                if (to_scale > from_scale) {
170
78
                    multiply_may_overflow &=
171
78
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
78
                }
173
296
                return narrow_integral || multiply_may_overflow;
174
296
            }
175
0
            return false;
176
296
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeDateESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeDateV2ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_18DataTypeDateTimeV2ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_22DataTypeDateTimeV2NanoESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_16DataTypeDateTimeESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeTimeV2ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_19DataTypeTimeStampTzESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv4ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv6ESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeStringESE_EEEEbSI_
Line
Count
Source
123
1.66k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
1.66k
            using Types2 = std::decay_t<decltype(types2)>;
125
1.66k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
1.66k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
1.66k
                return false;
130
1.66k
            }
131
1.66k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
1.66k
                using FromFieldType = typename FromDataType::FieldType;
133
1.66k
                using ToFieldType = typename ToDataType::FieldType;
134
1.66k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
1.66k
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
1.66k
                UInt32 to_max_digits = 0;
146
1.66k
                UInt32 to_precision = 0;
147
1.66k
                UInt32 to_scale = 0;
148
149
1.66k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
1.66k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
1.66k
                    const auto* to_decimal_type =
153
1.66k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
1.66k
                    to_precision = to_decimal_type->get_precision();
155
1.66k
                    ToDataType::check_type_precision(to_precision);
156
157
1.66k
                    to_scale = to_decimal_type->get_scale();
158
1.66k
                    ToDataType::check_type_scale(to_scale);
159
1.66k
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
1.66k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
1.66k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
1.66k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
1.66k
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
1.66k
                return narrow_integral || multiply_may_overflow;
174
1.66k
            }
175
0
            return false;
176
1.66k
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_2EEESE_EEEEbSI_
Line
Count
Source
123
7
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7
            using Types2 = std::decay_t<decltype(types2)>;
125
7
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
7
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
7
                using FromFieldType = typename FromDataType::FieldType;
133
7
                using ToFieldType = typename ToDataType::FieldType;
134
7
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
7
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
7
                UInt32 to_max_digits = 0;
146
7
                UInt32 to_precision = 0;
147
7
                UInt32 to_scale = 0;
148
149
7
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
7
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
7
                    const auto* to_decimal_type =
153
7
                            check_and_get_data_type<ToDataType>(to_type.get());
154
7
                    to_precision = to_decimal_type->get_precision();
155
7
                    ToDataType::check_type_precision(to_precision);
156
157
7
                    to_scale = to_decimal_type->get_scale();
158
7
                    ToDataType::check_type_scale(to_scale);
159
7
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
7
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
7
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
7
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
7
                if (to_scale > from_scale) {
170
6
                    multiply_may_overflow &=
171
6
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
6
                }
173
7
                return narrow_integral || multiply_may_overflow;
174
7
            }
175
0
            return false;
176
7
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_3EEESE_EEEEbSI_
Line
Count
Source
123
29
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
29
            using Types2 = std::decay_t<decltype(types2)>;
125
29
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
29
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
29
                using FromFieldType = typename FromDataType::FieldType;
133
29
                using ToFieldType = typename ToDataType::FieldType;
134
29
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
29
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
29
                UInt32 to_max_digits = 0;
146
29
                UInt32 to_precision = 0;
147
29
                UInt32 to_scale = 0;
148
149
29
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
29
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
29
                    const auto* to_decimal_type =
153
29
                            check_and_get_data_type<ToDataType>(to_type.get());
154
29
                    to_precision = to_decimal_type->get_precision();
155
29
                    ToDataType::check_type_precision(to_precision);
156
157
29
                    to_scale = to_decimal_type->get_scale();
158
29
                    ToDataType::check_type_scale(to_scale);
159
29
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
29
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
29
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
29
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
29
                if (to_scale > from_scale) {
170
18
                    multiply_may_overflow &=
171
18
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
18
                }
173
29
                return narrow_integral || multiply_may_overflow;
174
29
            }
175
0
            return false;
176
29
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_4EEESE_EEEEbSI_
Line
Count
Source
123
29
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
29
            using Types2 = std::decay_t<decltype(types2)>;
125
29
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
29
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
29
                using FromFieldType = typename FromDataType::FieldType;
133
29
                using ToFieldType = typename ToDataType::FieldType;
134
29
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
29
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
29
                UInt32 to_max_digits = 0;
146
29
                UInt32 to_precision = 0;
147
29
                UInt32 to_scale = 0;
148
149
29
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
29
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
29
                    const auto* to_decimal_type =
153
29
                            check_and_get_data_type<ToDataType>(to_type.get());
154
29
                    to_precision = to_decimal_type->get_precision();
155
29
                    ToDataType::check_type_precision(to_precision);
156
157
29
                    to_scale = to_decimal_type->get_scale();
158
29
                    ToDataType::check_type_scale(to_scale);
159
29
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
29
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
29
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
29
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
29
                if (to_scale > from_scale) {
170
18
                    multiply_may_overflow &=
171
18
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
18
                }
173
29
                return narrow_integral || multiply_may_overflow;
174
29
            }
175
0
            return false;
176
29
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_5EEESE_EEEEbSI_
Line
Count
Source
123
44
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
44
            using Types2 = std::decay_t<decltype(types2)>;
125
44
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
44
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
44
                using FromFieldType = typename FromDataType::FieldType;
133
44
                using ToFieldType = typename ToDataType::FieldType;
134
44
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
44
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
44
                UInt32 to_max_digits = 0;
146
44
                UInt32 to_precision = 0;
147
44
                UInt32 to_scale = 0;
148
149
44
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
44
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
44
                    const auto* to_decimal_type =
153
44
                            check_and_get_data_type<ToDataType>(to_type.get());
154
44
                    to_precision = to_decimal_type->get_precision();
155
44
                    ToDataType::check_type_precision(to_precision);
156
157
44
                    to_scale = to_decimal_type->get_scale();
158
44
                    ToDataType::check_type_scale(to_scale);
159
44
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
44
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
44
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
44
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
44
                if (to_scale > from_scale) {
170
28
                    multiply_may_overflow &=
171
28
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
28
                }
173
44
                return narrow_integral || multiply_may_overflow;
174
44
            }
175
0
            return false;
176
44
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_6EEESE_EEEEbSI_
Line
Count
Source
123
49
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
49
            using Types2 = std::decay_t<decltype(types2)>;
125
49
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
49
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
49
                using FromFieldType = typename FromDataType::FieldType;
133
49
                using ToFieldType = typename ToDataType::FieldType;
134
49
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
49
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
49
                UInt32 to_max_digits = 0;
146
49
                UInt32 to_precision = 0;
147
49
                UInt32 to_scale = 0;
148
149
49
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
49
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
49
                    const auto* to_decimal_type =
153
49
                            check_and_get_data_type<ToDataType>(to_type.get());
154
49
                    to_precision = to_decimal_type->get_precision();
155
49
                    ToDataType::check_type_precision(to_precision);
156
157
49
                    to_scale = to_decimal_type->get_scale();
158
49
                    ToDataType::check_type_scale(to_scale);
159
49
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
49
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
49
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
49
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
49
                if (to_scale > from_scale) {
170
28
                    multiply_may_overflow &=
171
28
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
28
                }
173
49
                return narrow_integral || multiply_may_overflow;
174
49
            }
175
0
            return false;
176
49
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_7EEESE_EEEEbSI_
Line
Count
Source
123
49
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
49
            using Types2 = std::decay_t<decltype(types2)>;
125
49
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
49
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
49
                using FromFieldType = typename FromDataType::FieldType;
133
49
                using ToFieldType = typename ToDataType::FieldType;
134
49
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
49
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
49
                UInt32 to_max_digits = 0;
146
49
                UInt32 to_precision = 0;
147
49
                UInt32 to_scale = 0;
148
149
49
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
49
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
49
                    const auto* to_decimal_type =
153
49
                            check_and_get_data_type<ToDataType>(to_type.get());
154
49
                    to_precision = to_decimal_type->get_precision();
155
49
                    ToDataType::check_type_precision(to_precision);
156
157
49
                    to_scale = to_decimal_type->get_scale();
158
49
                    ToDataType::check_type_scale(to_scale);
159
49
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
49
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
49
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
49
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
49
                if (to_scale > from_scale) {
170
28
                    multiply_may_overflow &=
171
28
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
28
                }
173
49
                return narrow_integral || multiply_may_overflow;
174
49
            }
175
0
            return false;
176
49
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_8EEESE_EEEEbSI_
Line
Count
Source
123
99
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
99
            using Types2 = std::decay_t<decltype(types2)>;
125
99
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
99
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
99
                using FromFieldType = typename FromDataType::FieldType;
133
99
                using ToFieldType = typename ToDataType::FieldType;
134
99
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
99
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
99
                UInt32 to_max_digits = 0;
146
99
                UInt32 to_precision = 0;
147
99
                UInt32 to_scale = 0;
148
149
99
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
99
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
99
                    const auto* to_decimal_type =
153
99
                            check_and_get_data_type<ToDataType>(to_type.get());
154
99
                    to_precision = to_decimal_type->get_precision();
155
99
                    ToDataType::check_type_precision(to_precision);
156
157
99
                    to_scale = to_decimal_type->get_scale();
158
99
                    ToDataType::check_type_scale(to_scale);
159
99
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
99
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
99
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
99
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
99
                if (to_scale > from_scale) {
170
58
                    multiply_may_overflow &=
171
58
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
58
                }
173
99
                return narrow_integral || multiply_may_overflow;
174
99
            }
175
0
            return false;
176
99
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_9EEESE_EEEEbSI_
Line
Count
Source
123
99
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
99
            using Types2 = std::decay_t<decltype(types2)>;
125
99
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
99
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
99
                using FromFieldType = typename FromDataType::FieldType;
133
99
                using ToFieldType = typename ToDataType::FieldType;
134
99
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
99
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
99
                UInt32 to_max_digits = 0;
146
99
                UInt32 to_precision = 0;
147
99
                UInt32 to_scale = 0;
148
149
99
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
99
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
99
                    const auto* to_decimal_type =
153
99
                            check_and_get_data_type<ToDataType>(to_type.get());
154
99
                    to_precision = to_decimal_type->get_precision();
155
99
                    ToDataType::check_type_precision(to_precision);
156
157
99
                    to_scale = to_decimal_type->get_scale();
158
99
                    ToDataType::check_type_scale(to_scale);
159
99
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
99
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
99
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
99
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
99
                if (to_scale > from_scale) {
170
66
                    multiply_may_overflow &=
171
66
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
66
                }
173
99
                return narrow_integral || multiply_may_overflow;
174
99
            }
175
0
            return false;
176
99
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_28EEESE_EEEEbSI_
Line
Count
Source
123
180
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
180
            using Types2 = std::decay_t<decltype(types2)>;
125
180
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
180
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
180
                using FromFieldType = typename FromDataType::FieldType;
133
180
                using ToFieldType = typename ToDataType::FieldType;
134
180
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
180
                UInt32 from_scale = 0;
136
137
180
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
180
                    const auto* from_decimal_type =
139
180
                            check_and_get_data_type<FromDataType>(from_type.get());
140
180
                    from_precision =
141
180
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
180
                    from_scale = from_decimal_type->get_scale();
143
180
                }
144
145
180
                UInt32 to_max_digits = 0;
146
180
                UInt32 to_precision = 0;
147
180
                UInt32 to_scale = 0;
148
149
180
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
180
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
180
                    const auto* to_decimal_type =
153
180
                            check_and_get_data_type<ToDataType>(to_type.get());
154
180
                    to_precision = to_decimal_type->get_precision();
155
180
                    ToDataType::check_type_precision(to_precision);
156
157
180
                    to_scale = to_decimal_type->get_scale();
158
180
                    ToDataType::check_type_scale(to_scale);
159
180
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
180
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
180
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
180
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
180
                if (to_scale > from_scale) {
170
105
                    multiply_may_overflow &=
171
105
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
105
                }
173
180
                return narrow_integral || multiply_may_overflow;
174
180
            }
175
0
            return false;
176
180
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_ISE_SE_EEEEbSI_
Line
Count
Source
123
9.58k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
9.58k
            using Types2 = std::decay_t<decltype(types2)>;
125
9.58k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
9.58k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
9.58k
                using FromFieldType = typename FromDataType::FieldType;
133
9.58k
                using ToFieldType = typename ToDataType::FieldType;
134
9.58k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
9.58k
                UInt32 from_scale = 0;
136
137
9.58k
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
9.58k
                    const auto* from_decimal_type =
139
9.58k
                            check_and_get_data_type<FromDataType>(from_type.get());
140
9.58k
                    from_precision =
141
9.58k
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
9.58k
                    from_scale = from_decimal_type->get_scale();
143
9.58k
                }
144
145
9.58k
                UInt32 to_max_digits = 0;
146
9.58k
                UInt32 to_precision = 0;
147
9.58k
                UInt32 to_scale = 0;
148
149
9.58k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
9.58k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
9.58k
                    const auto* to_decimal_type =
153
9.58k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
9.58k
                    to_precision = to_decimal_type->get_precision();
155
9.58k
                    ToDataType::check_type_precision(to_precision);
156
157
9.58k
                    to_scale = to_decimal_type->get_scale();
158
9.58k
                    ToDataType::check_type_scale(to_scale);
159
9.58k
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
9.58k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
9.58k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
9.58k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
9.58k
                if (to_scale > from_scale) {
170
152
                    multiply_may_overflow &=
171
152
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
152
                }
173
9.58k
                return narrow_integral || multiply_may_overflow;
174
9.58k
            }
175
0
            return false;
176
9.58k
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_20EEESE_EEEEbSI_
Line
Count
Source
123
322
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
322
            using Types2 = std::decay_t<decltype(types2)>;
125
322
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
322
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
322
                using FromFieldType = typename FromDataType::FieldType;
133
322
                using ToFieldType = typename ToDataType::FieldType;
134
322
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
322
                UInt32 from_scale = 0;
136
137
322
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
322
                    const auto* from_decimal_type =
139
322
                            check_and_get_data_type<FromDataType>(from_type.get());
140
322
                    from_precision =
141
322
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
322
                    from_scale = from_decimal_type->get_scale();
143
322
                }
144
145
322
                UInt32 to_max_digits = 0;
146
322
                UInt32 to_precision = 0;
147
322
                UInt32 to_scale = 0;
148
149
322
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
322
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
322
                    const auto* to_decimal_type =
153
322
                            check_and_get_data_type<ToDataType>(to_type.get());
154
322
                    to_precision = to_decimal_type->get_precision();
155
322
                    ToDataType::check_type_precision(to_precision);
156
157
322
                    to_scale = to_decimal_type->get_scale();
158
322
                    ToDataType::check_type_scale(to_scale);
159
322
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
322
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
322
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
322
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
322
                if (to_scale > from_scale) {
170
50
                    multiply_may_overflow &=
171
50
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
50
                }
173
322
                return narrow_integral || multiply_may_overflow;
174
322
            }
175
0
            return false;
176
322
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_30EEESE_EEEEbSI_
Line
Count
Source
123
10.5k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
10.5k
            using Types2 = std::decay_t<decltype(types2)>;
125
10.5k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
10.5k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
10.5k
                using FromFieldType = typename FromDataType::FieldType;
133
10.5k
                using ToFieldType = typename ToDataType::FieldType;
134
10.5k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
10.5k
                UInt32 from_scale = 0;
136
137
10.5k
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
10.5k
                    const auto* from_decimal_type =
139
10.5k
                            check_and_get_data_type<FromDataType>(from_type.get());
140
10.5k
                    from_precision =
141
10.5k
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
10.5k
                    from_scale = from_decimal_type->get_scale();
143
10.5k
                }
144
145
10.5k
                UInt32 to_max_digits = 0;
146
10.5k
                UInt32 to_precision = 0;
147
10.5k
                UInt32 to_scale = 0;
148
149
10.5k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
10.5k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
10.5k
                    const auto* to_decimal_type =
153
10.5k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
10.5k
                    to_precision = to_decimal_type->get_precision();
155
10.5k
                    ToDataType::check_type_precision(to_precision);
156
157
10.5k
                    to_scale = to_decimal_type->get_scale();
158
10.5k
                    ToDataType::check_type_scale(to_scale);
159
10.5k
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
10.5k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
10.5k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
10.5k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
10.5k
                if (to_scale > from_scale) {
170
136
                    multiply_may_overflow &=
171
136
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
136
                }
173
10.5k
                return narrow_integral || multiply_may_overflow;
174
10.5k
            }
175
0
            return false;
176
10.5k
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_35EEESE_EEEEbSI_
Line
Count
Source
123
392
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
392
            using Types2 = std::decay_t<decltype(types2)>;
125
392
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
392
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
392
                using FromFieldType = typename FromDataType::FieldType;
133
392
                using ToFieldType = typename ToDataType::FieldType;
134
392
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
392
                UInt32 from_scale = 0;
136
137
392
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
392
                    const auto* from_decimal_type =
139
392
                            check_and_get_data_type<FromDataType>(from_type.get());
140
392
                    from_precision =
141
392
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
392
                    from_scale = from_decimal_type->get_scale();
143
392
                }
144
145
392
                UInt32 to_max_digits = 0;
146
392
                UInt32 to_precision = 0;
147
392
                UInt32 to_scale = 0;
148
149
392
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
392
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
392
                    const auto* to_decimal_type =
153
392
                            check_and_get_data_type<ToDataType>(to_type.get());
154
392
                    to_precision = to_decimal_type->get_precision();
155
392
                    ToDataType::check_type_precision(to_precision);
156
157
392
                    to_scale = to_decimal_type->get_scale();
158
392
                    ToDataType::check_type_scale(to_scale);
159
392
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
392
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
392
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
392
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
392
                if (to_scale > from_scale) {
170
136
                    multiply_may_overflow &=
171
136
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
136
                }
173
392
                return narrow_integral || multiply_may_overflow;
174
392
            }
175
0
            return false;
176
392
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeDateESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeDateV2ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_18DataTypeDateTimeV2ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_22DataTypeDateTimeV2NanoESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_16DataTypeDateTimeESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeTimeV2ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_19DataTypeTimeStampTzESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv4ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv6ESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeStringESE_EEEEbSI_
Line
Count
Source
123
1.45k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
1.45k
            using Types2 = std::decay_t<decltype(types2)>;
125
1.45k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
1.45k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
1.45k
                return false;
130
1.45k
            }
131
1.45k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
1.45k
                using FromFieldType = typename FromDataType::FieldType;
133
1.45k
                using ToFieldType = typename ToDataType::FieldType;
134
1.45k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
1.45k
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
1.45k
                UInt32 to_max_digits = 0;
146
1.45k
                UInt32 to_precision = 0;
147
1.45k
                UInt32 to_scale = 0;
148
149
1.45k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
1.45k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
1.45k
                    const auto* to_decimal_type =
153
1.45k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
1.45k
                    to_precision = to_decimal_type->get_precision();
155
1.45k
                    ToDataType::check_type_precision(to_precision);
156
157
1.45k
                    to_scale = to_decimal_type->get_scale();
158
1.45k
                    ToDataType::check_type_scale(to_scale);
159
1.45k
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
1.45k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
1.45k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
1.45k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
1.45k
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
1.45k
                return narrow_integral || multiply_may_overflow;
174
1.45k
            }
175
0
            return false;
176
1.45k
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_2EEESE_EEEEbSI_
Line
Count
Source
123
4
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
4
            using Types2 = std::decay_t<decltype(types2)>;
125
4
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
4
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
4
                using FromFieldType = typename FromDataType::FieldType;
133
4
                using ToFieldType = typename ToDataType::FieldType;
134
4
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
4
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
4
                UInt32 to_max_digits = 0;
146
4
                UInt32 to_precision = 0;
147
4
                UInt32 to_scale = 0;
148
149
4
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
4
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
4
                    const auto* to_decimal_type =
153
4
                            check_and_get_data_type<ToDataType>(to_type.get());
154
4
                    to_precision = to_decimal_type->get_precision();
155
4
                    ToDataType::check_type_precision(to_precision);
156
157
4
                    to_scale = to_decimal_type->get_scale();
158
4
                    ToDataType::check_type_scale(to_scale);
159
4
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
4
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
4
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
4
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
4
                if (to_scale > from_scale) {
170
4
                    multiply_may_overflow &=
171
4
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
4
                }
173
4
                return narrow_integral || multiply_may_overflow;
174
4
            }
175
0
            return false;
176
4
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_3EEESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_4EEESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_5EEESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_6EEESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_7EEESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_8EEESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_9EEESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_28EEESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_29EEESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_ISE_SE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_30EEESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_35EEESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeDateESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeDateV2ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_18DataTypeDateTimeV2ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_22DataTypeDateTimeV2NanoESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_16DataTypeDateTimeESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeTimeV2ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_19DataTypeTimeStampTzESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv4ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv6ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeStringESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_2EEESE_EEEEbSI_
Line
Count
Source
123
7
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7
            using Types2 = std::decay_t<decltype(types2)>;
125
7
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
7
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
7
                using FromFieldType = typename FromDataType::FieldType;
133
7
                using ToFieldType = typename ToDataType::FieldType;
134
7
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
7
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
7
                UInt32 to_max_digits = 0;
146
7
                UInt32 to_precision = 0;
147
7
                UInt32 to_scale = 0;
148
149
7
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
7
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
7
                    const auto* to_decimal_type =
153
7
                            check_and_get_data_type<ToDataType>(to_type.get());
154
7
                    to_precision = to_decimal_type->get_precision();
155
7
                    ToDataType::check_type_precision(to_precision);
156
157
7
                    to_scale = to_decimal_type->get_scale();
158
7
                    ToDataType::check_type_scale(to_scale);
159
7
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
7
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
7
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
7
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
7
                if (to_scale > from_scale) {
170
6
                    multiply_may_overflow &=
171
6
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
6
                }
173
7
                return narrow_integral || multiply_may_overflow;
174
7
            }
175
0
            return false;
176
7
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_3EEESE_EEEEbSI_
Line
Count
Source
123
29
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
29
            using Types2 = std::decay_t<decltype(types2)>;
125
29
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
29
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
29
                using FromFieldType = typename FromDataType::FieldType;
133
29
                using ToFieldType = typename ToDataType::FieldType;
134
29
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
29
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
29
                UInt32 to_max_digits = 0;
146
29
                UInt32 to_precision = 0;
147
29
                UInt32 to_scale = 0;
148
149
29
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
29
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
29
                    const auto* to_decimal_type =
153
29
                            check_and_get_data_type<ToDataType>(to_type.get());
154
29
                    to_precision = to_decimal_type->get_precision();
155
29
                    ToDataType::check_type_precision(to_precision);
156
157
29
                    to_scale = to_decimal_type->get_scale();
158
29
                    ToDataType::check_type_scale(to_scale);
159
29
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
29
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
29
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
29
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
29
                if (to_scale > from_scale) {
170
18
                    multiply_may_overflow &=
171
18
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
18
                }
173
29
                return narrow_integral || multiply_may_overflow;
174
29
            }
175
0
            return false;
176
29
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_4EEESE_EEEEbSI_
Line
Count
Source
123
29
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
29
            using Types2 = std::decay_t<decltype(types2)>;
125
29
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
29
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
29
                using FromFieldType = typename FromDataType::FieldType;
133
29
                using ToFieldType = typename ToDataType::FieldType;
134
29
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
29
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
29
                UInt32 to_max_digits = 0;
146
29
                UInt32 to_precision = 0;
147
29
                UInt32 to_scale = 0;
148
149
29
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
29
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
29
                    const auto* to_decimal_type =
153
29
                            check_and_get_data_type<ToDataType>(to_type.get());
154
29
                    to_precision = to_decimal_type->get_precision();
155
29
                    ToDataType::check_type_precision(to_precision);
156
157
29
                    to_scale = to_decimal_type->get_scale();
158
29
                    ToDataType::check_type_scale(to_scale);
159
29
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
29
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
29
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
29
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
29
                if (to_scale > from_scale) {
170
18
                    multiply_may_overflow &=
171
18
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
18
                }
173
29
                return narrow_integral || multiply_may_overflow;
174
29
            }
175
0
            return false;
176
29
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_5EEESE_EEEEbSI_
Line
Count
Source
123
47
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
47
            using Types2 = std::decay_t<decltype(types2)>;
125
47
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
47
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
47
                using FromFieldType = typename FromDataType::FieldType;
133
47
                using ToFieldType = typename ToDataType::FieldType;
134
47
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
47
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
47
                UInt32 to_max_digits = 0;
146
47
                UInt32 to_precision = 0;
147
47
                UInt32 to_scale = 0;
148
149
47
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
47
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
47
                    const auto* to_decimal_type =
153
47
                            check_and_get_data_type<ToDataType>(to_type.get());
154
47
                    to_precision = to_decimal_type->get_precision();
155
47
                    ToDataType::check_type_precision(to_precision);
156
157
47
                    to_scale = to_decimal_type->get_scale();
158
47
                    ToDataType::check_type_scale(to_scale);
159
47
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
47
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
47
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
47
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
47
                if (to_scale > from_scale) {
170
36
                    multiply_may_overflow &=
171
36
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
36
                }
173
47
                return narrow_integral || multiply_may_overflow;
174
47
            }
175
0
            return false;
176
47
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_6EEESE_EEEEbSI_
Line
Count
Source
123
2.20k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2.20k
            using Types2 = std::decay_t<decltype(types2)>;
125
2.20k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
2.20k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
2.20k
                using FromFieldType = typename FromDataType::FieldType;
133
2.20k
                using ToFieldType = typename ToDataType::FieldType;
134
2.20k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
2.20k
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
2.20k
                UInt32 to_max_digits = 0;
146
2.20k
                UInt32 to_precision = 0;
147
2.20k
                UInt32 to_scale = 0;
148
149
2.20k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
2.20k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
2.20k
                    const auto* to_decimal_type =
153
2.20k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
2.20k
                    to_precision = to_decimal_type->get_precision();
155
2.20k
                    ToDataType::check_type_precision(to_precision);
156
157
2.20k
                    to_scale = to_decimal_type->get_scale();
158
2.20k
                    ToDataType::check_type_scale(to_scale);
159
2.20k
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
2.20k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
2.20k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
2.20k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
2.20k
                if (to_scale > from_scale) {
170
137
                    multiply_may_overflow &=
171
137
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
137
                }
173
2.20k
                return narrow_integral || multiply_may_overflow;
174
2.20k
            }
175
0
            return false;
176
2.20k
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_7EEESE_EEEEbSI_
Line
Count
Source
123
49
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
49
            using Types2 = std::decay_t<decltype(types2)>;
125
49
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
49
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
49
                using FromFieldType = typename FromDataType::FieldType;
133
49
                using ToFieldType = typename ToDataType::FieldType;
134
49
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
49
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
49
                UInt32 to_max_digits = 0;
146
49
                UInt32 to_precision = 0;
147
49
                UInt32 to_scale = 0;
148
149
49
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
49
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
49
                    const auto* to_decimal_type =
153
49
                            check_and_get_data_type<ToDataType>(to_type.get());
154
49
                    to_precision = to_decimal_type->get_precision();
155
49
                    ToDataType::check_type_precision(to_precision);
156
157
49
                    to_scale = to_decimal_type->get_scale();
158
49
                    ToDataType::check_type_scale(to_scale);
159
49
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
49
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
49
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
49
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
49
                if (to_scale > from_scale) {
170
28
                    multiply_may_overflow &=
171
28
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
28
                }
173
49
                return narrow_integral || multiply_may_overflow;
174
49
            }
175
0
            return false;
176
49
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_8EEESE_EEEEbSI_
Line
Count
Source
123
107
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
107
            using Types2 = std::decay_t<decltype(types2)>;
125
107
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
107
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
107
                using FromFieldType = typename FromDataType::FieldType;
133
107
                using ToFieldType = typename ToDataType::FieldType;
134
107
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
107
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
107
                UInt32 to_max_digits = 0;
146
107
                UInt32 to_precision = 0;
147
107
                UInt32 to_scale = 0;
148
149
107
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
107
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
107
                    const auto* to_decimal_type =
153
107
                            check_and_get_data_type<ToDataType>(to_type.get());
154
107
                    to_precision = to_decimal_type->get_precision();
155
107
                    ToDataType::check_type_precision(to_precision);
156
157
107
                    to_scale = to_decimal_type->get_scale();
158
107
                    ToDataType::check_type_scale(to_scale);
159
107
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
107
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
107
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
107
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
107
                if (to_scale > from_scale) {
170
66
                    multiply_may_overflow &=
171
66
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
66
                }
173
107
                return narrow_integral || multiply_may_overflow;
174
107
            }
175
0
            return false;
176
107
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_9EEESE_EEEEbSI_
Line
Count
Source
123
91
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
91
            using Types2 = std::decay_t<decltype(types2)>;
125
91
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
91
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
91
                using FromFieldType = typename FromDataType::FieldType;
133
91
                using ToFieldType = typename ToDataType::FieldType;
134
91
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
91
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
91
                UInt32 to_max_digits = 0;
146
91
                UInt32 to_precision = 0;
147
91
                UInt32 to_scale = 0;
148
149
91
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
91
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
91
                    const auto* to_decimal_type =
153
91
                            check_and_get_data_type<ToDataType>(to_type.get());
154
91
                    to_precision = to_decimal_type->get_precision();
155
91
                    ToDataType::check_type_precision(to_precision);
156
157
91
                    to_scale = to_decimal_type->get_scale();
158
91
                    ToDataType::check_type_scale(to_scale);
159
91
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
91
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
91
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
91
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
91
                if (to_scale > from_scale) {
170
58
                    multiply_may_overflow &=
171
58
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
58
                }
173
91
                return narrow_integral || multiply_may_overflow;
174
91
            }
175
0
            return false;
176
91
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_28EEESE_EEEEbSI_
Line
Count
Source
123
168
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
168
            using Types2 = std::decay_t<decltype(types2)>;
125
168
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
168
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
168
                using FromFieldType = typename FromDataType::FieldType;
133
168
                using ToFieldType = typename ToDataType::FieldType;
134
168
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
168
                UInt32 from_scale = 0;
136
137
168
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
168
                    const auto* from_decimal_type =
139
168
                            check_and_get_data_type<FromDataType>(from_type.get());
140
168
                    from_precision =
141
168
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
168
                    from_scale = from_decimal_type->get_scale();
143
168
                }
144
145
168
                UInt32 to_max_digits = 0;
146
168
                UInt32 to_precision = 0;
147
168
                UInt32 to_scale = 0;
148
149
168
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
168
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
168
                    const auto* to_decimal_type =
153
168
                            check_and_get_data_type<ToDataType>(to_type.get());
154
168
                    to_precision = to_decimal_type->get_precision();
155
168
                    ToDataType::check_type_precision(to_precision);
156
157
168
                    to_scale = to_decimal_type->get_scale();
158
168
                    ToDataType::check_type_scale(to_scale);
159
168
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
168
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
168
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
168
                if (to_scale > from_scale) {
170
106
                    multiply_may_overflow &=
171
106
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
106
                }
173
168
                return narrow_integral || multiply_may_overflow;
174
168
            }
175
0
            return false;
176
168
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_29EEESE_EEEEbSI_
Line
Count
Source
123
824
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
824
            using Types2 = std::decay_t<decltype(types2)>;
125
824
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
824
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
824
                using FromFieldType = typename FromDataType::FieldType;
133
824
                using ToFieldType = typename ToDataType::FieldType;
134
824
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
824
                UInt32 from_scale = 0;
136
137
824
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
824
                    const auto* from_decimal_type =
139
824
                            check_and_get_data_type<FromDataType>(from_type.get());
140
824
                    from_precision =
141
824
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
824
                    from_scale = from_decimal_type->get_scale();
143
824
                }
144
145
824
                UInt32 to_max_digits = 0;
146
824
                UInt32 to_precision = 0;
147
824
                UInt32 to_scale = 0;
148
149
824
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
824
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
824
                    const auto* to_decimal_type =
153
824
                            check_and_get_data_type<ToDataType>(to_type.get());
154
824
                    to_precision = to_decimal_type->get_precision();
155
824
                    ToDataType::check_type_precision(to_precision);
156
157
824
                    to_scale = to_decimal_type->get_scale();
158
824
                    ToDataType::check_type_scale(to_scale);
159
824
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
824
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
824
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
824
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
824
                if (to_scale > from_scale) {
170
159
                    multiply_may_overflow &=
171
159
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
159
                }
173
824
                return narrow_integral || multiply_may_overflow;
174
824
            }
175
0
            return false;
176
824
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_20EEESE_EEEEbSI_
Line
Count
Source
123
249
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
249
            using Types2 = std::decay_t<decltype(types2)>;
125
249
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
249
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
249
                using FromFieldType = typename FromDataType::FieldType;
133
249
                using ToFieldType = typename ToDataType::FieldType;
134
249
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
249
                UInt32 from_scale = 0;
136
137
249
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
249
                    const auto* from_decimal_type =
139
249
                            check_and_get_data_type<FromDataType>(from_type.get());
140
249
                    from_precision =
141
249
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
249
                    from_scale = from_decimal_type->get_scale();
143
249
                }
144
145
249
                UInt32 to_max_digits = 0;
146
249
                UInt32 to_precision = 0;
147
249
                UInt32 to_scale = 0;
148
149
249
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
249
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
249
                    const auto* to_decimal_type =
153
249
                            check_and_get_data_type<ToDataType>(to_type.get());
154
249
                    to_precision = to_decimal_type->get_precision();
155
249
                    ToDataType::check_type_precision(to_precision);
156
157
249
                    to_scale = to_decimal_type->get_scale();
158
249
                    ToDataType::check_type_scale(to_scale);
159
249
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
249
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
249
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
249
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
249
                if (to_scale > from_scale) {
170
68
                    multiply_may_overflow &=
171
68
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
68
                }
173
249
                return narrow_integral || multiply_may_overflow;
174
249
            }
175
0
            return false;
176
249
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_ISE_SE_EEEEbSI_
Line
Count
Source
123
1.64k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
1.64k
            using Types2 = std::decay_t<decltype(types2)>;
125
1.64k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
1.64k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
1.64k
                using FromFieldType = typename FromDataType::FieldType;
133
1.64k
                using ToFieldType = typename ToDataType::FieldType;
134
1.64k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
1.64k
                UInt32 from_scale = 0;
136
137
1.64k
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
1.64k
                    const auto* from_decimal_type =
139
1.64k
                            check_and_get_data_type<FromDataType>(from_type.get());
140
1.64k
                    from_precision =
141
1.64k
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
1.64k
                    from_scale = from_decimal_type->get_scale();
143
1.64k
                }
144
145
1.64k
                UInt32 to_max_digits = 0;
146
1.64k
                UInt32 to_precision = 0;
147
1.64k
                UInt32 to_scale = 0;
148
149
1.64k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
1.64k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
1.64k
                    const auto* to_decimal_type =
153
1.64k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
1.64k
                    to_precision = to_decimal_type->get_precision();
155
1.64k
                    ToDataType::check_type_precision(to_precision);
156
157
1.64k
                    to_scale = to_decimal_type->get_scale();
158
1.64k
                    ToDataType::check_type_scale(to_scale);
159
1.64k
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
1.64k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
1.64k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
1.64k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
1.64k
                if (to_scale > from_scale) {
170
152
                    multiply_may_overflow &=
171
152
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
152
                }
173
1.64k
                return narrow_integral || multiply_may_overflow;
174
1.64k
            }
175
0
            return false;
176
1.64k
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_35EEESE_EEEEbSI_
Line
Count
Source
123
381
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
381
            using Types2 = std::decay_t<decltype(types2)>;
125
381
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
381
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
381
                using FromFieldType = typename FromDataType::FieldType;
133
381
                using ToFieldType = typename ToDataType::FieldType;
134
381
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
381
                UInt32 from_scale = 0;
136
137
381
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
381
                    const auto* from_decimal_type =
139
381
                            check_and_get_data_type<FromDataType>(from_type.get());
140
381
                    from_precision =
141
381
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
381
                    from_scale = from_decimal_type->get_scale();
143
381
                }
144
145
381
                UInt32 to_max_digits = 0;
146
381
                UInt32 to_precision = 0;
147
381
                UInt32 to_scale = 0;
148
149
381
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
381
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
381
                    const auto* to_decimal_type =
153
381
                            check_and_get_data_type<ToDataType>(to_type.get());
154
381
                    to_precision = to_decimal_type->get_precision();
155
381
                    ToDataType::check_type_precision(to_precision);
156
157
381
                    to_scale = to_decimal_type->get_scale();
158
381
                    ToDataType::check_type_scale(to_scale);
159
381
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
381
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
381
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
381
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
381
                if (to_scale > from_scale) {
170
136
                    multiply_may_overflow &=
171
136
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
136
                }
173
381
                return narrow_integral || multiply_may_overflow;
174
381
            }
175
0
            return false;
176
381
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeDateESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeDateV2ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_18DataTypeDateTimeV2ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_22DataTypeDateTimeV2NanoESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_16DataTypeDateTimeESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeTimeV2ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_19DataTypeTimeStampTzESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv4ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv6ESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeStringESE_EEEEbSI_
Line
Count
Source
123
1.72k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
1.72k
            using Types2 = std::decay_t<decltype(types2)>;
125
1.72k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
1.72k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
1.72k
                return false;
130
1.72k
            }
131
1.72k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
1.72k
                using FromFieldType = typename FromDataType::FieldType;
133
1.72k
                using ToFieldType = typename ToDataType::FieldType;
134
1.72k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
1.72k
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
1.72k
                UInt32 to_max_digits = 0;
146
1.72k
                UInt32 to_precision = 0;
147
1.72k
                UInt32 to_scale = 0;
148
149
1.72k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
1.72k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
1.72k
                    const auto* to_decimal_type =
153
1.72k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
1.72k
                    to_precision = to_decimal_type->get_precision();
155
1.72k
                    ToDataType::check_type_precision(to_precision);
156
157
1.72k
                    to_scale = to_decimal_type->get_scale();
158
1.72k
                    ToDataType::check_type_scale(to_scale);
159
1.72k
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
1.72k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
1.72k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
1.72k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
1.72k
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
1.72k
                return narrow_integral || multiply_may_overflow;
174
1.72k
            }
175
0
            return false;
176
1.72k
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_2EEESE_EEEEbSI_
Line
Count
Source
123
7
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7
            using Types2 = std::decay_t<decltype(types2)>;
125
7
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
7
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
7
                using FromFieldType = typename FromDataType::FieldType;
133
7
                using ToFieldType = typename ToDataType::FieldType;
134
7
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
7
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
7
                UInt32 to_max_digits = 0;
146
7
                UInt32 to_precision = 0;
147
7
                UInt32 to_scale = 0;
148
149
7
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
7
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
7
                    const auto* to_decimal_type =
153
7
                            check_and_get_data_type<ToDataType>(to_type.get());
154
7
                    to_precision = to_decimal_type->get_precision();
155
7
                    ToDataType::check_type_precision(to_precision);
156
157
7
                    to_scale = to_decimal_type->get_scale();
158
7
                    ToDataType::check_type_scale(to_scale);
159
7
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
7
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
7
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
7
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
7
                if (to_scale > from_scale) {
170
6
                    multiply_may_overflow &=
171
6
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
6
                }
173
7
                return narrow_integral || multiply_may_overflow;
174
7
            }
175
0
            return false;
176
7
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_3EEESE_EEEEbSI_
Line
Count
Source
123
29
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
29
            using Types2 = std::decay_t<decltype(types2)>;
125
29
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
29
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
29
                using FromFieldType = typename FromDataType::FieldType;
133
29
                using ToFieldType = typename ToDataType::FieldType;
134
29
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
29
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
29
                UInt32 to_max_digits = 0;
146
29
                UInt32 to_precision = 0;
147
29
                UInt32 to_scale = 0;
148
149
29
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
29
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
29
                    const auto* to_decimal_type =
153
29
                            check_and_get_data_type<ToDataType>(to_type.get());
154
29
                    to_precision = to_decimal_type->get_precision();
155
29
                    ToDataType::check_type_precision(to_precision);
156
157
29
                    to_scale = to_decimal_type->get_scale();
158
29
                    ToDataType::check_type_scale(to_scale);
159
29
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
29
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
29
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
29
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
29
                if (to_scale > from_scale) {
170
18
                    multiply_may_overflow &=
171
18
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
18
                }
173
29
                return narrow_integral || multiply_may_overflow;
174
29
            }
175
0
            return false;
176
29
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_4EEESE_EEEEbSI_
Line
Count
Source
123
29
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
29
            using Types2 = std::decay_t<decltype(types2)>;
125
29
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
29
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
29
                using FromFieldType = typename FromDataType::FieldType;
133
29
                using ToFieldType = typename ToDataType::FieldType;
134
29
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
29
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
29
                UInt32 to_max_digits = 0;
146
29
                UInt32 to_precision = 0;
147
29
                UInt32 to_scale = 0;
148
149
29
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
29
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
29
                    const auto* to_decimal_type =
153
29
                            check_and_get_data_type<ToDataType>(to_type.get());
154
29
                    to_precision = to_decimal_type->get_precision();
155
29
                    ToDataType::check_type_precision(to_precision);
156
157
29
                    to_scale = to_decimal_type->get_scale();
158
29
                    ToDataType::check_type_scale(to_scale);
159
29
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
29
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
29
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
29
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
29
                if (to_scale > from_scale) {
170
18
                    multiply_may_overflow &=
171
18
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
18
                }
173
29
                return narrow_integral || multiply_may_overflow;
174
29
            }
175
0
            return false;
176
29
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_5EEESE_EEEEbSI_
Line
Count
Source
123
29
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
29
            using Types2 = std::decay_t<decltype(types2)>;
125
29
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
29
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
29
                using FromFieldType = typename FromDataType::FieldType;
133
29
                using ToFieldType = typename ToDataType::FieldType;
134
29
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
29
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
29
                UInt32 to_max_digits = 0;
146
29
                UInt32 to_precision = 0;
147
29
                UInt32 to_scale = 0;
148
149
29
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
29
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
29
                    const auto* to_decimal_type =
153
29
                            check_and_get_data_type<ToDataType>(to_type.get());
154
29
                    to_precision = to_decimal_type->get_precision();
155
29
                    ToDataType::check_type_precision(to_precision);
156
157
29
                    to_scale = to_decimal_type->get_scale();
158
29
                    ToDataType::check_type_scale(to_scale);
159
29
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
29
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
29
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
29
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
29
                if (to_scale > from_scale) {
170
18
                    multiply_may_overflow &=
171
18
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
18
                }
173
29
                return narrow_integral || multiply_may_overflow;
174
29
            }
175
0
            return false;
176
29
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_6EEESE_EEEEbSI_
Line
Count
Source
123
29
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
29
            using Types2 = std::decay_t<decltype(types2)>;
125
29
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
29
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
29
                using FromFieldType = typename FromDataType::FieldType;
133
29
                using ToFieldType = typename ToDataType::FieldType;
134
29
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
29
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
29
                UInt32 to_max_digits = 0;
146
29
                UInt32 to_precision = 0;
147
29
                UInt32 to_scale = 0;
148
149
29
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
29
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
29
                    const auto* to_decimal_type =
153
29
                            check_and_get_data_type<ToDataType>(to_type.get());
154
29
                    to_precision = to_decimal_type->get_precision();
155
29
                    ToDataType::check_type_precision(to_precision);
156
157
29
                    to_scale = to_decimal_type->get_scale();
158
29
                    ToDataType::check_type_scale(to_scale);
159
29
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
29
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
29
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
29
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
29
                if (to_scale > from_scale) {
170
18
                    multiply_may_overflow &=
171
18
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
18
                }
173
29
                return narrow_integral || multiply_may_overflow;
174
29
            }
175
0
            return false;
176
29
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_7EEESE_EEEEbSI_
Line
Count
Source
123
44
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
44
            using Types2 = std::decay_t<decltype(types2)>;
125
44
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
44
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
44
                using FromFieldType = typename FromDataType::FieldType;
133
44
                using ToFieldType = typename ToDataType::FieldType;
134
44
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
44
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
44
                UInt32 to_max_digits = 0;
146
44
                UInt32 to_precision = 0;
147
44
                UInt32 to_scale = 0;
148
149
44
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
44
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
44
                    const auto* to_decimal_type =
153
44
                            check_and_get_data_type<ToDataType>(to_type.get());
154
44
                    to_precision = to_decimal_type->get_precision();
155
44
                    ToDataType::check_type_precision(to_precision);
156
157
44
                    to_scale = to_decimal_type->get_scale();
158
44
                    ToDataType::check_type_scale(to_scale);
159
44
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
44
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
44
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
44
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
44
                if (to_scale > from_scale) {
170
28
                    multiply_may_overflow &=
171
28
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
28
                }
173
44
                return narrow_integral || multiply_may_overflow;
174
44
            }
175
0
            return false;
176
44
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_8EEESE_EEEEbSI_
Line
Count
Source
123
87
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
87
            using Types2 = std::decay_t<decltype(types2)>;
125
87
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
87
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
87
                using FromFieldType = typename FromDataType::FieldType;
133
87
                using ToFieldType = typename ToDataType::FieldType;
134
87
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
87
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
87
                UInt32 to_max_digits = 0;
146
87
                UInt32 to_precision = 0;
147
87
                UInt32 to_scale = 0;
148
149
87
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
87
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
87
                    const auto* to_decimal_type =
153
87
                            check_and_get_data_type<ToDataType>(to_type.get());
154
87
                    to_precision = to_decimal_type->get_precision();
155
87
                    ToDataType::check_type_precision(to_precision);
156
157
87
                    to_scale = to_decimal_type->get_scale();
158
87
                    ToDataType::check_type_scale(to_scale);
159
87
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
87
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
87
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
87
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
87
                if (to_scale > from_scale) {
170
66
                    multiply_may_overflow &=
171
66
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
66
                }
173
87
                return narrow_integral || multiply_may_overflow;
174
87
            }
175
0
            return false;
176
87
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_9EEESE_EEEEbSI_
Line
Count
Source
123
99
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
99
            using Types2 = std::decay_t<decltype(types2)>;
125
99
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
99
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
99
                using FromFieldType = typename FromDataType::FieldType;
133
99
                using ToFieldType = typename ToDataType::FieldType;
134
99
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
99
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
99
                UInt32 to_max_digits = 0;
146
99
                UInt32 to_precision = 0;
147
99
                UInt32 to_scale = 0;
148
149
99
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
99
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
99
                    const auto* to_decimal_type =
153
99
                            check_and_get_data_type<ToDataType>(to_type.get());
154
99
                    to_precision = to_decimal_type->get_precision();
155
99
                    ToDataType::check_type_precision(to_precision);
156
157
99
                    to_scale = to_decimal_type->get_scale();
158
99
                    ToDataType::check_type_scale(to_scale);
159
99
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
99
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
99
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
99
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
99
                if (to_scale > from_scale) {
170
66
                    multiply_may_overflow &=
171
66
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
66
                }
173
99
                return narrow_integral || multiply_may_overflow;
174
99
            }
175
0
            return false;
176
99
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_28EEESE_EEEEbSI_
Line
Count
Source
123
168
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
168
            using Types2 = std::decay_t<decltype(types2)>;
125
168
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
168
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
168
                using FromFieldType = typename FromDataType::FieldType;
133
168
                using ToFieldType = typename ToDataType::FieldType;
134
168
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
168
                UInt32 from_scale = 0;
136
137
168
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
168
                    const auto* from_decimal_type =
139
168
                            check_and_get_data_type<FromDataType>(from_type.get());
140
168
                    from_precision =
141
168
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
168
                    from_scale = from_decimal_type->get_scale();
143
168
                }
144
145
168
                UInt32 to_max_digits = 0;
146
168
                UInt32 to_precision = 0;
147
168
                UInt32 to_scale = 0;
148
149
168
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
168
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
168
                    const auto* to_decimal_type =
153
168
                            check_and_get_data_type<ToDataType>(to_type.get());
154
168
                    to_precision = to_decimal_type->get_precision();
155
168
                    ToDataType::check_type_precision(to_precision);
156
157
168
                    to_scale = to_decimal_type->get_scale();
158
168
                    ToDataType::check_type_scale(to_scale);
159
168
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
168
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
168
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
168
                if (to_scale > from_scale) {
170
106
                    multiply_may_overflow &=
171
106
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
106
                }
173
168
                return narrow_integral || multiply_may_overflow;
174
168
            }
175
0
            return false;
176
168
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_29EEESE_EEEEbSI_
Line
Count
Source
123
264
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
264
            using Types2 = std::decay_t<decltype(types2)>;
125
264
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
264
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
264
                using FromFieldType = typename FromDataType::FieldType;
133
264
                using ToFieldType = typename ToDataType::FieldType;
134
264
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
264
                UInt32 from_scale = 0;
136
137
264
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
264
                    const auto* from_decimal_type =
139
264
                            check_and_get_data_type<FromDataType>(from_type.get());
140
264
                    from_precision =
141
264
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
264
                    from_scale = from_decimal_type->get_scale();
143
264
                }
144
145
264
                UInt32 to_max_digits = 0;
146
264
                UInt32 to_precision = 0;
147
264
                UInt32 to_scale = 0;
148
149
264
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
264
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
264
                    const auto* to_decimal_type =
153
264
                            check_and_get_data_type<ToDataType>(to_type.get());
154
264
                    to_precision = to_decimal_type->get_precision();
155
264
                    ToDataType::check_type_precision(to_precision);
156
157
264
                    to_scale = to_decimal_type->get_scale();
158
264
                    ToDataType::check_type_scale(to_scale);
159
264
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
264
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
264
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
264
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
264
                if (to_scale > from_scale) {
170
160
                    multiply_may_overflow &=
171
160
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
160
                }
173
264
                return narrow_integral || multiply_may_overflow;
174
264
            }
175
0
            return false;
176
264
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_20EEESE_EEEEbSI_
Line
Count
Source
123
132
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
132
            using Types2 = std::decay_t<decltype(types2)>;
125
132
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
132
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
132
                using FromFieldType = typename FromDataType::FieldType;
133
132
                using ToFieldType = typename ToDataType::FieldType;
134
132
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
132
                UInt32 from_scale = 0;
136
137
132
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
132
                    const auto* from_decimal_type =
139
132
                            check_and_get_data_type<FromDataType>(from_type.get());
140
132
                    from_precision =
141
132
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
132
                    from_scale = from_decimal_type->get_scale();
143
132
                }
144
145
132
                UInt32 to_max_digits = 0;
146
132
                UInt32 to_precision = 0;
147
132
                UInt32 to_scale = 0;
148
149
132
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
132
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
132
                    const auto* to_decimal_type =
153
132
                            check_and_get_data_type<ToDataType>(to_type.get());
154
132
                    to_precision = to_decimal_type->get_precision();
155
132
                    ToDataType::check_type_precision(to_precision);
156
157
132
                    to_scale = to_decimal_type->get_scale();
158
132
                    ToDataType::check_type_scale(to_scale);
159
132
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
132
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
132
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
132
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
132
                if (to_scale > from_scale) {
170
68
                    multiply_may_overflow &=
171
68
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
68
                }
173
132
                return narrow_integral || multiply_may_overflow;
174
132
            }
175
0
            return false;
176
132
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_30EEESE_EEEEbSI_
Line
Count
Source
123
264
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
264
            using Types2 = std::decay_t<decltype(types2)>;
125
264
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
264
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
264
                using FromFieldType = typename FromDataType::FieldType;
133
264
                using ToFieldType = typename ToDataType::FieldType;
134
264
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
264
                UInt32 from_scale = 0;
136
137
264
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
264
                    const auto* from_decimal_type =
139
264
                            check_and_get_data_type<FromDataType>(from_type.get());
140
264
                    from_precision =
141
264
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
264
                    from_scale = from_decimal_type->get_scale();
143
264
                }
144
145
264
                UInt32 to_max_digits = 0;
146
264
                UInt32 to_precision = 0;
147
264
                UInt32 to_scale = 0;
148
149
264
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
264
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
264
                    const auto* to_decimal_type =
153
264
                            check_and_get_data_type<ToDataType>(to_type.get());
154
264
                    to_precision = to_decimal_type->get_precision();
155
264
                    ToDataType::check_type_precision(to_precision);
156
157
264
                    to_scale = to_decimal_type->get_scale();
158
264
                    ToDataType::check_type_scale(to_scale);
159
264
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
264
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
264
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
264
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
264
                if (to_scale > from_scale) {
170
159
                    multiply_may_overflow &=
171
159
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
159
                }
173
264
                return narrow_integral || multiply_may_overflow;
174
264
            }
175
0
            return false;
176
264
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_ISE_SE_EEEEbSI_
Line
Count
Source
123
272
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
272
            using Types2 = std::decay_t<decltype(types2)>;
125
272
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
272
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
272
                using FromFieldType = typename FromDataType::FieldType;
133
272
                using ToFieldType = typename ToDataType::FieldType;
134
272
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
272
                UInt32 from_scale = 0;
136
137
272
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
272
                    const auto* from_decimal_type =
139
272
                            check_and_get_data_type<FromDataType>(from_type.get());
140
272
                    from_precision =
141
272
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
272
                    from_scale = from_decimal_type->get_scale();
143
272
                }
144
145
272
                UInt32 to_max_digits = 0;
146
272
                UInt32 to_precision = 0;
147
272
                UInt32 to_scale = 0;
148
149
272
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
272
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
272
                    const auto* to_decimal_type =
153
272
                            check_and_get_data_type<ToDataType>(to_type.get());
154
272
                    to_precision = to_decimal_type->get_precision();
155
272
                    ToDataType::check_type_precision(to_precision);
156
157
272
                    to_scale = to_decimal_type->get_scale();
158
272
                    ToDataType::check_type_scale(to_scale);
159
272
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
272
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
272
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
272
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
272
                if (to_scale > from_scale) {
170
152
                    multiply_may_overflow &=
171
152
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
152
                }
173
272
                return narrow_integral || multiply_may_overflow;
174
272
            }
175
0
            return false;
176
272
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeDateESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeDateV2ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_18DataTypeDateTimeV2ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_22DataTypeDateTimeV2NanoESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_16DataTypeDateTimeESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeTimeV2ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_19DataTypeTimeStampTzESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv4ESE_EEEEbSI_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_12DataTypeIPv6ESE_EEEEbSI_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeStringESE_EEEEbSI_
Line
Count
Source
123
1.39k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
1.39k
            using Types2 = std::decay_t<decltype(types2)>;
125
1.39k
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
1.39k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
1.39k
                return false;
130
1.39k
            }
131
1.39k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
1.39k
                using FromFieldType = typename FromDataType::FieldType;
133
1.39k
                using ToFieldType = typename ToDataType::FieldType;
134
1.39k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
1.39k
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
1.39k
                UInt32 to_max_digits = 0;
146
1.39k
                UInt32 to_precision = 0;
147
1.39k
                UInt32 to_scale = 0;
148
149
1.39k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
1.39k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
1.39k
                    const auto* to_decimal_type =
153
1.39k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
1.39k
                    to_precision = to_decimal_type->get_precision();
155
1.39k
                    ToDataType::check_type_precision(to_precision);
156
157
1.39k
                    to_scale = to_decimal_type->get_scale();
158
1.39k
                    ToDataType::check_type_scale(to_scale);
159
1.39k
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
1.39k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
1.39k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
1.39k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
1.39k
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
1.39k
                return narrow_integral || multiply_may_overflow;
174
1.39k
            }
175
0
            return false;
176
1.39k
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE2EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE3EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE4EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE5EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE6EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE7EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE8EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE9EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_ISC_SC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeDateV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_18DataTypeDateTimeV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_22DataTypeDateTimeV2NanoESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_16DataTypeDateTimeESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeTimeV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_19DataTypeTimeStampTzESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeIPv4ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeIPv6ESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeStringESC_EEEEbSG_
Line
Count
Source
123
1
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
1
            using Types2 = std::decay_t<decltype(types2)>;
125
1
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
1
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
1
                return false;
130
1
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
1
            return false;
176
1
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE2EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE3EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE4EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE5EEESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE6EEESC_EEEEbSG_
Line
Count
Source
123
7
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7
            using Types2 = std::decay_t<decltype(types2)>;
125
7
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
7
            return false;
176
7
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE7EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE8EEESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE9EEESC_EEEEbSG_
Line
Count
Source
123
7
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7
            using Types2 = std::decay_t<decltype(types2)>;
125
7
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
7
            return false;
176
7
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEESC_EEEEbSG_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
2
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
2
                using FromFieldType = typename FromDataType::FieldType;
133
2
                using ToFieldType = typename ToDataType::FieldType;
134
2
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
2
                UInt32 from_scale = 0;
136
137
2
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
2
                    const auto* from_decimal_type =
139
2
                            check_and_get_data_type<FromDataType>(from_type.get());
140
2
                    from_precision =
141
2
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
2
                    from_scale = from_decimal_type->get_scale();
143
2
                }
144
145
2
                UInt32 to_max_digits = 0;
146
2
                UInt32 to_precision = 0;
147
2
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
2
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
2
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
2
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
2
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
2
                return narrow_integral || multiply_may_overflow;
174
2
            }
175
0
            return false;
176
2
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeDateESC_EEEEbSG_
Line
Count
Source
123
430
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
430
            using Types2 = std::decay_t<decltype(types2)>;
125
430
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
430
            return false;
176
430
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_ISC_SC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_18DataTypeDateTimeV2ESC_EEEEbSG_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_22DataTypeDateTimeV2NanoESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_16DataTypeDateTimeESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeTimeV2ESC_EEEEbSG_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_19DataTypeTimeStampTzESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeIPv4ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeIPv6ESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeStringESC_EEEEbSG_
Line
Count
Source
123
166
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
166
            using Types2 = std::decay_t<decltype(types2)>;
125
166
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
166
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
166
                return false;
130
166
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
166
            return false;
176
166
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE2EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE3EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE4EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE5EEESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE6EEESC_EEEEbSG_
Line
Count
Source
123
7
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7
            using Types2 = std::decay_t<decltype(types2)>;
125
7
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
7
            return false;
176
7
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE7EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE8EEESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE9EEESC_EEEEbSG_
Line
Count
Source
123
7
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7
            using Types2 = std::decay_t<decltype(types2)>;
125
7
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
7
            return false;
176
7
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEESC_EEEEbSG_
Line
Count
Source
123
4
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
4
            using Types2 = std::decay_t<decltype(types2)>;
125
4
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
4
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
4
                using FromFieldType = typename FromDataType::FieldType;
133
4
                using ToFieldType = typename ToDataType::FieldType;
134
4
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
4
                UInt32 from_scale = 0;
136
137
4
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
4
                    const auto* from_decimal_type =
139
4
                            check_and_get_data_type<FromDataType>(from_type.get());
140
4
                    from_precision =
141
4
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
4
                    from_scale = from_decimal_type->get_scale();
143
4
                }
144
145
4
                UInt32 to_max_digits = 0;
146
4
                UInt32 to_precision = 0;
147
4
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
4
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
4
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
4
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
4
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
4
                return narrow_integral || multiply_may_overflow;
174
4
            }
175
0
            return false;
176
4
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeDateESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeDateV2ESC_EEEEbSG_
Line
Count
Source
123
10
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
10
            using Types2 = std::decay_t<decltype(types2)>;
125
10
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
10
            return false;
176
10
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_ISC_SC_EEEEbSG_
Line
Count
Source
123
300
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
300
            using Types2 = std::decay_t<decltype(types2)>;
125
300
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
300
            return false;
176
300
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_22DataTypeDateTimeV2NanoESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_16DataTypeDateTimeESC_EEEEbSG_
Line
Count
Source
123
286
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
286
            using Types2 = std::decay_t<decltype(types2)>;
125
286
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
286
            return false;
176
286
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeTimeV2ESC_EEEEbSG_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_19DataTypeTimeStampTzESC_EEEEbSG_
Line
Count
Source
123
1
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
1
            using Types2 = std::decay_t<decltype(types2)>;
125
1
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
1
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
1
                return false;
130
1
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
1
            return false;
176
1
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeIPv4ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeIPv6ESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeStringESC_EEEEbSG_
Line
Count
Source
123
519
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
519
            using Types2 = std::decay_t<decltype(types2)>;
125
519
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
519
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
519
                return false;
130
519
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
519
            return false;
176
519
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE2EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE3EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE4EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE5EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE6EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE7EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE8EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE9EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeDateESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeDateV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_18DataTypeDateTimeV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_ISC_SC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_16DataTypeDateTimeESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeTimeV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_19DataTypeTimeStampTzESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeIPv4ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeIPv6ESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeStringESC_EEEEbSG_
Line
Count
Source
123
8
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
8
            using Types2 = std::decay_t<decltype(types2)>;
125
8
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
8
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
8
                return false;
130
8
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
8
            return false;
176
8
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE2EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE3EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE4EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE5EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE6EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE7EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE8EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE9EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeDateESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeDateV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_18DataTypeDateTimeV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_22DataTypeDateTimeV2NanoESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_ISC_SC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeTimeV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_19DataTypeTimeStampTzESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeIPv4ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeIPv6ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeStringESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE2EEESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE3EEESC_EEEEbSG_
Line
Count
Source
123
4
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
4
            using Types2 = std::decay_t<decltype(types2)>;
125
4
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
4
            return false;
176
4
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE4EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE5EEESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE6EEESC_EEEEbSG_
Line
Count
Source
123
1
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
1
            using Types2 = std::decay_t<decltype(types2)>;
125
1
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
1
            return false;
176
1
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE7EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE8EEESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE9EEESC_EEEEbSG_
Line
Count
Source
123
1
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
1
            using Types2 = std::decay_t<decltype(types2)>;
125
1
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
1
            return false;
176
1
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEESC_EEEEbSG_
Line
Count
Source
123
1
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
1
            using Types2 = std::decay_t<decltype(types2)>;
125
1
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
1
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
1
                using FromFieldType = typename FromDataType::FieldType;
133
1
                using ToFieldType = typename ToDataType::FieldType;
134
1
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
1
                UInt32 from_scale = 0;
136
137
1
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
1
                    const auto* from_decimal_type =
139
1
                            check_and_get_data_type<FromDataType>(from_type.get());
140
1
                    from_precision =
141
1
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
1
                    from_scale = from_decimal_type->get_scale();
143
1
                }
144
145
1
                UInt32 to_max_digits = 0;
146
1
                UInt32 to_precision = 0;
147
1
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
1
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
1
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
1
                    to_precision = to_max_digits;
163
1
                }
164
165
1
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
1
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
1
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
1
                if (to_scale > from_scale) {
170
0
                    multiply_may_overflow &=
171
0
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
0
                }
173
1
                return narrow_integral || multiply_may_overflow;
174
1
            }
175
0
            return false;
176
1
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeDateESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeDateV2ESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_18DataTypeDateTimeV2ESC_EEEEbSG_
Line
Count
Source
123
1
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
1
            using Types2 = std::decay_t<decltype(types2)>;
125
1
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
1
            return false;
176
1
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_22DataTypeDateTimeV2NanoESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_16DataTypeDateTimeESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_ISC_SC_EEEEbSG_
Line
Count
Source
123
2
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2
            using Types2 = std::decay_t<decltype(types2)>;
125
2
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
                return false;
130
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
2
            return false;
176
2
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_19DataTypeTimeStampTzESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeIPv4ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeIPv6ESC_EEEEbSG_
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeStringESC_EEEEbSG_
Line
Count
Source
123
12
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
12
            using Types2 = std::decay_t<decltype(types2)>;
125
12
            using FromDataType = typename Types2::LeftType;
126
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
12
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
12
                return false;
130
12
            }
131
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
                using FromFieldType = typename FromDataType::FieldType;
133
                using ToFieldType = typename ToDataType::FieldType;
134
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
                UInt32 from_scale = 0;
136
137
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
                    const auto* from_decimal_type =
139
                            check_and_get_data_type<FromDataType>(from_type.get());
140
                    from_precision =
141
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
                    from_scale = from_decimal_type->get_scale();
143
                }
144
145
                UInt32 to_max_digits = 0;
146
                UInt32 to_precision = 0;
147
                UInt32 to_scale = 0;
148
149
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
                    const auto* to_decimal_type =
153
                            check_and_get_data_type<ToDataType>(to_type.get());
154
                    to_precision = to_decimal_type->get_precision();
155
                    ToDataType::check_type_precision(to_precision);
156
157
                    to_scale = to_decimal_type->get_scale();
158
                    ToDataType::check_type_scale(to_scale);
159
                }
160
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
                    to_precision = to_max_digits;
163
                }
164
165
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
                if (to_scale > from_scale) {
170
                    multiply_may_overflow &=
171
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
                }
173
                return narrow_integral || multiply_may_overflow;
174
            }
175
12
            return false;
176
12
        });
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE2EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE3EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE4EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE5EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE6EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE7EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE8EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE9EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeDateESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeDateV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_18DataTypeDateTimeV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_22DataTypeDateTimeV2NanoESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_16DataTypeDateTimeESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeTimeV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_ISC_SC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeIPv4ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeIPv6ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeStringESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE2EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE3EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE4EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE5EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE6EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE7EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE8EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE9EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeDateESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeDateV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_18DataTypeDateTimeV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_22DataTypeDateTimeV2NanoESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_16DataTypeDateTimeESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeTimeV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_19DataTypeTimeStampTzESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_ISC_SC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeIPv6ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeStringESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE2EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE3EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE4EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE5EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE6EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE7EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE8EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE9EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeDateESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeDateV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_18DataTypeDateTimeV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_22DataTypeDateTimeV2NanoESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_16DataTypeDateTimeESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeTimeV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_19DataTypeTimeStampTzESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeIPv4ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_ISC_SC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeStringESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE2EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE3EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE4EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE5EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE6EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE7EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE8EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE9EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeDateESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeDateV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_18DataTypeDateTimeV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_22DataTypeDateTimeV2NanoESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_16DataTypeDateTimeESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeTimeV2ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_19DataTypeTimeStampTzESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeIPv4ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_INS_12DataTypeIPv6ESC_EEEEbSG_
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ENKUlSG_E_clINSB_ISC_SC_EEEEbSG_
177
97.7k
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_
Line
Count
Source
113
66
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
66
        using Types = std::decay_t<decltype(types)>;
115
66
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
            return false;
121
        }
122
66
        return call_on_index_and_data_type<
123
66
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
66
            using Types2 = std::decay_t<decltype(types2)>;
125
66
            using FromDataType = typename Types2::LeftType;
126
66
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
66
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
66
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
66
                return false;
130
66
            }
131
66
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
66
                using FromFieldType = typename FromDataType::FieldType;
133
66
                using ToFieldType = typename ToDataType::FieldType;
134
66
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
66
                UInt32 from_scale = 0;
136
137
66
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
66
                    const auto* from_decimal_type =
139
66
                            check_and_get_data_type<FromDataType>(from_type.get());
140
66
                    from_precision =
141
66
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
66
                    from_scale = from_decimal_type->get_scale();
143
66
                }
144
145
66
                UInt32 to_max_digits = 0;
146
66
                UInt32 to_precision = 0;
147
66
                UInt32 to_scale = 0;
148
149
66
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
66
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
66
                    const auto* to_decimal_type =
153
66
                            check_and_get_data_type<ToDataType>(to_type.get());
154
66
                    to_precision = to_decimal_type->get_precision();
155
66
                    ToDataType::check_type_precision(to_precision);
156
157
66
                    to_scale = to_decimal_type->get_scale();
158
66
                    ToDataType::check_type_scale(to_scale);
159
66
                }
160
66
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
66
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
66
                    to_precision = to_max_digits;
163
66
                }
164
165
66
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
66
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
66
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
66
                if (to_scale > from_scale) {
170
66
                    multiply_may_overflow &=
171
66
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
66
                }
173
66
                return narrow_integral || multiply_may_overflow;
174
66
            }
175
66
            return false;
176
66
        });
177
66
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_
Line
Count
Source
113
6.02k
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
6.02k
        using Types = std::decay_t<decltype(types)>;
115
6.02k
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
            return false;
121
        }
122
6.02k
        return call_on_index_and_data_type<
123
6.02k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
6.02k
            using Types2 = std::decay_t<decltype(types2)>;
125
6.02k
            using FromDataType = typename Types2::LeftType;
126
6.02k
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
6.02k
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
6.02k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
6.02k
                return false;
130
6.02k
            }
131
6.02k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
6.02k
                using FromFieldType = typename FromDataType::FieldType;
133
6.02k
                using ToFieldType = typename ToDataType::FieldType;
134
6.02k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
6.02k
                UInt32 from_scale = 0;
136
137
6.02k
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
6.02k
                    const auto* from_decimal_type =
139
6.02k
                            check_and_get_data_type<FromDataType>(from_type.get());
140
6.02k
                    from_precision =
141
6.02k
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
6.02k
                    from_scale = from_decimal_type->get_scale();
143
6.02k
                }
144
145
6.02k
                UInt32 to_max_digits = 0;
146
6.02k
                UInt32 to_precision = 0;
147
6.02k
                UInt32 to_scale = 0;
148
149
6.02k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
6.02k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
6.02k
                    const auto* to_decimal_type =
153
6.02k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
6.02k
                    to_precision = to_decimal_type->get_precision();
155
6.02k
                    ToDataType::check_type_precision(to_precision);
156
157
6.02k
                    to_scale = to_decimal_type->get_scale();
158
6.02k
                    ToDataType::check_type_scale(to_scale);
159
6.02k
                }
160
6.02k
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
6.02k
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
6.02k
                    to_precision = to_max_digits;
163
6.02k
                }
164
165
6.02k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
6.02k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
6.02k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
6.02k
                if (to_scale > from_scale) {
170
6.02k
                    multiply_may_overflow &=
171
6.02k
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
6.02k
                }
173
6.02k
                return narrow_integral || multiply_may_overflow;
174
6.02k
            }
175
6.02k
            return false;
176
6.02k
        });
177
6.02k
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_
Line
Count
Source
113
1.58k
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
1.58k
        using Types = std::decay_t<decltype(types)>;
115
1.58k
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
            return false;
121
        }
122
1.58k
        return call_on_index_and_data_type<
123
1.58k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
1.58k
            using Types2 = std::decay_t<decltype(types2)>;
125
1.58k
            using FromDataType = typename Types2::LeftType;
126
1.58k
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
1.58k
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
1.58k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
1.58k
                return false;
130
1.58k
            }
131
1.58k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
1.58k
                using FromFieldType = typename FromDataType::FieldType;
133
1.58k
                using ToFieldType = typename ToDataType::FieldType;
134
1.58k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
1.58k
                UInt32 from_scale = 0;
136
137
1.58k
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
1.58k
                    const auto* from_decimal_type =
139
1.58k
                            check_and_get_data_type<FromDataType>(from_type.get());
140
1.58k
                    from_precision =
141
1.58k
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
1.58k
                    from_scale = from_decimal_type->get_scale();
143
1.58k
                }
144
145
1.58k
                UInt32 to_max_digits = 0;
146
1.58k
                UInt32 to_precision = 0;
147
1.58k
                UInt32 to_scale = 0;
148
149
1.58k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
1.58k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
1.58k
                    const auto* to_decimal_type =
153
1.58k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
1.58k
                    to_precision = to_decimal_type->get_precision();
155
1.58k
                    ToDataType::check_type_precision(to_precision);
156
157
1.58k
                    to_scale = to_decimal_type->get_scale();
158
1.58k
                    ToDataType::check_type_scale(to_scale);
159
1.58k
                }
160
1.58k
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
1.58k
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
1.58k
                    to_precision = to_max_digits;
163
1.58k
                }
164
165
1.58k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
1.58k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
1.58k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
1.58k
                if (to_scale > from_scale) {
170
1.58k
                    multiply_may_overflow &=
171
1.58k
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
1.58k
                }
173
1.58k
                return narrow_integral || multiply_may_overflow;
174
1.58k
            }
175
1.58k
            return false;
176
1.58k
        });
177
1.58k
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_
Line
Count
Source
113
9.66k
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
9.66k
        using Types = std::decay_t<decltype(types)>;
115
9.66k
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
            return false;
121
        }
122
9.66k
        return call_on_index_and_data_type<
123
9.66k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
9.66k
            using Types2 = std::decay_t<decltype(types2)>;
125
9.66k
            using FromDataType = typename Types2::LeftType;
126
9.66k
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
9.66k
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
9.66k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
9.66k
                return false;
130
9.66k
            }
131
9.66k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
9.66k
                using FromFieldType = typename FromDataType::FieldType;
133
9.66k
                using ToFieldType = typename ToDataType::FieldType;
134
9.66k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
9.66k
                UInt32 from_scale = 0;
136
137
9.66k
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
9.66k
                    const auto* from_decimal_type =
139
9.66k
                            check_and_get_data_type<FromDataType>(from_type.get());
140
9.66k
                    from_precision =
141
9.66k
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
9.66k
                    from_scale = from_decimal_type->get_scale();
143
9.66k
                }
144
145
9.66k
                UInt32 to_max_digits = 0;
146
9.66k
                UInt32 to_precision = 0;
147
9.66k
                UInt32 to_scale = 0;
148
149
9.66k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
9.66k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
9.66k
                    const auto* to_decimal_type =
153
9.66k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
9.66k
                    to_precision = to_decimal_type->get_precision();
155
9.66k
                    ToDataType::check_type_precision(to_precision);
156
157
9.66k
                    to_scale = to_decimal_type->get_scale();
158
9.66k
                    ToDataType::check_type_scale(to_scale);
159
9.66k
                }
160
9.66k
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
9.66k
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
9.66k
                    to_precision = to_max_digits;
163
9.66k
                }
164
165
9.66k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
9.66k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
9.66k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
9.66k
                if (to_scale > from_scale) {
170
9.66k
                    multiply_may_overflow &=
171
9.66k
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
9.66k
                }
173
9.66k
                return narrow_integral || multiply_may_overflow;
174
9.66k
            }
175
9.66k
            return false;
176
9.66k
        });
177
9.66k
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_
Line
Count
Source
113
10.4k
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
10.4k
        using Types = std::decay_t<decltype(types)>;
115
10.4k
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
            return false;
121
        }
122
10.4k
        return call_on_index_and_data_type<
123
10.4k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
10.4k
            using Types2 = std::decay_t<decltype(types2)>;
125
10.4k
            using FromDataType = typename Types2::LeftType;
126
10.4k
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
10.4k
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
10.4k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
10.4k
                return false;
130
10.4k
            }
131
10.4k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
10.4k
                using FromFieldType = typename FromDataType::FieldType;
133
10.4k
                using ToFieldType = typename ToDataType::FieldType;
134
10.4k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
10.4k
                UInt32 from_scale = 0;
136
137
10.4k
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
10.4k
                    const auto* from_decimal_type =
139
10.4k
                            check_and_get_data_type<FromDataType>(from_type.get());
140
10.4k
                    from_precision =
141
10.4k
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
10.4k
                    from_scale = from_decimal_type->get_scale();
143
10.4k
                }
144
145
10.4k
                UInt32 to_max_digits = 0;
146
10.4k
                UInt32 to_precision = 0;
147
10.4k
                UInt32 to_scale = 0;
148
149
10.4k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
10.4k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
10.4k
                    const auto* to_decimal_type =
153
10.4k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
10.4k
                    to_precision = to_decimal_type->get_precision();
155
10.4k
                    ToDataType::check_type_precision(to_precision);
156
157
10.4k
                    to_scale = to_decimal_type->get_scale();
158
10.4k
                    ToDataType::check_type_scale(to_scale);
159
10.4k
                }
160
10.4k
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
10.4k
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
10.4k
                    to_precision = to_max_digits;
163
10.4k
                }
164
165
10.4k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
10.4k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
10.4k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
10.4k
                if (to_scale > from_scale) {
170
10.4k
                    multiply_may_overflow &=
171
10.4k
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
10.4k
                }
173
10.4k
                return narrow_integral || multiply_may_overflow;
174
10.4k
            }
175
10.4k
            return false;
176
10.4k
        });
177
10.4k
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_
Line
Count
Source
113
1.09k
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
1.09k
        using Types = std::decay_t<decltype(types)>;
115
1.09k
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
            return false;
121
        }
122
1.09k
        return call_on_index_and_data_type<
123
1.09k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
1.09k
            using Types2 = std::decay_t<decltype(types2)>;
125
1.09k
            using FromDataType = typename Types2::LeftType;
126
1.09k
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
1.09k
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
1.09k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
1.09k
                return false;
130
1.09k
            }
131
1.09k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
1.09k
                using FromFieldType = typename FromDataType::FieldType;
133
1.09k
                using ToFieldType = typename ToDataType::FieldType;
134
1.09k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
1.09k
                UInt32 from_scale = 0;
136
137
1.09k
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
1.09k
                    const auto* from_decimal_type =
139
1.09k
                            check_and_get_data_type<FromDataType>(from_type.get());
140
1.09k
                    from_precision =
141
1.09k
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
1.09k
                    from_scale = from_decimal_type->get_scale();
143
1.09k
                }
144
145
1.09k
                UInt32 to_max_digits = 0;
146
1.09k
                UInt32 to_precision = 0;
147
1.09k
                UInt32 to_scale = 0;
148
149
1.09k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
1.09k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
1.09k
                    const auto* to_decimal_type =
153
1.09k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
1.09k
                    to_precision = to_decimal_type->get_precision();
155
1.09k
                    ToDataType::check_type_precision(to_precision);
156
157
1.09k
                    to_scale = to_decimal_type->get_scale();
158
1.09k
                    ToDataType::check_type_scale(to_scale);
159
1.09k
                }
160
1.09k
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
1.09k
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
1.09k
                    to_precision = to_max_digits;
163
1.09k
                }
164
165
1.09k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
1.09k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
1.09k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
1.09k
                if (to_scale > from_scale) {
170
1.09k
                    multiply_may_overflow &=
171
1.09k
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
1.09k
                }
173
1.09k
                return narrow_integral || multiply_may_overflow;
174
1.09k
            }
175
1.09k
            return false;
176
1.09k
        });
177
1.09k
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_
Line
Count
Source
113
8.19k
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
8.19k
        using Types = std::decay_t<decltype(types)>;
115
8.19k
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
            return false;
121
        }
122
8.19k
        return call_on_index_and_data_type<
123
8.19k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
8.19k
            using Types2 = std::decay_t<decltype(types2)>;
125
8.19k
            using FromDataType = typename Types2::LeftType;
126
8.19k
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
8.19k
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
8.19k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
8.19k
                return false;
130
8.19k
            }
131
8.19k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
8.19k
                using FromFieldType = typename FromDataType::FieldType;
133
8.19k
                using ToFieldType = typename ToDataType::FieldType;
134
8.19k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
8.19k
                UInt32 from_scale = 0;
136
137
8.19k
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
8.19k
                    const auto* from_decimal_type =
139
8.19k
                            check_and_get_data_type<FromDataType>(from_type.get());
140
8.19k
                    from_precision =
141
8.19k
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
8.19k
                    from_scale = from_decimal_type->get_scale();
143
8.19k
                }
144
145
8.19k
                UInt32 to_max_digits = 0;
146
8.19k
                UInt32 to_precision = 0;
147
8.19k
                UInt32 to_scale = 0;
148
149
8.19k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
8.19k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
8.19k
                    const auto* to_decimal_type =
153
8.19k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
8.19k
                    to_precision = to_decimal_type->get_precision();
155
8.19k
                    ToDataType::check_type_precision(to_precision);
156
157
8.19k
                    to_scale = to_decimal_type->get_scale();
158
8.19k
                    ToDataType::check_type_scale(to_scale);
159
8.19k
                }
160
8.19k
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
8.19k
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
8.19k
                    to_precision = to_max_digits;
163
8.19k
                }
164
165
8.19k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
8.19k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
8.19k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
8.19k
                if (to_scale > from_scale) {
170
8.19k
                    multiply_may_overflow &=
171
8.19k
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
8.19k
                }
173
8.19k
                return narrow_integral || multiply_may_overflow;
174
8.19k
            }
175
8.19k
            return false;
176
8.19k
        });
177
8.19k
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_
Line
Count
Source
113
10.8k
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
10.8k
        using Types = std::decay_t<decltype(types)>;
115
10.8k
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
            return false;
121
        }
122
10.8k
        return call_on_index_and_data_type<
123
10.8k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
10.8k
            using Types2 = std::decay_t<decltype(types2)>;
125
10.8k
            using FromDataType = typename Types2::LeftType;
126
10.8k
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
10.8k
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
10.8k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
10.8k
                return false;
130
10.8k
            }
131
10.8k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
10.8k
                using FromFieldType = typename FromDataType::FieldType;
133
10.8k
                using ToFieldType = typename ToDataType::FieldType;
134
10.8k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
10.8k
                UInt32 from_scale = 0;
136
137
10.8k
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
10.8k
                    const auto* from_decimal_type =
139
10.8k
                            check_and_get_data_type<FromDataType>(from_type.get());
140
10.8k
                    from_precision =
141
10.8k
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
10.8k
                    from_scale = from_decimal_type->get_scale();
143
10.8k
                }
144
145
10.8k
                UInt32 to_max_digits = 0;
146
10.8k
                UInt32 to_precision = 0;
147
10.8k
                UInt32 to_scale = 0;
148
149
10.8k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
10.8k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
10.8k
                    const auto* to_decimal_type =
153
10.8k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
10.8k
                    to_precision = to_decimal_type->get_precision();
155
10.8k
                    ToDataType::check_type_precision(to_precision);
156
157
10.8k
                    to_scale = to_decimal_type->get_scale();
158
10.8k
                    ToDataType::check_type_scale(to_scale);
159
10.8k
                }
160
10.8k
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
10.8k
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
10.8k
                    to_precision = to_max_digits;
163
10.8k
                }
164
165
10.8k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
10.8k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
10.8k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
10.8k
                if (to_scale > from_scale) {
170
10.8k
                    multiply_may_overflow &=
171
10.8k
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
10.8k
                }
173
10.8k
                return narrow_integral || multiply_may_overflow;
174
10.8k
            }
175
10.8k
            return false;
176
10.8k
        });
177
10.8k
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_
Line
Count
Source
113
7.40k
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
7.40k
        using Types = std::decay_t<decltype(types)>;
115
7.40k
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
            return false;
121
        }
122
7.40k
        return call_on_index_and_data_type<
123
7.40k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7.40k
            using Types2 = std::decay_t<decltype(types2)>;
125
7.40k
            using FromDataType = typename Types2::LeftType;
126
7.40k
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
7.40k
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
7.40k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
7.40k
                return false;
130
7.40k
            }
131
7.40k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
7.40k
                using FromFieldType = typename FromDataType::FieldType;
133
7.40k
                using ToFieldType = typename ToDataType::FieldType;
134
7.40k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
7.40k
                UInt32 from_scale = 0;
136
137
7.40k
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
7.40k
                    const auto* from_decimal_type =
139
7.40k
                            check_and_get_data_type<FromDataType>(from_type.get());
140
7.40k
                    from_precision =
141
7.40k
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
7.40k
                    from_scale = from_decimal_type->get_scale();
143
7.40k
                }
144
145
7.40k
                UInt32 to_max_digits = 0;
146
7.40k
                UInt32 to_precision = 0;
147
7.40k
                UInt32 to_scale = 0;
148
149
7.40k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
7.40k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
7.40k
                    const auto* to_decimal_type =
153
7.40k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
7.40k
                    to_precision = to_decimal_type->get_precision();
155
7.40k
                    ToDataType::check_type_precision(to_precision);
156
157
7.40k
                    to_scale = to_decimal_type->get_scale();
158
7.40k
                    ToDataType::check_type_scale(to_scale);
159
7.40k
                }
160
7.40k
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
7.40k
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
7.40k
                    to_precision = to_max_digits;
163
7.40k
                }
164
165
7.40k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
7.40k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
7.40k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
7.40k
                if (to_scale > from_scale) {
170
7.40k
                    multiply_may_overflow &=
171
7.40k
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
7.40k
                }
173
7.40k
                return narrow_integral || multiply_may_overflow;
174
7.40k
            }
175
7.40k
            return false;
176
7.40k
        });
177
7.40k
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_
Line
Count
Source
113
22.9k
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
22.9k
        using Types = std::decay_t<decltype(types)>;
115
22.9k
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
            return false;
121
        }
122
22.9k
        return call_on_index_and_data_type<
123
22.9k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
22.9k
            using Types2 = std::decay_t<decltype(types2)>;
125
22.9k
            using FromDataType = typename Types2::LeftType;
126
22.9k
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
22.9k
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
22.9k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
22.9k
                return false;
130
22.9k
            }
131
22.9k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
22.9k
                using FromFieldType = typename FromDataType::FieldType;
133
22.9k
                using ToFieldType = typename ToDataType::FieldType;
134
22.9k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
22.9k
                UInt32 from_scale = 0;
136
137
22.9k
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
22.9k
                    const auto* from_decimal_type =
139
22.9k
                            check_and_get_data_type<FromDataType>(from_type.get());
140
22.9k
                    from_precision =
141
22.9k
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
22.9k
                    from_scale = from_decimal_type->get_scale();
143
22.9k
                }
144
145
22.9k
                UInt32 to_max_digits = 0;
146
22.9k
                UInt32 to_precision = 0;
147
22.9k
                UInt32 to_scale = 0;
148
149
22.9k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
22.9k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
22.9k
                    const auto* to_decimal_type =
153
22.9k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
22.9k
                    to_precision = to_decimal_type->get_precision();
155
22.9k
                    ToDataType::check_type_precision(to_precision);
156
157
22.9k
                    to_scale = to_decimal_type->get_scale();
158
22.9k
                    ToDataType::check_type_scale(to_scale);
159
22.9k
                }
160
22.9k
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
22.9k
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
22.9k
                    to_precision = to_max_digits;
163
22.9k
                }
164
165
22.9k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
22.9k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
22.9k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
22.9k
                if (to_scale > from_scale) {
170
22.9k
                    multiply_may_overflow &=
171
22.9k
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
22.9k
                }
173
22.9k
                return narrow_integral || multiply_may_overflow;
174
22.9k
            }
175
22.9k
            return false;
176
22.9k
        });
177
22.9k
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_
Line
Count
Source
113
4
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
4
        using Types = std::decay_t<decltype(types)>;
115
4
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
            return false;
121
        }
122
4
        return call_on_index_and_data_type<
123
4
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
4
            using Types2 = std::decay_t<decltype(types2)>;
125
4
            using FromDataType = typename Types2::LeftType;
126
4
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
4
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
4
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
4
                return false;
130
4
            }
131
4
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
4
                using FromFieldType = typename FromDataType::FieldType;
133
4
                using ToFieldType = typename ToDataType::FieldType;
134
4
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
4
                UInt32 from_scale = 0;
136
137
4
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
4
                    const auto* from_decimal_type =
139
4
                            check_and_get_data_type<FromDataType>(from_type.get());
140
4
                    from_precision =
141
4
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
4
                    from_scale = from_decimal_type->get_scale();
143
4
                }
144
145
4
                UInt32 to_max_digits = 0;
146
4
                UInt32 to_precision = 0;
147
4
                UInt32 to_scale = 0;
148
149
4
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
4
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
4
                    const auto* to_decimal_type =
153
4
                            check_and_get_data_type<ToDataType>(to_type.get());
154
4
                    to_precision = to_decimal_type->get_precision();
155
4
                    ToDataType::check_type_precision(to_precision);
156
157
4
                    to_scale = to_decimal_type->get_scale();
158
4
                    ToDataType::check_type_scale(to_scale);
159
4
                }
160
4
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
4
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
4
                    to_precision = to_max_digits;
163
4
                }
164
165
4
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
4
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
4
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
4
                if (to_scale > from_scale) {
170
4
                    multiply_may_overflow &=
171
4
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
4
                }
173
4
                return narrow_integral || multiply_may_overflow;
174
4
            }
175
4
            return false;
176
4
        });
177
4
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_
Line
Count
Source
113
7.55k
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
7.55k
        using Types = std::decay_t<decltype(types)>;
115
7.55k
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
            return false;
121
        }
122
7.55k
        return call_on_index_and_data_type<
123
7.55k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7.55k
            using Types2 = std::decay_t<decltype(types2)>;
125
7.55k
            using FromDataType = typename Types2::LeftType;
126
7.55k
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
7.55k
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
7.55k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
7.55k
                return false;
130
7.55k
            }
131
7.55k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
7.55k
                using FromFieldType = typename FromDataType::FieldType;
133
7.55k
                using ToFieldType = typename ToDataType::FieldType;
134
7.55k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
7.55k
                UInt32 from_scale = 0;
136
137
7.55k
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
7.55k
                    const auto* from_decimal_type =
139
7.55k
                            check_and_get_data_type<FromDataType>(from_type.get());
140
7.55k
                    from_precision =
141
7.55k
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
7.55k
                    from_scale = from_decimal_type->get_scale();
143
7.55k
                }
144
145
7.55k
                UInt32 to_max_digits = 0;
146
7.55k
                UInt32 to_precision = 0;
147
7.55k
                UInt32 to_scale = 0;
148
149
7.55k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
7.55k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
7.55k
                    const auto* to_decimal_type =
153
7.55k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
7.55k
                    to_precision = to_decimal_type->get_precision();
155
7.55k
                    ToDataType::check_type_precision(to_precision);
156
157
7.55k
                    to_scale = to_decimal_type->get_scale();
158
7.55k
                    ToDataType::check_type_scale(to_scale);
159
7.55k
                }
160
7.55k
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
7.55k
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
7.55k
                    to_precision = to_max_digits;
163
7.55k
                }
164
165
7.55k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
7.55k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
7.55k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
7.55k
                if (to_scale > from_scale) {
170
7.55k
                    multiply_may_overflow &=
171
7.55k
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
7.55k
                }
173
7.55k
                return narrow_integral || multiply_may_overflow;
174
7.55k
            }
175
7.55k
            return false;
176
7.55k
        });
177
7.55k
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_
Line
Count
Source
113
2.84k
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
2.84k
        using Types = std::decay_t<decltype(types)>;
115
2.84k
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
            return false;
121
        }
122
2.84k
        return call_on_index_and_data_type<
123
2.84k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
2.84k
            using Types2 = std::decay_t<decltype(types2)>;
125
2.84k
            using FromDataType = typename Types2::LeftType;
126
2.84k
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
2.84k
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
2.84k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
2.84k
                return false;
130
2.84k
            }
131
2.84k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
2.84k
                using FromFieldType = typename FromDataType::FieldType;
133
2.84k
                using ToFieldType = typename ToDataType::FieldType;
134
2.84k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
2.84k
                UInt32 from_scale = 0;
136
137
2.84k
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
2.84k
                    const auto* from_decimal_type =
139
2.84k
                            check_and_get_data_type<FromDataType>(from_type.get());
140
2.84k
                    from_precision =
141
2.84k
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
2.84k
                    from_scale = from_decimal_type->get_scale();
143
2.84k
                }
144
145
2.84k
                UInt32 to_max_digits = 0;
146
2.84k
                UInt32 to_precision = 0;
147
2.84k
                UInt32 to_scale = 0;
148
149
2.84k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
2.84k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
2.84k
                    const auto* to_decimal_type =
153
2.84k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
2.84k
                    to_precision = to_decimal_type->get_precision();
155
2.84k
                    ToDataType::check_type_precision(to_precision);
156
157
2.84k
                    to_scale = to_decimal_type->get_scale();
158
2.84k
                    ToDataType::check_type_scale(to_scale);
159
2.84k
                }
160
2.84k
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
2.84k
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
2.84k
                    to_precision = to_max_digits;
163
2.84k
                }
164
165
2.84k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
2.84k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
2.84k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
2.84k
                if (to_scale > from_scale) {
170
2.84k
                    multiply_may_overflow &=
171
2.84k
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
2.84k
                }
173
2.84k
                return narrow_integral || multiply_may_overflow;
174
2.84k
            }
175
2.84k
            return false;
176
2.84k
        });
177
2.84k
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_
Line
Count
Source
113
1
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
1
        using Types = std::decay_t<decltype(types)>;
115
1
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
            return false;
121
        }
122
1
        return call_on_index_and_data_type<
123
1
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
1
            using Types2 = std::decay_t<decltype(types2)>;
125
1
            using FromDataType = typename Types2::LeftType;
126
1
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
1
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
1
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
1
                return false;
130
1
            }
131
1
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
1
                using FromFieldType = typename FromDataType::FieldType;
133
1
                using ToFieldType = typename ToDataType::FieldType;
134
1
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
1
                UInt32 from_scale = 0;
136
137
1
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
1
                    const auto* from_decimal_type =
139
1
                            check_and_get_data_type<FromDataType>(from_type.get());
140
1
                    from_precision =
141
1
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
1
                    from_scale = from_decimal_type->get_scale();
143
1
                }
144
145
1
                UInt32 to_max_digits = 0;
146
1
                UInt32 to_precision = 0;
147
1
                UInt32 to_scale = 0;
148
149
1
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
1
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
1
                    const auto* to_decimal_type =
153
1
                            check_and_get_data_type<ToDataType>(to_type.get());
154
1
                    to_precision = to_decimal_type->get_precision();
155
1
                    ToDataType::check_type_precision(to_precision);
156
157
1
                    to_scale = to_decimal_type->get_scale();
158
1
                    ToDataType::check_type_scale(to_scale);
159
1
                }
160
1
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
1
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
1
                    to_precision = to_max_digits;
163
1
                }
164
165
1
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
1
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
1
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
1
                if (to_scale > from_scale) {
170
1
                    multiply_may_overflow &=
171
1
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
1
                }
173
1
                return narrow_integral || multiply_may_overflow;
174
1
            }
175
1
            return false;
176
1
        });
177
1
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_
Line
Count
Source
113
616
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
616
        using Types = std::decay_t<decltype(types)>;
115
616
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
            return false;
121
        }
122
616
        return call_on_index_and_data_type<
123
616
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
616
            using Types2 = std::decay_t<decltype(types2)>;
125
616
            using FromDataType = typename Types2::LeftType;
126
616
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
616
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
616
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
616
                return false;
130
616
            }
131
616
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
616
                using FromFieldType = typename FromDataType::FieldType;
133
616
                using ToFieldType = typename ToDataType::FieldType;
134
616
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
616
                UInt32 from_scale = 0;
136
137
616
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
616
                    const auto* from_decimal_type =
139
616
                            check_and_get_data_type<FromDataType>(from_type.get());
140
616
                    from_precision =
141
616
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
616
                    from_scale = from_decimal_type->get_scale();
143
616
                }
144
145
616
                UInt32 to_max_digits = 0;
146
616
                UInt32 to_precision = 0;
147
616
                UInt32 to_scale = 0;
148
149
616
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
616
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
616
                    const auto* to_decimal_type =
153
616
                            check_and_get_data_type<ToDataType>(to_type.get());
154
616
                    to_precision = to_decimal_type->get_precision();
155
616
                    ToDataType::check_type_precision(to_precision);
156
157
616
                    to_scale = to_decimal_type->get_scale();
158
616
                    ToDataType::check_type_scale(to_scale);
159
616
                }
160
616
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
616
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
616
                    to_precision = to_max_digits;
163
616
                }
164
165
616
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
616
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
616
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
616
                if (to_scale > from_scale) {
170
616
                    multiply_may_overflow &=
171
616
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
616
                }
173
616
                return narrow_integral || multiply_may_overflow;
174
616
            }
175
616
            return false;
176
616
        });
177
616
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_
Line
Count
Source
113
1.13k
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
1.13k
        using Types = std::decay_t<decltype(types)>;
115
1.13k
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
            return false;
121
        }
122
1.13k
        return call_on_index_and_data_type<
123
1.13k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
1.13k
            using Types2 = std::decay_t<decltype(types2)>;
125
1.13k
            using FromDataType = typename Types2::LeftType;
126
1.13k
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
1.13k
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
1.13k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
1.13k
                return false;
130
1.13k
            }
131
1.13k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
1.13k
                using FromFieldType = typename FromDataType::FieldType;
133
1.13k
                using ToFieldType = typename ToDataType::FieldType;
134
1.13k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
1.13k
                UInt32 from_scale = 0;
136
137
1.13k
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
1.13k
                    const auto* from_decimal_type =
139
1.13k
                            check_and_get_data_type<FromDataType>(from_type.get());
140
1.13k
                    from_precision =
141
1.13k
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
1.13k
                    from_scale = from_decimal_type->get_scale();
143
1.13k
                }
144
145
1.13k
                UInt32 to_max_digits = 0;
146
1.13k
                UInt32 to_precision = 0;
147
1.13k
                UInt32 to_scale = 0;
148
149
1.13k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
1.13k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
1.13k
                    const auto* to_decimal_type =
153
1.13k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
1.13k
                    to_precision = to_decimal_type->get_precision();
155
1.13k
                    ToDataType::check_type_precision(to_precision);
156
157
1.13k
                    to_scale = to_decimal_type->get_scale();
158
1.13k
                    ToDataType::check_type_scale(to_scale);
159
1.13k
                }
160
1.13k
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
1.13k
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
1.13k
                    to_precision = to_max_digits;
163
1.13k
                }
164
165
1.13k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
1.13k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
1.13k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
1.13k
                if (to_scale > from_scale) {
170
1.13k
                    multiply_may_overflow &=
171
1.13k
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
1.13k
                }
173
1.13k
                return narrow_integral || multiply_may_overflow;
174
1.13k
            }
175
1.13k
            return false;
176
1.13k
        });
177
1.13k
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_22DataTypeDateTimeV2NanoEvEEEEbRKT_
Line
Count
Source
113
8
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
8
        using Types = std::decay_t<decltype(types)>;
115
8
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
            return false;
121
        }
122
8
        return call_on_index_and_data_type<
123
8
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
8
            using Types2 = std::decay_t<decltype(types2)>;
125
8
            using FromDataType = typename Types2::LeftType;
126
8
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
8
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
8
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
8
                return false;
130
8
            }
131
8
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
8
                using FromFieldType = typename FromDataType::FieldType;
133
8
                using ToFieldType = typename ToDataType::FieldType;
134
8
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
8
                UInt32 from_scale = 0;
136
137
8
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
8
                    const auto* from_decimal_type =
139
8
                            check_and_get_data_type<FromDataType>(from_type.get());
140
8
                    from_precision =
141
8
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
8
                    from_scale = from_decimal_type->get_scale();
143
8
                }
144
145
8
                UInt32 to_max_digits = 0;
146
8
                UInt32 to_precision = 0;
147
8
                UInt32 to_scale = 0;
148
149
8
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
8
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
8
                    const auto* to_decimal_type =
153
8
                            check_and_get_data_type<ToDataType>(to_type.get());
154
8
                    to_precision = to_decimal_type->get_precision();
155
8
                    ToDataType::check_type_precision(to_precision);
156
157
8
                    to_scale = to_decimal_type->get_scale();
158
8
                    ToDataType::check_type_scale(to_scale);
159
8
                }
160
8
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
8
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
8
                    to_precision = to_max_digits;
163
8
                }
164
165
8
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
8
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
8
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
8
                if (to_scale > from_scale) {
170
8
                    multiply_may_overflow &=
171
8
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
8
                }
173
8
                return narrow_integral || multiply_may_overflow;
174
8
            }
175
8
            return false;
176
8
        });
177
8
    };
Unexecuted instantiation: function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_
Line
Count
Source
113
22
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
22
        using Types = std::decay_t<decltype(types)>;
115
22
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
            return false;
121
        }
122
22
        return call_on_index_and_data_type<
123
22
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
22
            using Types2 = std::decay_t<decltype(types2)>;
125
22
            using FromDataType = typename Types2::LeftType;
126
22
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
22
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
22
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
22
                return false;
130
22
            }
131
22
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
22
                using FromFieldType = typename FromDataType::FieldType;
133
22
                using ToFieldType = typename ToDataType::FieldType;
134
22
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
22
                UInt32 from_scale = 0;
136
137
22
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
22
                    const auto* from_decimal_type =
139
22
                            check_and_get_data_type<FromDataType>(from_type.get());
140
22
                    from_precision =
141
22
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
22
                    from_scale = from_decimal_type->get_scale();
143
22
                }
144
145
22
                UInt32 to_max_digits = 0;
146
22
                UInt32 to_precision = 0;
147
22
                UInt32 to_scale = 0;
148
149
22
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
22
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
22
                    const auto* to_decimal_type =
153
22
                            check_and_get_data_type<ToDataType>(to_type.get());
154
22
                    to_precision = to_decimal_type->get_precision();
155
22
                    ToDataType::check_type_precision(to_precision);
156
157
22
                    to_scale = to_decimal_type->get_scale();
158
22
                    ToDataType::check_type_scale(to_scale);
159
22
                }
160
22
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
22
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
22
                    to_precision = to_max_digits;
163
22
                }
164
165
22
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
22
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
22
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
22
                if (to_scale > from_scale) {
170
22
                    multiply_may_overflow &=
171
22
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
22
                }
173
22
                return narrow_integral || multiply_may_overflow;
174
22
            }
175
22
            return false;
176
22
        });
177
22
    };
Unexecuted instantiation: function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_
Line
Count
Source
113
7
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
7
        using Types = std::decay_t<decltype(types)>;
115
7
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
7
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
7
            return false;
121
7
        }
122
0
        return call_on_index_and_data_type<
123
7
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7
            using Types2 = std::decay_t<decltype(types2)>;
125
7
            using FromDataType = typename Types2::LeftType;
126
7
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
7
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
7
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
7
                return false;
130
7
            }
131
7
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
7
                using FromFieldType = typename FromDataType::FieldType;
133
7
                using ToFieldType = typename ToDataType::FieldType;
134
7
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
7
                UInt32 from_scale = 0;
136
137
7
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
7
                    const auto* from_decimal_type =
139
7
                            check_and_get_data_type<FromDataType>(from_type.get());
140
7
                    from_precision =
141
7
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
7
                    from_scale = from_decimal_type->get_scale();
143
7
                }
144
145
7
                UInt32 to_max_digits = 0;
146
7
                UInt32 to_precision = 0;
147
7
                UInt32 to_scale = 0;
148
149
7
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
7
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
7
                    const auto* to_decimal_type =
153
7
                            check_and_get_data_type<ToDataType>(to_type.get());
154
7
                    to_precision = to_decimal_type->get_precision();
155
7
                    ToDataType::check_type_precision(to_precision);
156
157
7
                    to_scale = to_decimal_type->get_scale();
158
7
                    ToDataType::check_type_scale(to_scale);
159
7
                }
160
7
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
7
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
7
                    to_precision = to_max_digits;
163
7
                }
164
165
7
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
7
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
7
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
7
                if (to_scale > from_scale) {
170
7
                    multiply_may_overflow &=
171
7
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
7
                }
173
7
                return narrow_integral || multiply_may_overflow;
174
7
            }
175
7
            return false;
176
7
        });
177
7
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_
Line
Count
Source
113
10
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
10
        using Types = std::decay_t<decltype(types)>;
115
10
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
10
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
10
            return false;
121
10
        }
122
0
        return call_on_index_and_data_type<
123
10
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
10
            using Types2 = std::decay_t<decltype(types2)>;
125
10
            using FromDataType = typename Types2::LeftType;
126
10
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
10
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
10
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
10
                return false;
130
10
            }
131
10
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
10
                using FromFieldType = typename FromDataType::FieldType;
133
10
                using ToFieldType = typename ToDataType::FieldType;
134
10
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
10
                UInt32 from_scale = 0;
136
137
10
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
10
                    const auto* from_decimal_type =
139
10
                            check_and_get_data_type<FromDataType>(from_type.get());
140
10
                    from_precision =
141
10
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
10
                    from_scale = from_decimal_type->get_scale();
143
10
                }
144
145
10
                UInt32 to_max_digits = 0;
146
10
                UInt32 to_precision = 0;
147
10
                UInt32 to_scale = 0;
148
149
10
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
10
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
10
                    const auto* to_decimal_type =
153
10
                            check_and_get_data_type<ToDataType>(to_type.get());
154
10
                    to_precision = to_decimal_type->get_precision();
155
10
                    ToDataType::check_type_precision(to_precision);
156
157
10
                    to_scale = to_decimal_type->get_scale();
158
10
                    ToDataType::check_type_scale(to_scale);
159
10
                }
160
10
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
10
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
10
                    to_precision = to_max_digits;
163
10
                }
164
165
10
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
10
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
10
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
10
                if (to_scale > from_scale) {
170
10
                    multiply_may_overflow &=
171
10
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
10
                }
173
10
                return narrow_integral || multiply_may_overflow;
174
10
            }
175
10
            return false;
176
10
        });
177
10
    };
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_
Line
Count
Source
113
7.34k
    auto make_default_wrapper = [&](const auto& types) -> bool {
114
7.34k
        using Types = std::decay_t<decltype(types)>;
115
7.34k
        using ToDataType = typename Types::LeftType;
116
117
        if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> ||
118
                        IsDatelikeV2Types<ToDataType> ||
119
7.34k
                        std::is_same_v<ToDataType, DataTypeTimeV2>)) {
120
7.34k
            return false;
121
7.34k
        }
122
0
        return call_on_index_and_data_type<
123
7.34k
                ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool {
124
7.34k
            using Types2 = std::decay_t<decltype(types2)>;
125
7.34k
            using FromDataType = typename Types2::LeftType;
126
7.34k
            if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> ||
127
7.34k
                            IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> ||
128
7.34k
                            std::is_same_v<FromDataType, DataTypeTimeV2>)) {
129
7.34k
                return false;
130
7.34k
            }
131
7.34k
            if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) {
132
7.34k
                using FromFieldType = typename FromDataType::FieldType;
133
7.34k
                using ToFieldType = typename ToDataType::FieldType;
134
7.34k
                UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>();
135
7.34k
                UInt32 from_scale = 0;
136
137
7.34k
                if constexpr (IsDataTypeDecimal<FromDataType>) {
138
7.34k
                    const auto* from_decimal_type =
139
7.34k
                            check_and_get_data_type<FromDataType>(from_type.get());
140
7.34k
                    from_precision =
141
7.34k
                            NumberTraits::max_ascii_len<typename FromFieldType::NativeType>();
142
7.34k
                    from_scale = from_decimal_type->get_scale();
143
7.34k
                }
144
145
7.34k
                UInt32 to_max_digits = 0;
146
7.34k
                UInt32 to_precision = 0;
147
7.34k
                UInt32 to_scale = 0;
148
149
7.34k
                if constexpr (IsDataTypeDecimal<ToDataType>) {
150
7.34k
                    to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>();
151
152
7.34k
                    const auto* to_decimal_type =
153
7.34k
                            check_and_get_data_type<ToDataType>(to_type.get());
154
7.34k
                    to_precision = to_decimal_type->get_precision();
155
7.34k
                    ToDataType::check_type_precision(to_precision);
156
157
7.34k
                    to_scale = to_decimal_type->get_scale();
158
7.34k
                    ToDataType::check_type_scale(to_scale);
159
7.34k
                }
160
7.34k
                if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) {
161
7.34k
                    to_max_digits = NumberTraits::max_ascii_len<ToFieldType>();
162
7.34k
                    to_precision = to_max_digits;
163
7.34k
                }
164
165
7.34k
                bool narrow_integral = context->check_overflow_for_decimal() &&
166
7.34k
                                       (to_precision - to_scale) <= (from_precision - from_scale);
167
168
7.34k
                bool multiply_may_overflow = context->check_overflow_for_decimal();
169
7.34k
                if (to_scale > from_scale) {
170
7.34k
                    multiply_may_overflow &=
171
7.34k
                            (from_precision + to_scale - from_scale) >= to_max_digits;
172
7.34k
                }
173
7.34k
                return narrow_integral || multiply_may_overflow;
174
7.34k
            }
175
7.34k
            return false;
176
7.34k
        });
177
7.34k
    };
178
179
150k
    return call_on_index_and_data_type<void>(to_type->get_primitive_type(), make_default_wrapper);
180
173k
}
181
182
WrapperType prepare_remove_nullable(FunctionContext* context, const DataTypePtr& from_type,
183
194k
                                    const DataTypePtr& to_type) {
184
    /// Determine whether pre-processing and/or post-processing must take place during conversion.
185
194k
    bool result_is_nullable = to_type->is_nullable();
186
187
194k
    if (result_is_nullable) {
188
173k
        return [from_type, to_type](FunctionContext* context, Block& block,
189
173k
                                    const ColumnNumbers& arguments, uint32_t result,
190
173k
                                    size_t input_rows_count,
191
173k
                                    const NullMap::value_type* null_map = nullptr) {
192
173k
            auto from_type_not_nullable = remove_nullable(from_type);
193
173k
            auto to_type_not_nullable = remove_nullable(to_type);
194
195
173k
            bool replace_null_data_to_default = need_replace_null_data_to_default(
196
173k
                    context, from_type_not_nullable, to_type_not_nullable);
197
198
173k
            auto nested_result_index = block.columns();
199
173k
            block.insert(block.get_by_position(result).unnest_nullable());
200
173k
            auto nested_source_index = block.columns();
201
173k
            block.insert(block.get_by_position(arguments[0])
202
173k
                                 .unnest_nullable(replace_null_data_to_default));
203
204
173k
            const auto& arg_col = block.get_by_position(arguments[0]);
205
173k
            const NullMap::value_type* arg_null_map = nullptr;
206
173k
            if (const auto* nullable = check_and_get_column<ColumnNullable>(*arg_col.column)) {
207
169k
                arg_null_map = nullable->get_null_map_data().data();
208
169k
            }
209
173k
            RETURN_IF_ERROR(prepare_impl(context, from_type_not_nullable, to_type_not_nullable)(
210
173k
                    context, block, {nested_source_index}, nested_result_index, input_rows_count,
211
173k
                    arg_null_map));
212
213
149k
            block.get_by_position(result).column =
214
149k
                    wrap_in_nullable(block.get_by_position(nested_result_index).column, block,
215
149k
                                     arguments, input_rows_count);
216
217
149k
            block.erase(nested_source_index);
218
149k
            block.erase(nested_result_index);
219
149k
            return Status::OK();
220
173k
        };
221
173k
    } else {
222
20.9k
        return prepare_impl(context, from_type, to_type);
223
20.9k
    }
224
194k
}
225
226
/// 'from_type' and 'to_type' are nested types in case of Nullable.
227
/// 'requested_result_is_nullable' is true if CAST to Nullable type is requested.
228
// NOLINTNEXTLINE(readability-function-size)
229
WrapperType prepare_impl(FunctionContext* context, const DataTypePtr& origin_from_type,
230
194k
                         const DataTypePtr& origin_to_type) {
231
194k
    auto to_type = get_serialized_type(origin_to_type);
232
194k
    auto from_type = get_serialized_type(origin_from_type);
233
194k
    if (from_type->equals(*to_type)) {
234
22.3k
        return create_identity_wrapper(from_type);
235
22.3k
    }
236
237
171k
    const auto* from_variant_v1 =
238
171k
            dynamic_cast<const DataTypeVariant*>(remove_nullable(from_type).get());
239
171k
    const auto* to_variant_v1 =
240
171k
            dynamic_cast<const DataTypeVariant*>(remove_nullable(to_type).get());
241
171k
    const auto* from_variant_v2 =
242
171k
            dynamic_cast<const DataTypeVariantV2*>(remove_nullable(from_type).get());
243
171k
    const auto* to_variant_v2 =
244
171k
            dynamic_cast<const DataTypeVariantV2*>(remove_nullable(to_type).get());
245
171k
    if ((from_variant_v1 != nullptr && to_variant_v2 != nullptr) ||
246
171k
        (from_variant_v2 != nullptr && to_variant_v1 != nullptr)) {
247
0
        return CastWrapper::create_unsupport_wrapper(
248
0
                "Cast between legacy Variant and compute-only Variant V2 is not supported");
249
0
    }
250
251
    // variant needs to be judged first
252
171k
    if (to_type->get_primitive_type() == PrimitiveType::TYPE_VARIANT) {
253
43
        if (to_variant_v2 != nullptr) {
254
0
            return create_cast_to_variant_v2_wrapper(from_type);
255
0
        }
256
43
        DORIS_CHECK(to_variant_v1 != nullptr);
257
43
        return create_cast_to_variant_wrapper(from_type, *to_variant_v1);
258
43
    }
259
171k
    if (from_type->get_primitive_type() == PrimitiveType::TYPE_VARIANT) {
260
35
        if (from_variant_v2 != nullptr) {
261
0
            auto wrapper = create_cast_from_variant_v2_wrapper(to_type);
262
0
            return [wrapper = std::move(wrapper)](
263
0
                           FunctionContext* context, Block& block, const ColumnNumbers& arguments,
264
0
                           uint32_t result, size_t rows, const NullMap::value_type* null_map) {
265
0
                RETURN_IF_ERROR(wrapper(context, block, arguments, result, rows, null_map));
266
0
                auto& result_column = block.get_by_position(result).column;
267
0
                if (null_map == nullptr) {
268
0
                    const auto* nullable = check_and_get_column<ColumnNullable>(*result_column);
269
0
                    if (nullable != nullptr && !nullable->has_null()) {
270
0
                        result_column = nullable->get_nested_column_ptr();
271
0
                    }
272
0
                }
273
0
                return Status::OK();
274
0
            };
275
0
        }
276
35
        DORIS_CHECK(from_variant_v1 != nullptr);
277
35
        return create_cast_from_variant_wrapper(*from_variant_v1, to_type);
278
35
    }
279
280
171k
    if (from_type->get_primitive_type() == PrimitiveType::TYPE_JSONB) {
281
122
        return create_cast_from_jsonb_wrapper(static_cast<const DataTypeJsonb&>(*from_type),
282
122
                                              to_type,
283
122
                                              context ? context->jsonb_string_as_string() : false);
284
122
    }
285
286
171k
    switch (to_type->get_primitive_type()) {
287
50
    case PrimitiveType::TYPE_BOOLEAN:
288
50
        return create_boolean_wrapper(context, from_type);
289
6.01k
    case PrimitiveType::TYPE_TINYINT:
290
7.58k
    case PrimitiveType::TYPE_SMALLINT:
291
17.4k
    case PrimitiveType::TYPE_INT:
292
27.9k
    case PrimitiveType::TYPE_BIGINT:
293
29.0k
    case PrimitiveType::TYPE_LARGEINT:
294
29.0k
        return create_int_wrapper(context, from_type, to_type->get_primitive_type());
295
8.19k
    case PrimitiveType::TYPE_FLOAT:
296
22.9k
    case PrimitiveType::TYPE_DOUBLE:
297
22.9k
        return create_float_wrapper(context, from_type, to_type->get_primitive_type());
298
1
    case PrimitiveType::TYPE_DATE:
299
1
    case PrimitiveType::TYPE_DATETIME:
300
617
    case PrimitiveType::TYPE_DATEV2:
301
1.75k
    case PrimitiveType::TYPE_DATETIMEV2:
302
1.76k
    case PrimitiveType::TYPE_DATETIMEV2_NANO:
303
1.78k
    case PrimitiveType::TYPE_TIMEV2:
304
1.78k
        return create_datelike_wrapper(context, from_type, to_type->get_primitive_type());
305
0
    case PrimitiveType::TYPE_TIMESTAMPTZ:
306
0
        return create_timestamptz_wrapper(context, from_type);
307
7
    case PrimitiveType::TYPE_IPV4:
308
17
    case PrimitiveType::TYPE_IPV6:
309
17
        return create_ip_wrapper(context, from_type, to_type->get_primitive_type());
310
4
    case PrimitiveType::TYPE_DECIMALV2:
311
7.41k
    case PrimitiveType::TYPE_DECIMAL32:
312
30.3k
    case PrimitiveType::TYPE_DECIMAL64:
313
39.9k
    case PrimitiveType::TYPE_DECIMAL128I:
314
42.7k
    case PrimitiveType::TYPE_DECIMAL256:
315
42.7k
        return create_decimal_wrapper(context, from_type, to_type->get_primitive_type());
316
0
    case PrimitiveType::TYPE_CHAR:
317
6.19k
    case PrimitiveType::TYPE_VARCHAR:
318
19.1k
    case PrimitiveType::TYPE_STRING:
319
19.1k
        return create_string_wrapper(from_type);
320
2.47k
    case PrimitiveType::TYPE_ARRAY:
321
2.47k
        return create_array_wrapper(context, from_type,
322
2.47k
                                    static_cast<const DataTypeArray&>(*to_type));
323
2.22k
    case PrimitiveType::TYPE_STRUCT:
324
2.22k
        return create_struct_wrapper(context, from_type,
325
2.22k
                                     static_cast<const DataTypeStruct&>(*to_type));
326
2.28k
    case PrimitiveType::TYPE_MAP:
327
2.28k
        return create_map_wrapper(context, from_type, static_cast<const DataTypeMap&>(*to_type));
328
6
    case PrimitiveType::TYPE_HLL:
329
6
        return create_hll_wrapper(context, from_type, static_cast<const DataTypeHLL&>(*to_type));
330
4
    case PrimitiveType::TYPE_BITMAP:
331
4
        return create_bitmap_wrapper(context, from_type,
332
4
                                     static_cast<const DataTypeBitMap&>(*to_type));
333
2
    case PrimitiveType::TYPE_QUANTILE_STATE:
334
2
        return create_quantile_state_wrapper(context, from_type,
335
2
                                             static_cast<const DataTypeQuantileState&>(*to_type));
336
48.7k
    case PrimitiveType::TYPE_JSONB:
337
48.7k
        return create_cast_to_jsonb_wrapper(from_type, static_cast<const DataTypeJsonb&>(*to_type),
338
48.7k
                                            context ? context->string_as_jsonb_string() : false);
339
314
    case PrimitiveType::TYPE_VARBINARY:
340
314
        return create_varbinary_wrapper(from_type);
341
0
    default:
342
0
        break;
343
171k
    }
344
345
0
    return create_unsupport_wrapper(from_type->get_name(), to_type->get_name());
346
171k
}
347
348
} // namespace CastWrapper
349
350
class PreparedFunctionCast : public PreparedFunctionImpl {
351
public:
352
    explicit PreparedFunctionCast(CastWrapper::WrapperType&& wrapper_function_, const char* name_)
353
186k
            : wrapper_function(std::move(wrapper_function_)), name(name_) {}
354
355
0
    String get_name() const override { return name; }
356
357
protected:
358
    Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments,
359
186k
                        uint32_t result, size_t input_rows_count) const override {
360
186k
        return wrapper_function(context, block, arguments, result, input_rows_count, nullptr);
361
186k
    }
362
363
186k
    bool use_default_implementation_for_nulls() const override { return false; }
364
186k
    ColumnNumbers get_arguments_that_are_always_constant() const override { return {1}; }
365
366
private:
367
    CastWrapper::WrapperType wrapper_function;
368
    const char* name;
369
};
370
371
class FunctionCast final : public IFunctionBase {
372
public:
373
    FunctionCast(const char* name_, DataTypes argument_types_, DataTypePtr return_type_)
374
162k
            : name(name_),
375
162k
              argument_types(std::move(argument_types_)),
376
162k
              return_type(std::move(return_type_)) {}
377
378
186k
    const DataTypes& get_argument_types() const override { return argument_types; }
379
186k
    const DataTypePtr& get_return_type() const override { return return_type; }
380
381
    PreparedFunctionPtr prepare(FunctionContext* context, const Block& /*sample_block*/,
382
                                const ColumnNumbers& /*arguments*/,
383
186k
                                uint32_t /*result*/) const override {
384
186k
        return std::make_shared<PreparedFunctionCast>(
385
186k
                CastWrapper::prepare_unpack_dictionaries(context, get_argument_types()[0],
386
186k
                                                         get_return_type()),
387
186k
                name);
388
186k
    }
389
390
0
    String get_name() const override { return name; }
391
392
0
    bool is_use_default_implementation_for_constants() const override { return true; }
393
394
private:
395
    const char* name = nullptr;
396
397
    DataTypes argument_types;
398
    DataTypePtr return_type;
399
};
400
401
class FunctionBuilderCast : public FunctionBuilderImpl {
402
public:
403
    static constexpr auto name = "CAST";
404
162k
    static FunctionBuilderPtr create() { return std::make_shared<FunctionBuilderCast>(); }
405
406
162k
    FunctionBuilderCast() = default;
407
408
1
    String get_name() const override { return name; }
409
410
0
    size_t get_number_of_arguments() const override { return 2; }
411
412
0
    ColumnNumbers get_arguments_that_are_always_constant() const override { return {1}; }
413
414
protected:
415
    FunctionBasePtr build_impl(const ColumnsWithTypeAndName& arguments,
416
162k
                               const DataTypePtr& return_type) const override {
417
162k
        DataTypes data_types(arguments.size());
418
419
464k
        for (size_t i = 0; i < arguments.size(); ++i) {
420
302k
            data_types[i] = arguments[i].type;
421
302k
        }
422
423
162k
        return std::make_shared<FunctionCast>(name, data_types, return_type);
424
162k
    }
425
426
162k
    bool skip_return_type_check() const override { return true; }
427
0
    DataTypePtr get_return_type_impl(const ColumnsWithTypeAndName& arguments) const override {
428
0
        return nullptr;
429
0
    }
430
431
0
    bool use_default_implementation_for_nulls() const override { return false; }
432
};
433
434
7
void register_function_cast(SimpleFunctionFactory& factory) {
435
7
    factory.register_function<FunctionBuilderCast>();
436
7
}
437
} // namespace doris