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/primitive_type.h" |
25 | | #include "exprs/function/cast/cast_to_array.h" |
26 | | #include "exprs/function/cast/cast_to_boolean.h" |
27 | | #include "exprs/function/cast/cast_to_date.h" |
28 | | #include "exprs/function/cast/cast_to_decimal.h" |
29 | | #include "exprs/function/cast/cast_to_float.h" |
30 | | #include "exprs/function/cast/cast_to_int.h" |
31 | | #include "exprs/function/cast/cast_to_ip.h" |
32 | | #include "exprs/function/cast/cast_to_jsonb.h" |
33 | | #include "exprs/function/cast/cast_to_map.h" |
34 | | #include "exprs/function/cast/cast_to_string.h" |
35 | | #include "exprs/function/cast/cast_to_struct.h" |
36 | | #include "exprs/function/cast/cast_to_timestamptz.h" |
37 | | #include "exprs/function/cast/cast_to_variant.h" |
38 | | #include "exprs/function/simple_function_factory.h" |
39 | | |
40 | | namespace doris { |
41 | | |
42 | | namespace CastWrapper { |
43 | | |
44 | | WrapperType create_hll_wrapper(FunctionContext* context, const DataTypePtr& from_type_untyped, |
45 | 3 | const DataTypeHLL& to_type) { |
46 | | /// Conversion from String through parsing. |
47 | 3 | if (check_and_get_data_type<DataTypeString>(from_type_untyped.get())) { |
48 | 3 | return cast_from_string_to_generic; |
49 | 3 | } |
50 | | |
51 | 0 | return CastWrapper::create_unsupport_wrapper("Cast to HLL only support from String type"); |
52 | 3 | } |
53 | | |
54 | | WrapperType create_bitmap_wrapper(FunctionContext* context, const DataTypePtr& from_type_untyped, |
55 | 3 | const DataTypeBitMap& to_type) { |
56 | | /// Conversion from String through parsing. |
57 | 3 | if (check_and_get_data_type<DataTypeString>(from_type_untyped.get())) { |
58 | 3 | return cast_from_string_to_generic; |
59 | 3 | } |
60 | | |
61 | 0 | return CastWrapper::create_unsupport_wrapper("Cast to BitMap only support from String type"); |
62 | 3 | } |
63 | | |
64 | | WrapperType create_quantile_state_wrapper(FunctionContext* context, |
65 | | const DataTypePtr& from_type_untyped, |
66 | 1 | const DataTypeQuantileState& to_type) { |
67 | | /// Conversion from String through parsing. |
68 | 1 | if (check_and_get_data_type<DataTypeString>(from_type_untyped.get())) { |
69 | 1 | return cast_from_string_to_generic; |
70 | 1 | } |
71 | | |
72 | 0 | return CastWrapper::create_unsupport_wrapper( |
73 | 0 | "Cast to QuantileState only support from String type"); |
74 | 1 | } |
75 | | |
76 | 2 | WrapperType create_varbinary_wrapper(const DataTypePtr& from_type_untyped) { |
77 | | /// Conversion from String through parsing. |
78 | 2 | if (check_and_get_data_type<DataTypeString>(from_type_untyped.get())) { |
79 | 2 | return cast_from_string_to_generic; |
80 | 2 | } |
81 | | |
82 | 0 | return CastWrapper::create_unsupport_wrapper("Cast to Varbinary only support from String type"); |
83 | 2 | } |
84 | | |
85 | | WrapperType prepare_unpack_dictionaries(FunctionContext* context, const DataTypePtr& from_type, |
86 | 407k | const DataTypePtr& to_type) { |
87 | 407k | const auto& from_nested = from_type; |
88 | 407k | const auto& to_nested = to_type; |
89 | | |
90 | 407k | if (from_type->is_null_literal()) { |
91 | 1.72k | if (!to_nested->is_nullable()) { |
92 | 0 | return CastWrapper::create_unsupport_wrapper( |
93 | 0 | "Cannot convert NULL to a non-nullable type"); |
94 | 0 | } |
95 | | |
96 | 1.72k | return [](FunctionContext* context, Block& block, const ColumnNumbers&, uint32_t result, |
97 | 1.72k | size_t input_rows_count, const NullMap::value_type* null_map = nullptr) { |
98 | | /// TODO: remove this in the future. |
99 | 1.72k | auto& res = block.get_by_position(result); |
100 | 1.72k | res.column = res.type->create_column_const_with_default_value(input_rows_count) |
101 | 1.72k | ->convert_to_full_column_if_const(); |
102 | 1.72k | return Status::OK(); |
103 | 1.72k | }; |
104 | 1.72k | } |
105 | | |
106 | 405k | auto wrapper = prepare_remove_nullable(context, from_nested, to_nested); |
107 | | |
108 | 405k | return wrapper; |
109 | 407k | } |
110 | | |
111 | | bool need_replace_null_data_to_default(FunctionContext* context, const DataTypePtr& from_type, |
112 | 377k | const DataTypePtr& to_type) { |
113 | 377k | if (from_type->equals(*to_type)) { |
114 | 67.2k | return false; |
115 | 67.2k | } |
116 | | |
117 | 310k | auto make_default_wrapper = [&](const auto& types) -> bool { |
118 | 223k | using Types = std::decay_t<decltype(types)>; |
119 | 223k | using ToDataType = typename Types::LeftType; |
120 | | |
121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || |
122 | | IsDatelikeV2Types<ToDataType> || |
123 | 38.1k | std::is_same_v<ToDataType, DataTypeTimeV2>)) { |
124 | 38.1k | return false; |
125 | 38.1k | } |
126 | 0 | return call_on_index_and_data_type< |
127 | 223k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { |
128 | 169k | using Types2 = std::decay_t<decltype(types2)>; |
129 | 169k | using FromDataType = typename Types2::LeftType; |
130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || |
131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || |
132 | 85.2k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { |
133 | 85.2k | return false; |
134 | 85.2k | } |
135 | 56.7k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { |
136 | 56.7k | using FromFieldType = typename FromDataType::FieldType; |
137 | 56.7k | using ToFieldType = typename ToDataType::FieldType; |
138 | 56.7k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); |
139 | 56.7k | UInt32 from_scale = 0; |
140 | | |
141 | 56.7k | if constexpr (IsDataTypeDecimal<FromDataType>) { |
142 | 25.0k | const auto* from_decimal_type = |
143 | 25.0k | check_and_get_data_type<FromDataType>(from_type.get()); |
144 | 25.0k | from_precision = |
145 | 25.0k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); |
146 | 25.0k | from_scale = from_decimal_type->get_scale(); |
147 | 25.0k | } |
148 | | |
149 | 56.7k | UInt32 to_max_digits = 0; |
150 | 56.7k | UInt32 to_precision = 0; |
151 | 56.7k | UInt32 to_scale = 0; |
152 | | |
153 | 56.7k | if constexpr (IsDataTypeDecimal<ToDataType>) { |
154 | 50.6k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); |
155 | | |
156 | 50.6k | const auto* to_decimal_type = |
157 | 50.6k | check_and_get_data_type<ToDataType>(to_type.get()); |
158 | 50.6k | to_precision = to_decimal_type->get_precision(); |
159 | 50.6k | ToDataType::check_type_precision(to_precision); |
160 | | |
161 | 50.6k | to_scale = to_decimal_type->get_scale(); |
162 | 50.6k | ToDataType::check_type_scale(to_scale); |
163 | 50.6k | } |
164 | 56.7k | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { |
165 | 6.10k | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); |
166 | 6.10k | to_precision = to_max_digits; |
167 | 6.10k | } |
168 | | |
169 | 56.7k | bool narrow_integral = context->check_overflow_for_decimal() && |
170 | 56.7k | (to_precision - to_scale) <= (from_precision - from_scale); |
171 | | |
172 | 56.7k | bool multiply_may_overflow = context->check_overflow_for_decimal(); |
173 | 56.7k | if (to_scale > from_scale) { |
174 | 12.3k | multiply_may_overflow &= |
175 | 12.3k | (from_precision + to_scale - from_scale) >= to_max_digits; |
176 | 12.3k | } |
177 | 56.7k | return narrow_integral || multiply_may_overflow; |
178 | 56.7k | } |
179 | 0 | return false; |
180 | 169k | }); 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 | 127 | 21 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 21 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 21 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 21 | return false; | 180 | 21 | }); |
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ENKUlSI_E_clINSB_INSC_ILSD_4EEESE_EEEEbSI_ Line | Count | Source | 127 | 14 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 14 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 14 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 14 | return false; | 180 | 14 | }); |
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 | 127 | 32 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 32 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 32 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 32 | return false; | 180 | 32 | }); |
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 | 127 | 97 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 97 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 97 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 97 | return false; | 180 | 97 | }); |
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 | 127 | 7 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 7 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 7 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 7 | return false; | 180 | 7 | }); |
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 | 127 | 2 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 2 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 2 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 2 | return false; | 180 | 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 | 127 | 7 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 7 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 7 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 7 | return false; | 180 | 7 | }); |
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 | 127 | 10 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 10 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 10 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 10 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 10 | using FromFieldType = typename FromDataType::FieldType; | 137 | 10 | using ToFieldType = typename ToDataType::FieldType; | 138 | 10 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 10 | UInt32 from_scale = 0; | 140 | | | 141 | 10 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 10 | const auto* from_decimal_type = | 143 | 10 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 10 | from_precision = | 145 | 10 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 10 | from_scale = from_decimal_type->get_scale(); | 147 | 10 | } | 148 | | | 149 | 10 | UInt32 to_max_digits = 0; | 150 | 10 | UInt32 to_precision = 0; | 151 | 10 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 10 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 10 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 10 | to_precision = to_max_digits; | 167 | 10 | } | 168 | | | 169 | 10 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 10 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 10 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 10 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 10 | return narrow_integral || multiply_may_overflow; | 178 | 10 | } | 179 | 0 | return false; | 180 | 10 | }); |
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 | 127 | 5 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 5 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 5 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 5 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 5 | using FromFieldType = typename FromDataType::FieldType; | 137 | 5 | using ToFieldType = typename ToDataType::FieldType; | 138 | 5 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 5 | UInt32 from_scale = 0; | 140 | | | 141 | 5 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 5 | const auto* from_decimal_type = | 143 | 5 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 5 | from_precision = | 145 | 5 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 5 | from_scale = from_decimal_type->get_scale(); | 147 | 5 | } | 148 | | | 149 | 5 | UInt32 to_max_digits = 0; | 150 | 5 | UInt32 to_precision = 0; | 151 | 5 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 5 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 5 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 5 | to_precision = to_max_digits; | 167 | 5 | } | 168 | | | 169 | 5 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 5 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 5 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 5 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 5 | return narrow_integral || multiply_may_overflow; | 178 | 5 | } | 179 | 0 | return false; | 180 | 5 | }); |
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 | 127 | 2 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 2 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 2 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 2 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 2 | using FromFieldType = typename FromDataType::FieldType; | 137 | 2 | using ToFieldType = typename ToDataType::FieldType; | 138 | 2 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 2 | UInt32 from_scale = 0; | 140 | | | 141 | 2 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 2 | const auto* from_decimal_type = | 143 | 2 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 2 | from_precision = | 145 | 2 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 2 | from_scale = from_decimal_type->get_scale(); | 147 | 2 | } | 148 | | | 149 | 2 | UInt32 to_max_digits = 0; | 150 | 2 | UInt32 to_precision = 0; | 151 | 2 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 2 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 2 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 2 | to_precision = to_max_digits; | 167 | 2 | } | 168 | | | 169 | 2 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 2 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 2 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 2 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 2 | return narrow_integral || multiply_may_overflow; | 178 | 2 | } | 179 | 0 | return false; | 180 | 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 | 127 | 5 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 5 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 5 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 5 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 5 | using FromFieldType = typename FromDataType::FieldType; | 137 | 5 | using ToFieldType = typename ToDataType::FieldType; | 138 | 5 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 5 | UInt32 from_scale = 0; | 140 | | | 141 | 5 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 5 | const auto* from_decimal_type = | 143 | 5 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 5 | from_precision = | 145 | 5 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 5 | from_scale = from_decimal_type->get_scale(); | 147 | 5 | } | 148 | | | 149 | 5 | UInt32 to_max_digits = 0; | 150 | 5 | UInt32 to_precision = 0; | 151 | 5 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 5 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 5 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 5 | to_precision = to_max_digits; | 167 | 5 | } | 168 | | | 169 | 5 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 5 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 5 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 5 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 5 | return narrow_integral || multiply_may_overflow; | 178 | 5 | } | 179 | 0 | return false; | 180 | 5 | }); |
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 | 127 | 2 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 2 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 2 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 2 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 2 | using FromFieldType = typename FromDataType::FieldType; | 137 | 2 | using ToFieldType = typename ToDataType::FieldType; | 138 | 2 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 2 | UInt32 from_scale = 0; | 140 | | | 141 | 2 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 2 | const auto* from_decimal_type = | 143 | 2 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 2 | from_precision = | 145 | 2 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 2 | from_scale = from_decimal_type->get_scale(); | 147 | 2 | } | 148 | | | 149 | 2 | UInt32 to_max_digits = 0; | 150 | 2 | UInt32 to_precision = 0; | 151 | 2 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 2 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 2 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 2 | to_precision = to_max_digits; | 167 | 2 | } | 168 | | | 169 | 2 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 2 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 2 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 2 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 2 | return narrow_integral || multiply_may_overflow; | 178 | 2 | } | 179 | 0 | return false; | 180 | 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_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 | 127 | 759 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 759 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 759 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 759 | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 759 | return false; | 134 | 759 | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 759 | return false; | 180 | 759 | }); |
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 | 127 | 541 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 541 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 541 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 541 | return false; | 180 | 541 | }); |
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 | 127 | 10 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 10 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 10 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 10 | return false; | 180 | 10 | }); |
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 | 127 | 135 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 135 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 135 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 135 | return false; | 180 | 135 | }); |
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 | 127 | 275 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 275 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 275 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 275 | return false; | 180 | 275 | }); |
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 | 127 | 7 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 7 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 7 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 7 | return false; | 180 | 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 | 127 | 23 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 23 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 23 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 23 | return false; | 180 | 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 | 127 | 30 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 30 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 30 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 30 | return false; | 180 | 30 | }); |
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 | 127 | 19 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 19 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 19 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 19 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 19 | using FromFieldType = typename FromDataType::FieldType; | 137 | 19 | using ToFieldType = typename ToDataType::FieldType; | 138 | 19 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 19 | UInt32 from_scale = 0; | 140 | | | 141 | 19 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 19 | const auto* from_decimal_type = | 143 | 19 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 19 | from_precision = | 145 | 19 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 19 | from_scale = from_decimal_type->get_scale(); | 147 | 19 | } | 148 | | | 149 | 19 | UInt32 to_max_digits = 0; | 150 | 19 | UInt32 to_precision = 0; | 151 | 19 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 19 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 19 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 19 | to_precision = to_max_digits; | 167 | 19 | } | 168 | | | 169 | 19 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 19 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 19 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 19 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 19 | return narrow_integral || multiply_may_overflow; | 178 | 19 | } | 179 | 0 | return false; | 180 | 19 | }); |
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 | 127 | 24 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 24 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 24 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 24 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 24 | using FromFieldType = typename FromDataType::FieldType; | 137 | 24 | using ToFieldType = typename ToDataType::FieldType; | 138 | 24 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 24 | UInt32 from_scale = 0; | 140 | | | 141 | 24 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 24 | const auto* from_decimal_type = | 143 | 24 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 24 | from_precision = | 145 | 24 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 24 | from_scale = from_decimal_type->get_scale(); | 147 | 24 | } | 148 | | | 149 | 24 | UInt32 to_max_digits = 0; | 150 | 24 | UInt32 to_precision = 0; | 151 | 24 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 24 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 24 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 24 | to_precision = to_max_digits; | 167 | 24 | } | 168 | | | 169 | 24 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 24 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 24 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 24 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 24 | return narrow_integral || multiply_may_overflow; | 178 | 24 | } | 179 | 0 | return false; | 180 | 24 | }); |
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 | 127 | 8 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 8 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 8 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 8 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 8 | using FromFieldType = typename FromDataType::FieldType; | 137 | 8 | using ToFieldType = typename ToDataType::FieldType; | 138 | 8 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 8 | UInt32 from_scale = 0; | 140 | | | 141 | 8 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 8 | const auto* from_decimal_type = | 143 | 8 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 8 | from_precision = | 145 | 8 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 8 | from_scale = from_decimal_type->get_scale(); | 147 | 8 | } | 148 | | | 149 | 8 | UInt32 to_max_digits = 0; | 150 | 8 | UInt32 to_precision = 0; | 151 | 8 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 8 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 8 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 8 | to_precision = to_max_digits; | 167 | 8 | } | 168 | | | 169 | 8 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 8 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 8 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 8 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 8 | return narrow_integral || multiply_may_overflow; | 178 | 8 | } | 179 | 0 | return false; | 180 | 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 | 127 | 24 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 24 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 24 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 24 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 24 | using FromFieldType = typename FromDataType::FieldType; | 137 | 24 | using ToFieldType = typename ToDataType::FieldType; | 138 | 24 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 24 | UInt32 from_scale = 0; | 140 | | | 141 | 24 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 24 | const auto* from_decimal_type = | 143 | 24 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 24 | from_precision = | 145 | 24 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 24 | from_scale = from_decimal_type->get_scale(); | 147 | 24 | } | 148 | | | 149 | 24 | UInt32 to_max_digits = 0; | 150 | 24 | UInt32 to_precision = 0; | 151 | 24 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 24 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 24 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 24 | to_precision = to_max_digits; | 167 | 24 | } | 168 | | | 169 | 24 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 24 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 24 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 24 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 24 | return narrow_integral || multiply_may_overflow; | 178 | 24 | } | 179 | 0 | return false; | 180 | 24 | }); |
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 | 127 | 24 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 24 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 24 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 24 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 24 | using FromFieldType = typename FromDataType::FieldType; | 137 | 24 | using ToFieldType = typename ToDataType::FieldType; | 138 | 24 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 24 | UInt32 from_scale = 0; | 140 | | | 141 | 24 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 24 | const auto* from_decimal_type = | 143 | 24 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 24 | from_precision = | 145 | 24 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 24 | from_scale = from_decimal_type->get_scale(); | 147 | 24 | } | 148 | | | 149 | 24 | UInt32 to_max_digits = 0; | 150 | 24 | UInt32 to_precision = 0; | 151 | 24 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 24 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 24 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 24 | to_precision = to_max_digits; | 167 | 24 | } | 168 | | | 169 | 24 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 24 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 24 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 24 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 24 | return narrow_integral || multiply_may_overflow; | 178 | 24 | } | 179 | 0 | return false; | 180 | 24 | }); |
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 | 127 | 72 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 72 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 72 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 72 | return false; | 180 | 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 | 127 | 24 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 24 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 24 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 24 | return false; | 180 | 24 | }); |
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 | 127 | 320 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 320 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 320 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 320 | return false; | 180 | 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 | 127 | 2.86k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 2.86k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 2.86k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 2.86k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 2.86k | return false; | 134 | 2.86k | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 2.86k | return false; | 180 | 2.86k | }); |
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 | 127 | 95 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 95 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 95 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 95 | return false; | 180 | 95 | }); |
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 | 127 | 2.17k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 2.17k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 2.17k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 2.17k | return false; | 180 | 2.17k | }); |
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 | 127 | 136 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 136 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 136 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 136 | return false; | 180 | 136 | }); |
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 | 127 | 100 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 100 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 100 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 100 | return false; | 180 | 100 | }); |
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 | 127 | 20 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 20 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 20 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 20 | return false; | 180 | 20 | }); |
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 | 127 | 21 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 21 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 21 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 21 | return false; | 180 | 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 | 127 | 25 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 25 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 25 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 25 | return false; | 180 | 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 | 127 | 23 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 23 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 23 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 23 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 23 | using FromFieldType = typename FromDataType::FieldType; | 137 | 23 | using ToFieldType = typename ToDataType::FieldType; | 138 | 23 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 23 | UInt32 from_scale = 0; | 140 | | | 141 | 23 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 23 | const auto* from_decimal_type = | 143 | 23 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 23 | from_precision = | 145 | 23 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 23 | from_scale = from_decimal_type->get_scale(); | 147 | 23 | } | 148 | | | 149 | 23 | UInt32 to_max_digits = 0; | 150 | 23 | UInt32 to_precision = 0; | 151 | 23 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 23 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 23 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 23 | to_precision = to_max_digits; | 167 | 23 | } | 168 | | | 169 | 23 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 23 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 23 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 23 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 23 | return narrow_integral || multiply_may_overflow; | 178 | 23 | } | 179 | 0 | return false; | 180 | 23 | }); |
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 | 127 | 25 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 25 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 25 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 25 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 25 | using FromFieldType = typename FromDataType::FieldType; | 137 | 25 | using ToFieldType = typename ToDataType::FieldType; | 138 | 25 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 25 | UInt32 from_scale = 0; | 140 | | | 141 | 25 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 25 | const auto* from_decimal_type = | 143 | 25 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 25 | from_precision = | 145 | 25 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 25 | from_scale = from_decimal_type->get_scale(); | 147 | 25 | } | 148 | | | 149 | 25 | UInt32 to_max_digits = 0; | 150 | 25 | UInt32 to_precision = 0; | 151 | 25 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 25 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 25 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 25 | to_precision = to_max_digits; | 167 | 25 | } | 168 | | | 169 | 25 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 25 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 25 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 25 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 25 | return narrow_integral || multiply_may_overflow; | 178 | 25 | } | 179 | 0 | return false; | 180 | 25 | }); |
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 | 127 | 8 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 8 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 8 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 8 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 8 | using FromFieldType = typename FromDataType::FieldType; | 137 | 8 | using ToFieldType = typename ToDataType::FieldType; | 138 | 8 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 8 | UInt32 from_scale = 0; | 140 | | | 141 | 8 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 8 | const auto* from_decimal_type = | 143 | 8 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 8 | from_precision = | 145 | 8 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 8 | from_scale = from_decimal_type->get_scale(); | 147 | 8 | } | 148 | | | 149 | 8 | UInt32 to_max_digits = 0; | 150 | 8 | UInt32 to_precision = 0; | 151 | 8 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 8 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 8 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 8 | to_precision = to_max_digits; | 167 | 8 | } | 168 | | | 169 | 8 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 8 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 8 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 8 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 8 | return narrow_integral || multiply_may_overflow; | 178 | 8 | } | 179 | 0 | return false; | 180 | 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 | 127 | 26 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 26 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 26 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 26 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 26 | using FromFieldType = typename FromDataType::FieldType; | 137 | 26 | using ToFieldType = typename ToDataType::FieldType; | 138 | 26 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 26 | UInt32 from_scale = 0; | 140 | | | 141 | 26 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 26 | const auto* from_decimal_type = | 143 | 26 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 26 | from_precision = | 145 | 26 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 26 | from_scale = from_decimal_type->get_scale(); | 147 | 26 | } | 148 | | | 149 | 26 | UInt32 to_max_digits = 0; | 150 | 26 | UInt32 to_precision = 0; | 151 | 26 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 26 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 26 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 26 | to_precision = to_max_digits; | 167 | 26 | } | 168 | | | 169 | 26 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 26 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 26 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 26 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 26 | return narrow_integral || multiply_may_overflow; | 178 | 26 | } | 179 | 0 | return false; | 180 | 26 | }); |
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 | 127 | 25 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 25 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 25 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 25 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 25 | using FromFieldType = typename FromDataType::FieldType; | 137 | 25 | using ToFieldType = typename ToDataType::FieldType; | 138 | 25 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 25 | UInt32 from_scale = 0; | 140 | | | 141 | 25 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 25 | const auto* from_decimal_type = | 143 | 25 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 25 | from_precision = | 145 | 25 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 25 | from_scale = from_decimal_type->get_scale(); | 147 | 25 | } | 148 | | | 149 | 25 | UInt32 to_max_digits = 0; | 150 | 25 | UInt32 to_precision = 0; | 151 | 25 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 25 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 25 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 25 | to_precision = to_max_digits; | 167 | 25 | } | 168 | | | 169 | 25 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 25 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 25 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 25 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 25 | return narrow_integral || multiply_may_overflow; | 178 | 25 | } | 179 | 0 | return false; | 180 | 25 | }); |
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 | 127 | 72 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 72 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 72 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 72 | return false; | 180 | 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 | 127 | 24 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 24 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 24 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 24 | return false; | 180 | 24 | }); |
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 | 127 | 320 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 320 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 320 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 320 | return false; | 180 | 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 | 127 | 2.45k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 2.45k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 2.45k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 2.45k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 2.45k | return false; | 134 | 2.45k | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 2.45k | return false; | 180 | 2.45k | }); |
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 | 127 | 44 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 44 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 44 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 44 | return false; | 180 | 44 | }); |
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 | 127 | 2.54k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 2.54k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 2.54k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 2.54k | return false; | 180 | 2.54k | }); |
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 | 127 | 403 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 403 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 403 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 403 | return false; | 180 | 403 | }); |
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 | 127 | 1.52k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 1.52k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 1.52k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 1.52k | return false; | 180 | 1.52k | }); |
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 | 127 | 13 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 13 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 13 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 13 | return false; | 180 | 13 | }); |
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 | 127 | 20 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 20 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 20 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 20 | return false; | 180 | 20 | }); |
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 | 127 | 113 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 113 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 113 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 113 | return false; | 180 | 113 | }); |
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 | 127 | 21 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 21 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 21 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 21 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 21 | using FromFieldType = typename FromDataType::FieldType; | 137 | 21 | using ToFieldType = typename ToDataType::FieldType; | 138 | 21 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 21 | UInt32 from_scale = 0; | 140 | | | 141 | 21 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 21 | const auto* from_decimal_type = | 143 | 21 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 21 | from_precision = | 145 | 21 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 21 | from_scale = from_decimal_type->get_scale(); | 147 | 21 | } | 148 | | | 149 | 21 | UInt32 to_max_digits = 0; | 150 | 21 | UInt32 to_precision = 0; | 151 | 21 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 21 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 21 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 21 | to_precision = to_max_digits; | 167 | 21 | } | 168 | | | 169 | 21 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 21 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 21 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 21 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 21 | return narrow_integral || multiply_may_overflow; | 178 | 21 | } | 179 | 0 | return false; | 180 | 21 | }); |
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 | 127 | 38 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 38 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 38 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 38 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 38 | using FromFieldType = typename FromDataType::FieldType; | 137 | 38 | using ToFieldType = typename ToDataType::FieldType; | 138 | 38 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 38 | UInt32 from_scale = 0; | 140 | | | 141 | 38 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 38 | const auto* from_decimal_type = | 143 | 38 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 38 | from_precision = | 145 | 38 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 38 | from_scale = from_decimal_type->get_scale(); | 147 | 38 | } | 148 | | | 149 | 38 | UInt32 to_max_digits = 0; | 150 | 38 | UInt32 to_precision = 0; | 151 | 38 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 38 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 38 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 38 | to_precision = to_max_digits; | 167 | 38 | } | 168 | | | 169 | 38 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 38 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 38 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 38 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 38 | return narrow_integral || multiply_may_overflow; | 178 | 38 | } | 179 | 0 | return false; | 180 | 38 | }); |
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 | 127 | 8 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 8 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 8 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 8 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 8 | using FromFieldType = typename FromDataType::FieldType; | 137 | 8 | using ToFieldType = typename ToDataType::FieldType; | 138 | 8 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 8 | UInt32 from_scale = 0; | 140 | | | 141 | 8 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 8 | const auto* from_decimal_type = | 143 | 8 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 8 | from_precision = | 145 | 8 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 8 | from_scale = from_decimal_type->get_scale(); | 147 | 8 | } | 148 | | | 149 | 8 | UInt32 to_max_digits = 0; | 150 | 8 | UInt32 to_precision = 0; | 151 | 8 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 8 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 8 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 8 | to_precision = to_max_digits; | 167 | 8 | } | 168 | | | 169 | 8 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 8 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 8 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 8 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 8 | return narrow_integral || multiply_may_overflow; | 178 | 8 | } | 179 | 0 | return false; | 180 | 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 | 127 | 250 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 250 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 250 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 250 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 250 | using FromFieldType = typename FromDataType::FieldType; | 137 | 250 | using ToFieldType = typename ToDataType::FieldType; | 138 | 250 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 250 | UInt32 from_scale = 0; | 140 | | | 141 | 250 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 250 | const auto* from_decimal_type = | 143 | 250 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 250 | from_precision = | 145 | 250 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 250 | from_scale = from_decimal_type->get_scale(); | 147 | 250 | } | 148 | | | 149 | 250 | UInt32 to_max_digits = 0; | 150 | 250 | UInt32 to_precision = 0; | 151 | 250 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 250 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 250 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 250 | to_precision = to_max_digits; | 167 | 250 | } | 168 | | | 169 | 250 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 250 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 250 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 250 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 250 | return narrow_integral || multiply_may_overflow; | 178 | 250 | } | 179 | 0 | return false; | 180 | 250 | }); |
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 | 127 | 21 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 21 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 21 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 21 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 21 | using FromFieldType = typename FromDataType::FieldType; | 137 | 21 | using ToFieldType = typename ToDataType::FieldType; | 138 | 21 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 21 | UInt32 from_scale = 0; | 140 | | | 141 | 21 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 21 | const auto* from_decimal_type = | 143 | 21 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 21 | from_precision = | 145 | 21 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 21 | from_scale = from_decimal_type->get_scale(); | 147 | 21 | } | 148 | | | 149 | 21 | UInt32 to_max_digits = 0; | 150 | 21 | UInt32 to_precision = 0; | 151 | 21 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 21 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 21 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 21 | to_precision = to_max_digits; | 167 | 21 | } | 168 | | | 169 | 21 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 21 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 21 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 21 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 21 | return narrow_integral || multiply_may_overflow; | 178 | 21 | } | 179 | 0 | return false; | 180 | 21 | }); |
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 | 127 | 16 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 16 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 16 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 16 | return false; | 180 | 16 | }); |
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 | 127 | 24 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 24 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 24 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 24 | return false; | 180 | 24 | }); |
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 | 127 | 276 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 276 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 276 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 276 | return false; | 180 | 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 | 127 | 17.9k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 17.9k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 17.9k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 17.9k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 17.9k | return false; | 134 | 17.9k | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 17.9k | return false; | 180 | 17.9k | }); |
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 | 127 | 418 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 418 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 418 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 418 | return false; | 180 | 418 | }); |
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 | 127 | 1.15k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 1.15k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 1.15k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 1.15k | return false; | 180 | 1.15k | }); |
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 | 127 | 668 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 668 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 668 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 668 | return false; | 180 | 668 | }); |
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 | 127 | 6.42k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 6.42k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 6.42k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 6.42k | return false; | 180 | 6.42k | }); |
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 | 127 | 311 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 311 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 311 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 311 | return false; | 180 | 311 | }); |
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 | 127 | 638 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 638 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 638 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 638 | return false; | 180 | 638 | }); |
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 | 127 | 2.32k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 2.32k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 2.32k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 2.32k | return false; | 180 | 2.32k | }); |
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 | 127 | 312 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 312 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 312 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 312 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 312 | using FromFieldType = typename FromDataType::FieldType; | 137 | 312 | using ToFieldType = typename ToDataType::FieldType; | 138 | 312 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 312 | UInt32 from_scale = 0; | 140 | | | 141 | 312 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 312 | const auto* from_decimal_type = | 143 | 312 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 312 | from_precision = | 145 | 312 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 312 | from_scale = from_decimal_type->get_scale(); | 147 | 312 | } | 148 | | | 149 | 312 | UInt32 to_max_digits = 0; | 150 | 312 | UInt32 to_precision = 0; | 151 | 312 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 312 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 312 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 312 | to_precision = to_max_digits; | 167 | 312 | } | 168 | | | 169 | 312 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 312 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 312 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 312 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 312 | return narrow_integral || multiply_may_overflow; | 178 | 312 | } | 179 | 0 | return false; | 180 | 312 | }); |
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 | 127 | 316 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 316 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 316 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 316 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 316 | using FromFieldType = typename FromDataType::FieldType; | 137 | 316 | using ToFieldType = typename ToDataType::FieldType; | 138 | 316 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 316 | UInt32 from_scale = 0; | 140 | | | 141 | 316 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 316 | const auto* from_decimal_type = | 143 | 316 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 316 | from_precision = | 145 | 316 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 316 | from_scale = from_decimal_type->get_scale(); | 147 | 316 | } | 148 | | | 149 | 316 | UInt32 to_max_digits = 0; | 150 | 316 | UInt32 to_precision = 0; | 151 | 316 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 316 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 316 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 316 | to_precision = to_max_digits; | 167 | 316 | } | 168 | | | 169 | 316 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 316 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 316 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 316 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 317 | return narrow_integral || multiply_may_overflow; | 178 | 316 | } | 179 | 0 | return false; | 180 | 316 | }); |
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 | 127 | 303 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 303 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 303 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 303 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 303 | using FromFieldType = typename FromDataType::FieldType; | 137 | 303 | using ToFieldType = typename ToDataType::FieldType; | 138 | 303 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 303 | UInt32 from_scale = 0; | 140 | | | 141 | 303 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 303 | const auto* from_decimal_type = | 143 | 303 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 303 | from_precision = | 145 | 303 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 303 | from_scale = from_decimal_type->get_scale(); | 147 | 303 | } | 148 | | | 149 | 303 | UInt32 to_max_digits = 0; | 150 | 303 | UInt32 to_precision = 0; | 151 | 303 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 303 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 303 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 303 | to_precision = to_max_digits; | 167 | 303 | } | 168 | | | 169 | 303 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 303 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 303 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 303 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 303 | return narrow_integral || multiply_may_overflow; | 178 | 303 | } | 179 | 0 | return false; | 180 | 303 | }); |
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 | 127 | 746 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 746 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 746 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 746 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 746 | using FromFieldType = typename FromDataType::FieldType; | 137 | 746 | using ToFieldType = typename ToDataType::FieldType; | 138 | 746 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 746 | UInt32 from_scale = 0; | 140 | | | 141 | 746 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 746 | const auto* from_decimal_type = | 143 | 746 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 746 | from_precision = | 145 | 746 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 746 | from_scale = from_decimal_type->get_scale(); | 147 | 746 | } | 148 | | | 149 | 746 | UInt32 to_max_digits = 0; | 150 | 746 | UInt32 to_precision = 0; | 151 | 746 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 746 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 746 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 746 | to_precision = to_max_digits; | 167 | 746 | } | 168 | | | 169 | 746 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 746 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 746 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 746 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 746 | return narrow_integral || multiply_may_overflow; | 178 | 746 | } | 179 | 0 | return false; | 180 | 746 | }); |
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 | 127 | 21 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 21 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 21 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 21 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 21 | using FromFieldType = typename FromDataType::FieldType; | 137 | 21 | using ToFieldType = typename ToDataType::FieldType; | 138 | 21 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 21 | UInt32 from_scale = 0; | 140 | | | 141 | 21 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 21 | const auto* from_decimal_type = | 143 | 21 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 21 | from_precision = | 145 | 21 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 21 | from_scale = from_decimal_type->get_scale(); | 147 | 21 | } | 148 | | | 149 | 21 | UInt32 to_max_digits = 0; | 150 | 21 | UInt32 to_precision = 0; | 151 | 21 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 21 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 21 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 21 | to_precision = to_max_digits; | 167 | 21 | } | 168 | | | 169 | 21 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 21 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 21 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 21 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 21 | return narrow_integral || multiply_may_overflow; | 178 | 21 | } | 179 | 0 | return false; | 180 | 21 | }); |
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 | 127 | 1.24k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 1.24k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 1.24k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 1.24k | return false; | 180 | 1.24k | }); |
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 | 127 | 1.25k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 1.25k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 1.25k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 1.25k | return false; | 180 | 1.25k | }); |
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 | 127 | 4 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 4 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 4 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 4 | return false; | 180 | 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 | 127 | 19.5k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 19.5k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 19.5k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 19.5k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 19.5k | return false; | 134 | 19.5k | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 19.5k | return false; | 180 | 19.5k | }); |
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 | 127 | 126 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 126 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 126 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 126 | return false; | 180 | 126 | }); |
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 | 127 | 109 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 109 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 109 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 109 | return false; | 180 | 109 | }); |
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 | 127 | 79 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 79 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 79 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 79 | return false; | 180 | 79 | }); |
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 | 127 | 135 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 135 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 135 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 135 | return false; | 180 | 135 | }); |
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 | 127 | 599 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 599 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 599 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 599 | return false; | 180 | 599 | }); |
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 | 127 | 9 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 9 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 9 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 9 | return false; | 180 | 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 | 127 | 13 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 13 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 13 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 13 | return false; | 180 | 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 | 127 | 18 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 18 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 18 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 18 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 18 | using FromFieldType = typename FromDataType::FieldType; | 137 | 18 | using ToFieldType = typename ToDataType::FieldType; | 138 | 18 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 18 | UInt32 from_scale = 0; | 140 | | | 141 | 18 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 18 | const auto* from_decimal_type = | 143 | 18 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 18 | from_precision = | 145 | 18 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 18 | from_scale = from_decimal_type->get_scale(); | 147 | 18 | } | 148 | | | 149 | 18 | UInt32 to_max_digits = 0; | 150 | 18 | UInt32 to_precision = 0; | 151 | 18 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 18 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 18 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 18 | to_precision = to_max_digits; | 167 | 18 | } | 168 | | | 169 | 18 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 18 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 18 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 18 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 18 | return narrow_integral || multiply_may_overflow; | 178 | 18 | } | 179 | 0 | return false; | 180 | 18 | }); |
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 | 127 | 21 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 21 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 21 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 21 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 21 | using FromFieldType = typename FromDataType::FieldType; | 137 | 21 | using ToFieldType = typename ToDataType::FieldType; | 138 | 21 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 21 | UInt32 from_scale = 0; | 140 | | | 141 | 21 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 21 | const auto* from_decimal_type = | 143 | 21 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 21 | from_precision = | 145 | 21 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 21 | from_scale = from_decimal_type->get_scale(); | 147 | 21 | } | 148 | | | 149 | 21 | UInt32 to_max_digits = 0; | 150 | 21 | UInt32 to_precision = 0; | 151 | 21 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 21 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 21 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 21 | to_precision = to_max_digits; | 167 | 21 | } | 168 | | | 169 | 21 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 21 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 21 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 21 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 21 | return narrow_integral || multiply_may_overflow; | 178 | 21 | } | 179 | 0 | return false; | 180 | 21 | }); |
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 | 127 | 8 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 8 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 8 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 8 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 8 | using FromFieldType = typename FromDataType::FieldType; | 137 | 8 | using ToFieldType = typename ToDataType::FieldType; | 138 | 8 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 8 | UInt32 from_scale = 0; | 140 | | | 141 | 8 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 8 | const auto* from_decimal_type = | 143 | 8 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 8 | from_precision = | 145 | 8 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 8 | from_scale = from_decimal_type->get_scale(); | 147 | 8 | } | 148 | | | 149 | 8 | UInt32 to_max_digits = 0; | 150 | 8 | UInt32 to_precision = 0; | 151 | 8 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 8 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 8 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 8 | to_precision = to_max_digits; | 167 | 8 | } | 168 | | | 169 | 8 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 8 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 8 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 8 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 8 | return narrow_integral || multiply_may_overflow; | 178 | 8 | } | 179 | 0 | return false; | 180 | 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 | 127 | 21 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 21 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 21 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 21 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 21 | using FromFieldType = typename FromDataType::FieldType; | 137 | 21 | using ToFieldType = typename ToDataType::FieldType; | 138 | 21 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 21 | UInt32 from_scale = 0; | 140 | | | 141 | 21 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 21 | const auto* from_decimal_type = | 143 | 21 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 21 | from_precision = | 145 | 21 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 21 | from_scale = from_decimal_type->get_scale(); | 147 | 21 | } | 148 | | | 149 | 21 | UInt32 to_max_digits = 0; | 150 | 21 | UInt32 to_precision = 0; | 151 | 21 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 21 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 21 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 21 | to_precision = to_max_digits; | 167 | 21 | } | 168 | | | 169 | 21 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 21 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 21 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 21 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 21 | return narrow_integral || multiply_may_overflow; | 178 | 21 | } | 179 | 0 | return false; | 180 | 21 | }); |
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 | 127 | 783 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 783 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 783 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 783 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 783 | using FromFieldType = typename FromDataType::FieldType; | 137 | 783 | using ToFieldType = typename ToDataType::FieldType; | 138 | 783 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 783 | UInt32 from_scale = 0; | 140 | | | 141 | 783 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 783 | const auto* from_decimal_type = | 143 | 783 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 783 | from_precision = | 145 | 783 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 783 | from_scale = from_decimal_type->get_scale(); | 147 | 783 | } | 148 | | | 149 | 783 | UInt32 to_max_digits = 0; | 150 | 783 | UInt32 to_precision = 0; | 151 | 783 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 783 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 783 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 783 | to_precision = to_max_digits; | 167 | 783 | } | 168 | | | 169 | 783 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 783 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 783 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 783 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 783 | return narrow_integral || multiply_may_overflow; | 178 | 783 | } | 179 | 0 | return false; | 180 | 783 | }); |
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 | 127 | 2 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 2 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 2 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 2 | return false; | 180 | 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 | 127 | 16 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 16 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 16 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 16 | return false; | 180 | 16 | }); |
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 | 127 | 4 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 4 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 4 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 4 | return false; | 180 | 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 | 127 | 2.30k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 2.30k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 2.30k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 2.30k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 2.30k | return false; | 134 | 2.30k | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 2.30k | return false; | 180 | 2.30k | }); |
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 | 127 | 2 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 2 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 2 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 2 | return false; | 180 | 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 | 127 | 29 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 29 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 29 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 29 | return false; | 180 | 29 | }); |
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 | 127 | 6 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 6 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 6 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 6 | return false; | 180 | 6 | }); |
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 | 127 | 18 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 18 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 18 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 18 | return false; | 180 | 18 | }); |
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 | 127 | 6 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 6 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 6 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 6 | return false; | 180 | 6 | }); |
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 | 127 | 120 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 120 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 120 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 120 | return false; | 180 | 120 | }); |
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 | 127 | 89 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 89 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 89 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 89 | return false; | 180 | 89 | }); |
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 | 127 | 117 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 117 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 117 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 117 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 117 | using FromFieldType = typename FromDataType::FieldType; | 137 | 117 | using ToFieldType = typename ToDataType::FieldType; | 138 | 117 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 117 | UInt32 from_scale = 0; | 140 | | | 141 | 117 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 117 | const auto* from_decimal_type = | 143 | 117 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 117 | from_precision = | 145 | 117 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 117 | from_scale = from_decimal_type->get_scale(); | 147 | 117 | } | 148 | | | 149 | 117 | UInt32 to_max_digits = 0; | 150 | 117 | UInt32 to_precision = 0; | 151 | 117 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 117 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 117 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 117 | to_precision = to_max_digits; | 167 | 117 | } | 168 | | | 169 | 117 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 117 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 117 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 117 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 117 | return narrow_integral || multiply_may_overflow; | 178 | 117 | } | 179 | 0 | return false; | 180 | 117 | }); |
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 | 127 | 112 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 112 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 112 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 112 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 112 | using FromFieldType = typename FromDataType::FieldType; | 137 | 112 | using ToFieldType = typename ToDataType::FieldType; | 138 | 112 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 112 | UInt32 from_scale = 0; | 140 | | | 141 | 112 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 112 | const auto* from_decimal_type = | 143 | 112 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 112 | from_precision = | 145 | 112 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 112 | from_scale = from_decimal_type->get_scale(); | 147 | 112 | } | 148 | | | 149 | 112 | UInt32 to_max_digits = 0; | 150 | 112 | UInt32 to_precision = 0; | 151 | 112 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 112 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 112 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 112 | to_precision = to_max_digits; | 167 | 112 | } | 168 | | | 169 | 112 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 112 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 112 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 112 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 112 | return narrow_integral || multiply_may_overflow; | 178 | 112 | } | 179 | 0 | return false; | 180 | 112 | }); |
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 | 127 | 14 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 14 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 14 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 14 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 14 | using FromFieldType = typename FromDataType::FieldType; | 137 | 14 | using ToFieldType = typename ToDataType::FieldType; | 138 | 14 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 14 | UInt32 from_scale = 0; | 140 | | | 141 | 14 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 14 | const auto* from_decimal_type = | 143 | 14 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 14 | from_precision = | 145 | 14 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 14 | from_scale = from_decimal_type->get_scale(); | 147 | 14 | } | 148 | | | 149 | 14 | UInt32 to_max_digits = 0; | 150 | 14 | UInt32 to_precision = 0; | 151 | 14 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 14 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 14 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 14 | to_precision = to_max_digits; | 167 | 14 | } | 168 | | | 169 | 14 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 14 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 14 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 14 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 14 | return narrow_integral || multiply_may_overflow; | 178 | 14 | } | 179 | 0 | return false; | 180 | 14 | }); |
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 | 127 | 101 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 101 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 101 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 101 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 101 | using FromFieldType = typename FromDataType::FieldType; | 137 | 101 | using ToFieldType = typename ToDataType::FieldType; | 138 | 101 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 101 | UInt32 from_scale = 0; | 140 | | | 141 | 101 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 101 | const auto* from_decimal_type = | 143 | 101 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 101 | from_precision = | 145 | 101 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 101 | from_scale = from_decimal_type->get_scale(); | 147 | 101 | } | 148 | | | 149 | 101 | UInt32 to_max_digits = 0; | 150 | 101 | UInt32 to_precision = 0; | 151 | 101 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 101 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 101 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 101 | to_precision = to_max_digits; | 167 | 101 | } | 168 | | | 169 | 101 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 101 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 101 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 101 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 101 | return narrow_integral || multiply_may_overflow; | 178 | 101 | } | 179 | 0 | return false; | 180 | 101 | }); |
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 | 127 | 554 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 554 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 554 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 554 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 554 | using FromFieldType = typename FromDataType::FieldType; | 137 | 554 | using ToFieldType = typename ToDataType::FieldType; | 138 | 554 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 554 | UInt32 from_scale = 0; | 140 | | | 141 | 554 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 554 | const auto* from_decimal_type = | 143 | 554 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 554 | from_precision = | 145 | 554 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 554 | from_scale = from_decimal_type->get_scale(); | 147 | 554 | } | 148 | | | 149 | 554 | UInt32 to_max_digits = 0; | 150 | 554 | UInt32 to_precision = 0; | 151 | 554 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 554 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 554 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 554 | to_precision = to_max_digits; | 167 | 554 | } | 168 | | | 169 | 554 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 554 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 554 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 554 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 554 | return narrow_integral || multiply_may_overflow; | 178 | 554 | } | 179 | 0 | return false; | 180 | 554 | }); |
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 | 127 | 39 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 39 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 39 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 39 | return false; | 180 | 39 | }); |
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 | 127 | 7.78k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 7.78k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 7.78k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 7.78k | return false; | 180 | 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_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 | 127 | 162 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 162 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 162 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 162 | return false; | 180 | 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 | 127 | 1.62k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 1.62k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 1.62k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 1.62k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 1.62k | return false; | 134 | 1.62k | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 1.62k | return false; | 180 | 1.62k | }); |
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 | 127 | 348 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 348 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 348 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 348 | return false; | 180 | 348 | }); |
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 | 127 | 466 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 466 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 466 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 466 | return false; | 180 | 466 | }); |
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 | 127 | 1.00k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 1.00k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 1.00k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 1.00k | return false; | 180 | 1.00k | }); |
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 | 127 | 1.18k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 1.18k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 1.18k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 1.18k | return false; | 180 | 1.18k | }); |
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 | 127 | 1.39k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 1.39k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 1.39k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 1.39k | return false; | 180 | 1.39k | }); |
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 | 127 | 197 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 197 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 197 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 197 | return false; | 180 | 197 | }); |
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 | 127 | 1.18k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 1.18k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 1.18k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 1.18k | return false; | 180 | 1.18k | }); |
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 | 127 | 456 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 456 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 456 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 456 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 456 | using FromFieldType = typename FromDataType::FieldType; | 137 | 456 | using ToFieldType = typename ToDataType::FieldType; | 138 | 456 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 456 | UInt32 from_scale = 0; | 140 | | | 141 | 456 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 456 | const auto* from_decimal_type = | 143 | 456 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 456 | from_precision = | 145 | 456 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 456 | from_scale = from_decimal_type->get_scale(); | 147 | 456 | } | 148 | | | 149 | 456 | UInt32 to_max_digits = 0; | 150 | 456 | UInt32 to_precision = 0; | 151 | 456 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 456 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 456 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 456 | to_precision = to_max_digits; | 167 | 456 | } | 168 | | | 169 | 456 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 456 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 456 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 456 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 456 | return narrow_integral || multiply_may_overflow; | 178 | 456 | } | 179 | 0 | return false; | 180 | 456 | }); |
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 | 127 | 334 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 334 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 334 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 334 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 334 | using FromFieldType = typename FromDataType::FieldType; | 137 | 334 | using ToFieldType = typename ToDataType::FieldType; | 138 | 334 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 334 | UInt32 from_scale = 0; | 140 | | | 141 | 334 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 334 | const auto* from_decimal_type = | 143 | 334 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 334 | from_precision = | 145 | 334 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 334 | from_scale = from_decimal_type->get_scale(); | 147 | 334 | } | 148 | | | 149 | 334 | UInt32 to_max_digits = 0; | 150 | 334 | UInt32 to_precision = 0; | 151 | 334 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 334 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 334 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 334 | to_precision = to_max_digits; | 167 | 334 | } | 168 | | | 169 | 334 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 334 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 334 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 334 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 334 | return narrow_integral || multiply_may_overflow; | 178 | 334 | } | 179 | 0 | return false; | 180 | 334 | }); |
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 | 127 | 54 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 54 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 54 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 54 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 54 | using FromFieldType = typename FromDataType::FieldType; | 137 | 54 | using ToFieldType = typename ToDataType::FieldType; | 138 | 54 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 54 | UInt32 from_scale = 0; | 140 | | | 141 | 54 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 54 | const auto* from_decimal_type = | 143 | 54 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 54 | from_precision = | 145 | 54 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 54 | from_scale = from_decimal_type->get_scale(); | 147 | 54 | } | 148 | | | 149 | 54 | UInt32 to_max_digits = 0; | 150 | 54 | UInt32 to_precision = 0; | 151 | 54 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 54 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 54 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 54 | to_precision = to_max_digits; | 167 | 54 | } | 168 | | | 169 | 54 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 54 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 54 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 54 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 54 | return narrow_integral || multiply_may_overflow; | 178 | 54 | } | 179 | 0 | return false; | 180 | 54 | }); |
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 | 127 | 689 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 689 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 689 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 689 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 689 | using FromFieldType = typename FromDataType::FieldType; | 137 | 689 | using ToFieldType = typename ToDataType::FieldType; | 138 | 689 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 689 | UInt32 from_scale = 0; | 140 | | | 141 | 689 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 689 | const auto* from_decimal_type = | 143 | 689 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 689 | from_precision = | 145 | 689 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 689 | from_scale = from_decimal_type->get_scale(); | 147 | 689 | } | 148 | | | 149 | 689 | UInt32 to_max_digits = 0; | 150 | 689 | UInt32 to_precision = 0; | 151 | 689 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 689 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 689 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 689 | to_precision = to_max_digits; | 167 | 689 | } | 168 | | | 169 | 689 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 689 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 689 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 689 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 689 | return narrow_integral || multiply_may_overflow; | 178 | 689 | } | 179 | 0 | return false; | 180 | 689 | }); |
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 | 127 | 544 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 544 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 544 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 544 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 544 | using FromFieldType = typename FromDataType::FieldType; | 137 | 544 | using ToFieldType = typename ToDataType::FieldType; | 138 | 544 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 544 | UInt32 from_scale = 0; | 140 | | | 141 | 544 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 544 | const auto* from_decimal_type = | 143 | 544 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 544 | from_precision = | 145 | 544 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 544 | from_scale = from_decimal_type->get_scale(); | 147 | 544 | } | 148 | | | 149 | 544 | UInt32 to_max_digits = 0; | 150 | 544 | UInt32 to_precision = 0; | 151 | 544 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 544 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 544 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 544 | to_precision = to_max_digits; | 167 | 544 | } | 168 | | | 169 | 544 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 544 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 544 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 544 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 544 | return narrow_integral || multiply_may_overflow; | 178 | 544 | } | 179 | 0 | return false; | 180 | 544 | }); |
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 | 127 | 130 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 130 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 130 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 130 | return false; | 180 | 130 | }); |
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 | 127 | 7.88k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 7.88k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 7.88k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 7.88k | return false; | 180 | 7.88k | }); |
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 | 127 | 162 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 162 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 162 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 162 | return false; | 180 | 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 | 127 | 6.72k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 6.72k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 6.72k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 6.72k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 6.72k | return false; | 134 | 6.72k | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 6.72k | return false; | 180 | 6.72k | }); |
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 | 127 | 19 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 19 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 19 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 19 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 19 | using FromFieldType = typename FromDataType::FieldType; | 137 | 19 | using ToFieldType = typename ToDataType::FieldType; | 138 | 19 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 19 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 19 | UInt32 to_max_digits = 0; | 150 | 19 | UInt32 to_precision = 0; | 151 | 19 | UInt32 to_scale = 0; | 152 | | | 153 | 19 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 19 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 19 | const auto* to_decimal_type = | 157 | 19 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 19 | to_precision = to_decimal_type->get_precision(); | 159 | 19 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 19 | to_scale = to_decimal_type->get_scale(); | 162 | 19 | ToDataType::check_type_scale(to_scale); | 163 | 19 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 19 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 19 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 19 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 19 | if (to_scale > from_scale) { | 174 | 18 | multiply_may_overflow &= | 175 | 18 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 18 | } | 177 | 19 | return narrow_integral || multiply_may_overflow; | 178 | 19 | } | 179 | 0 | return false; | 180 | 19 | }); |
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 | 127 | 508 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 508 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 508 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 508 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 508 | using FromFieldType = typename FromDataType::FieldType; | 137 | 508 | using ToFieldType = typename ToDataType::FieldType; | 138 | 508 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 508 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 508 | UInt32 to_max_digits = 0; | 150 | 508 | UInt32 to_precision = 0; | 151 | 508 | UInt32 to_scale = 0; | 152 | | | 153 | 508 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 508 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 508 | const auto* to_decimal_type = | 157 | 508 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 508 | to_precision = to_decimal_type->get_precision(); | 159 | 508 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 508 | to_scale = to_decimal_type->get_scale(); | 162 | 508 | ToDataType::check_type_scale(to_scale); | 163 | 508 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 508 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 508 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 508 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 508 | if (to_scale > from_scale) { | 174 | 303 | multiply_may_overflow &= | 175 | 303 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 303 | } | 177 | 508 | return narrow_integral || multiply_may_overflow; | 178 | 508 | } | 179 | 0 | return false; | 180 | 508 | }); |
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 | 127 | 516 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 516 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 516 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 516 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 516 | using FromFieldType = typename FromDataType::FieldType; | 137 | 516 | using ToFieldType = typename ToDataType::FieldType; | 138 | 516 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 516 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 516 | UInt32 to_max_digits = 0; | 150 | 516 | UInt32 to_precision = 0; | 151 | 516 | UInt32 to_scale = 0; | 152 | | | 153 | 516 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 516 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 516 | const auto* to_decimal_type = | 157 | 516 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 516 | to_precision = to_decimal_type->get_precision(); | 159 | 516 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 516 | to_scale = to_decimal_type->get_scale(); | 162 | 516 | ToDataType::check_type_scale(to_scale); | 163 | 516 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 516 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 516 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 516 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 516 | if (to_scale > from_scale) { | 174 | 262 | multiply_may_overflow &= | 175 | 262 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 262 | } | 177 | 516 | return narrow_integral || multiply_may_overflow; | 178 | 516 | } | 179 | 0 | return false; | 180 | 516 | }); |
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 | 127 | 552 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 552 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 552 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 552 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 552 | using FromFieldType = typename FromDataType::FieldType; | 137 | 552 | using ToFieldType = typename ToDataType::FieldType; | 138 | 552 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 552 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 552 | UInt32 to_max_digits = 0; | 150 | 552 | UInt32 to_precision = 0; | 151 | 552 | UInt32 to_scale = 0; | 152 | | | 153 | 552 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 552 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 552 | const auto* to_decimal_type = | 157 | 552 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 552 | to_precision = to_decimal_type->get_precision(); | 159 | 552 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 552 | to_scale = to_decimal_type->get_scale(); | 162 | 552 | ToDataType::check_type_scale(to_scale); | 163 | 552 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 552 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 552 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 552 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 552 | if (to_scale > from_scale) { | 174 | 280 | multiply_may_overflow &= | 175 | 280 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 280 | } | 177 | 552 | return narrow_integral || multiply_may_overflow; | 178 | 552 | } | 179 | 0 | return false; | 180 | 552 | }); |
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 | 127 | 612 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 612 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 612 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 612 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 612 | using FromFieldType = typename FromDataType::FieldType; | 137 | 612 | using ToFieldType = typename ToDataType::FieldType; | 138 | 612 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 612 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 612 | UInt32 to_max_digits = 0; | 150 | 612 | UInt32 to_precision = 0; | 151 | 612 | UInt32 to_scale = 0; | 152 | | | 153 | 612 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 612 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 612 | const auto* to_decimal_type = | 157 | 612 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 612 | to_precision = to_decimal_type->get_precision(); | 159 | 612 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 612 | to_scale = to_decimal_type->get_scale(); | 162 | 612 | ToDataType::check_type_scale(to_scale); | 163 | 612 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 612 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 612 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 612 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 612 | if (to_scale > from_scale) { | 174 | 266 | multiply_may_overflow &= | 175 | 266 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 266 | } | 177 | 612 | return narrow_integral || multiply_may_overflow; | 178 | 612 | } | 179 | 0 | return false; | 180 | 612 | }); |
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 | 127 | 549 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 549 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 549 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 549 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 549 | using FromFieldType = typename FromDataType::FieldType; | 137 | 549 | using ToFieldType = typename ToDataType::FieldType; | 138 | 549 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 549 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 549 | UInt32 to_max_digits = 0; | 150 | 549 | UInt32 to_precision = 0; | 151 | 549 | UInt32 to_scale = 0; | 152 | | | 153 | 549 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 549 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 549 | const auto* to_decimal_type = | 157 | 549 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 549 | to_precision = to_decimal_type->get_precision(); | 159 | 549 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 549 | to_scale = to_decimal_type->get_scale(); | 162 | 549 | ToDataType::check_type_scale(to_scale); | 163 | 549 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 549 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 549 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 549 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 549 | if (to_scale > from_scale) { | 174 | 278 | multiply_may_overflow &= | 175 | 278 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 278 | } | 177 | 549 | return narrow_integral || multiply_may_overflow; | 178 | 549 | } | 179 | 0 | return false; | 180 | 549 | }); |
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 | 127 | 104 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 104 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 104 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 104 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 104 | using FromFieldType = typename FromDataType::FieldType; | 137 | 104 | using ToFieldType = typename ToDataType::FieldType; | 138 | 104 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 104 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 104 | UInt32 to_max_digits = 0; | 150 | 104 | UInt32 to_precision = 0; | 151 | 104 | UInt32 to_scale = 0; | 152 | | | 153 | 104 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 104 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 104 | const auto* to_decimal_type = | 157 | 104 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 104 | to_precision = to_decimal_type->get_precision(); | 159 | 104 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 104 | to_scale = to_decimal_type->get_scale(); | 162 | 104 | ToDataType::check_type_scale(to_scale); | 163 | 104 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 104 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 104 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 104 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 104 | if (to_scale > from_scale) { | 174 | 68 | multiply_may_overflow &= | 175 | 68 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 68 | } | 177 | 104 | return narrow_integral || multiply_may_overflow; | 178 | 104 | } | 179 | 0 | return false; | 180 | 104 | }); |
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 | 127 | 308 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 308 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 308 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 308 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 308 | using FromFieldType = typename FromDataType::FieldType; | 137 | 308 | using ToFieldType = typename ToDataType::FieldType; | 138 | 308 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 308 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 308 | UInt32 to_max_digits = 0; | 150 | 308 | UInt32 to_precision = 0; | 151 | 308 | UInt32 to_scale = 0; | 152 | | | 153 | 308 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 308 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 308 | const auto* to_decimal_type = | 157 | 308 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 308 | to_precision = to_decimal_type->get_precision(); | 159 | 308 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 308 | to_scale = to_decimal_type->get_scale(); | 162 | 308 | ToDataType::check_type_scale(to_scale); | 163 | 308 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 308 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 308 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 308 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 308 | if (to_scale > from_scale) { | 174 | 258 | multiply_may_overflow &= | 175 | 258 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 258 | } | 177 | 308 | return narrow_integral || multiply_may_overflow; | 178 | 308 | } | 179 | 0 | return false; | 180 | 308 | }); |
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 | 127 | 417 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 417 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 417 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 417 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 417 | using FromFieldType = typename FromDataType::FieldType; | 137 | 417 | using ToFieldType = typename ToDataType::FieldType; | 138 | 417 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 417 | UInt32 from_scale = 0; | 140 | | | 141 | 417 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 417 | const auto* from_decimal_type = | 143 | 417 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 417 | from_precision = | 145 | 417 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 417 | from_scale = from_decimal_type->get_scale(); | 147 | 417 | } | 148 | | | 149 | 417 | UInt32 to_max_digits = 0; | 150 | 417 | UInt32 to_precision = 0; | 151 | 417 | UInt32 to_scale = 0; | 152 | | | 153 | 417 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 417 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 417 | const auto* to_decimal_type = | 157 | 417 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 417 | to_precision = to_decimal_type->get_precision(); | 159 | 417 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 417 | to_scale = to_decimal_type->get_scale(); | 162 | 417 | ToDataType::check_type_scale(to_scale); | 163 | 417 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 417 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 417 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 417 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 417 | if (to_scale > from_scale) { | 174 | 90 | multiply_may_overflow &= | 175 | 90 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 90 | } | 177 | 417 | return narrow_integral || multiply_may_overflow; | 178 | 417 | } | 179 | 0 | return false; | 180 | 417 | }); |
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 | 127 | 564 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 564 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 564 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 564 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 564 | using FromFieldType = typename FromDataType::FieldType; | 137 | 564 | using ToFieldType = typename ToDataType::FieldType; | 138 | 564 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 564 | UInt32 from_scale = 0; | 140 | | | 141 | 564 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 564 | const auto* from_decimal_type = | 143 | 564 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 564 | from_precision = | 145 | 564 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 564 | from_scale = from_decimal_type->get_scale(); | 147 | 564 | } | 148 | | | 149 | 564 | UInt32 to_max_digits = 0; | 150 | 564 | UInt32 to_precision = 0; | 151 | 564 | UInt32 to_scale = 0; | 152 | | | 153 | 564 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 564 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 564 | const auto* to_decimal_type = | 157 | 564 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 564 | to_precision = to_decimal_type->get_precision(); | 159 | 564 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 564 | to_scale = to_decimal_type->get_scale(); | 162 | 564 | ToDataType::check_type_scale(to_scale); | 163 | 564 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 564 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 564 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 564 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 564 | if (to_scale > from_scale) { | 174 | 142 | multiply_may_overflow &= | 175 | 142 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 142 | } | 177 | 564 | return narrow_integral || multiply_may_overflow; | 178 | 564 | } | 179 | 0 | return false; | 180 | 564 | }); |
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 | 127 | 238 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 238 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 238 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 238 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 238 | using FromFieldType = typename FromDataType::FieldType; | 137 | 238 | using ToFieldType = typename ToDataType::FieldType; | 138 | 238 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 238 | UInt32 from_scale = 0; | 140 | | | 141 | 238 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 238 | const auto* from_decimal_type = | 143 | 238 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 238 | from_precision = | 145 | 238 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 238 | from_scale = from_decimal_type->get_scale(); | 147 | 238 | } | 148 | | | 149 | 238 | UInt32 to_max_digits = 0; | 150 | 238 | UInt32 to_precision = 0; | 151 | 238 | UInt32 to_scale = 0; | 152 | | | 153 | 238 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 238 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 238 | const auto* to_decimal_type = | 157 | 238 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 238 | to_precision = to_decimal_type->get_precision(); | 159 | 238 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 238 | to_scale = to_decimal_type->get_scale(); | 162 | 238 | ToDataType::check_type_scale(to_scale); | 163 | 238 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 238 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 238 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 238 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 238 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 238 | return narrow_integral || multiply_may_overflow; | 178 | 238 | } | 179 | 0 | return false; | 180 | 238 | }); |
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 | 127 | 380 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 380 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 380 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 380 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 380 | using FromFieldType = typename FromDataType::FieldType; | 137 | 380 | using ToFieldType = typename ToDataType::FieldType; | 138 | 380 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 380 | UInt32 from_scale = 0; | 140 | | | 141 | 380 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 380 | const auto* from_decimal_type = | 143 | 380 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 380 | from_precision = | 145 | 380 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 380 | from_scale = from_decimal_type->get_scale(); | 147 | 380 | } | 148 | | | 149 | 380 | UInt32 to_max_digits = 0; | 150 | 380 | UInt32 to_precision = 0; | 151 | 380 | UInt32 to_scale = 0; | 152 | | | 153 | 380 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 380 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 380 | const auto* to_decimal_type = | 157 | 380 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 380 | to_precision = to_decimal_type->get_precision(); | 159 | 380 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 380 | to_scale = to_decimal_type->get_scale(); | 162 | 380 | ToDataType::check_type_scale(to_scale); | 163 | 380 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 380 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 380 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 380 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 380 | if (to_scale > from_scale) { | 174 | 113 | multiply_may_overflow &= | 175 | 113 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 113 | } | 177 | 380 | return narrow_integral || multiply_may_overflow; | 178 | 380 | } | 179 | 0 | return false; | 180 | 380 | }); |
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 | 127 | 303 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 303 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 303 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 303 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 303 | using FromFieldType = typename FromDataType::FieldType; | 137 | 303 | using ToFieldType = typename ToDataType::FieldType; | 138 | 303 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 303 | UInt32 from_scale = 0; | 140 | | | 141 | 303 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 303 | const auto* from_decimal_type = | 143 | 303 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 303 | from_precision = | 145 | 303 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 303 | from_scale = from_decimal_type->get_scale(); | 147 | 303 | } | 148 | | | 149 | 303 | UInt32 to_max_digits = 0; | 150 | 303 | UInt32 to_precision = 0; | 151 | 303 | UInt32 to_scale = 0; | 152 | | | 153 | 303 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 303 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 303 | const auto* to_decimal_type = | 157 | 303 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 303 | to_precision = to_decimal_type->get_precision(); | 159 | 303 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 303 | to_scale = to_decimal_type->get_scale(); | 162 | 303 | ToDataType::check_type_scale(to_scale); | 163 | 303 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 303 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 303 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 303 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 303 | if (to_scale > from_scale) { | 174 | 79 | multiply_may_overflow &= | 175 | 79 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 79 | } | 177 | 303 | return narrow_integral || multiply_may_overflow; | 178 | 303 | } | 179 | 0 | return false; | 180 | 303 | }); |
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_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 | 127 | 2.79k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 2.79k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 2.79k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 2.79k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 2.79k | return false; | 134 | 2.79k | } | 135 | 2.79k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 2.79k | using FromFieldType = typename FromDataType::FieldType; | 137 | 2.79k | using ToFieldType = typename ToDataType::FieldType; | 138 | 2.79k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 2.79k | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 2.79k | UInt32 to_max_digits = 0; | 150 | 2.79k | UInt32 to_precision = 0; | 151 | 2.79k | UInt32 to_scale = 0; | 152 | | | 153 | 2.79k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 2.79k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 2.79k | const auto* to_decimal_type = | 157 | 2.79k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 2.79k | to_precision = to_decimal_type->get_precision(); | 159 | 2.79k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 2.79k | to_scale = to_decimal_type->get_scale(); | 162 | 2.79k | ToDataType::check_type_scale(to_scale); | 163 | 2.79k | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 2.79k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 2.79k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 2.79k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 2.79k | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 2.79k | return narrow_integral || multiply_may_overflow; | 178 | 2.79k | } | 179 | 0 | return false; | 180 | 2.79k | }); |
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 | 127 | 17 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 17 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 17 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 17 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 17 | using FromFieldType = typename FromDataType::FieldType; | 137 | 17 | using ToFieldType = typename ToDataType::FieldType; | 138 | 17 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 17 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 17 | UInt32 to_max_digits = 0; | 150 | 17 | UInt32 to_precision = 0; | 151 | 17 | UInt32 to_scale = 0; | 152 | | | 153 | 17 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 17 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 17 | const auto* to_decimal_type = | 157 | 17 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 17 | to_precision = to_decimal_type->get_precision(); | 159 | 17 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 17 | to_scale = to_decimal_type->get_scale(); | 162 | 17 | ToDataType::check_type_scale(to_scale); | 163 | 17 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 17 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 17 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 17 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 17 | if (to_scale > from_scale) { | 174 | 16 | multiply_may_overflow &= | 175 | 16 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 16 | } | 177 | 17 | return narrow_integral || multiply_may_overflow; | 178 | 17 | } | 179 | 0 | return false; | 180 | 17 | }); |
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 | 127 | 72 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 72 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 72 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 72 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 72 | using FromFieldType = typename FromDataType::FieldType; | 137 | 72 | using ToFieldType = typename ToDataType::FieldType; | 138 | 72 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 72 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 72 | UInt32 to_max_digits = 0; | 150 | 72 | UInt32 to_precision = 0; | 151 | 72 | UInt32 to_scale = 0; | 152 | | | 153 | 72 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 72 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 72 | const auto* to_decimal_type = | 157 | 72 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 72 | to_precision = to_decimal_type->get_precision(); | 159 | 72 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 72 | to_scale = to_decimal_type->get_scale(); | 162 | 72 | ToDataType::check_type_scale(to_scale); | 163 | 72 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 72 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 72 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 72 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 72 | if (to_scale > from_scale) { | 174 | 59 | multiply_may_overflow &= | 175 | 59 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 59 | } | 177 | 72 | return narrow_integral || multiply_may_overflow; | 178 | 72 | } | 179 | 0 | return false; | 180 | 72 | }); |
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 | 127 | 48 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 48 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 48 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 48 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 48 | using FromFieldType = typename FromDataType::FieldType; | 137 | 48 | using ToFieldType = typename ToDataType::FieldType; | 138 | 48 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 48 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 48 | UInt32 to_max_digits = 0; | 150 | 48 | UInt32 to_precision = 0; | 151 | 48 | UInt32 to_scale = 0; | 152 | | | 153 | 48 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 48 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 48 | const auto* to_decimal_type = | 157 | 48 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 48 | to_precision = to_decimal_type->get_precision(); | 159 | 48 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 48 | to_scale = to_decimal_type->get_scale(); | 162 | 48 | ToDataType::check_type_scale(to_scale); | 163 | 48 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 48 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 48 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 48 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 48 | if (to_scale > from_scale) { | 174 | 37 | multiply_may_overflow &= | 175 | 37 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 37 | } | 177 | 48 | return narrow_integral || multiply_may_overflow; | 178 | 48 | } | 179 | 0 | return false; | 180 | 48 | }); |
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 | 127 | 497 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 497 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 497 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 497 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 497 | using FromFieldType = typename FromDataType::FieldType; | 137 | 497 | using ToFieldType = typename ToDataType::FieldType; | 138 | 497 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 497 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 497 | UInt32 to_max_digits = 0; | 150 | 497 | UInt32 to_precision = 0; | 151 | 497 | UInt32 to_scale = 0; | 152 | | | 153 | 497 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 497 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 497 | const auto* to_decimal_type = | 157 | 497 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 497 | to_precision = to_decimal_type->get_precision(); | 159 | 497 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 497 | to_scale = to_decimal_type->get_scale(); | 162 | 497 | ToDataType::check_type_scale(to_scale); | 163 | 497 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 497 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 497 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 497 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 497 | if (to_scale > from_scale) { | 174 | 337 | multiply_may_overflow &= | 175 | 337 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 337 | } | 177 | 497 | return narrow_integral || multiply_may_overflow; | 178 | 497 | } | 179 | 0 | return false; | 180 | 497 | }); |
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 | 127 | 50 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 50 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 50 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 50 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 50 | using FromFieldType = typename FromDataType::FieldType; | 137 | 50 | using ToFieldType = typename ToDataType::FieldType; | 138 | 50 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 50 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 50 | UInt32 to_max_digits = 0; | 150 | 50 | UInt32 to_precision = 0; | 151 | 50 | UInt32 to_scale = 0; | 152 | | | 153 | 50 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 50 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 50 | const auto* to_decimal_type = | 157 | 50 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 50 | to_precision = to_decimal_type->get_precision(); | 159 | 50 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 50 | to_scale = to_decimal_type->get_scale(); | 162 | 50 | ToDataType::check_type_scale(to_scale); | 163 | 50 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 50 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 50 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 50 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 50 | if (to_scale > from_scale) { | 174 | 29 | multiply_may_overflow &= | 175 | 29 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 29 | } | 177 | 50 | return narrow_integral || multiply_may_overflow; | 178 | 50 | } | 179 | 0 | return false; | 180 | 50 | }); |
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 | 127 | 65 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 65 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 65 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 65 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 65 | using FromFieldType = typename FromDataType::FieldType; | 137 | 65 | using ToFieldType = typename ToDataType::FieldType; | 138 | 65 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 65 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 65 | UInt32 to_max_digits = 0; | 150 | 65 | UInt32 to_precision = 0; | 151 | 65 | UInt32 to_scale = 0; | 152 | | | 153 | 65 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 65 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 65 | const auto* to_decimal_type = | 157 | 65 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 65 | to_precision = to_decimal_type->get_precision(); | 159 | 65 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 65 | to_scale = to_decimal_type->get_scale(); | 162 | 65 | ToDataType::check_type_scale(to_scale); | 163 | 65 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 65 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 65 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 65 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 65 | if (to_scale > from_scale) { | 174 | 39 | multiply_may_overflow &= | 175 | 39 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 39 | } | 177 | 65 | return narrow_integral || multiply_may_overflow; | 178 | 65 | } | 179 | 0 | return false; | 180 | 65 | }); |
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 | 127 | 107 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 107 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 107 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 107 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 107 | using FromFieldType = typename FromDataType::FieldType; | 137 | 107 | using ToFieldType = typename ToDataType::FieldType; | 138 | 107 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 107 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 107 | UInt32 to_max_digits = 0; | 150 | 107 | UInt32 to_precision = 0; | 151 | 107 | UInt32 to_scale = 0; | 152 | | | 153 | 107 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 107 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 107 | const auto* to_decimal_type = | 157 | 107 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 107 | to_precision = to_decimal_type->get_precision(); | 159 | 107 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 107 | to_scale = to_decimal_type->get_scale(); | 162 | 107 | ToDataType::check_type_scale(to_scale); | 163 | 107 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 107 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 107 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 107 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 107 | if (to_scale > from_scale) { | 174 | 65 | multiply_may_overflow &= | 175 | 65 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 65 | } | 177 | 107 | return narrow_integral || multiply_may_overflow; | 178 | 107 | } | 179 | 0 | return false; | 180 | 107 | }); |
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 | 127 | 210 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 210 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 210 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 210 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 210 | using FromFieldType = typename FromDataType::FieldType; | 137 | 210 | using ToFieldType = typename ToDataType::FieldType; | 138 | 210 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 210 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 210 | UInt32 to_max_digits = 0; | 150 | 210 | UInt32 to_precision = 0; | 151 | 210 | UInt32 to_scale = 0; | 152 | | | 153 | 210 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 210 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 210 | const auto* to_decimal_type = | 157 | 210 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 210 | to_precision = to_decimal_type->get_precision(); | 159 | 210 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 210 | to_scale = to_decimal_type->get_scale(); | 162 | 210 | ToDataType::check_type_scale(to_scale); | 163 | 210 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 210 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 210 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 210 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 210 | if (to_scale > from_scale) { | 174 | 177 | multiply_may_overflow &= | 175 | 177 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 177 | } | 177 | 210 | return narrow_integral || multiply_may_overflow; | 178 | 210 | } | 179 | 0 | return false; | 180 | 210 | }); |
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 | 127 | 1.11k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 1.11k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 1.11k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 1.11k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 1.11k | using FromFieldType = typename FromDataType::FieldType; | 137 | 1.11k | using ToFieldType = typename ToDataType::FieldType; | 138 | 1.11k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 1.11k | UInt32 from_scale = 0; | 140 | | | 141 | 1.11k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 1.11k | const auto* from_decimal_type = | 143 | 1.11k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 1.11k | from_precision = | 145 | 1.11k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 1.11k | from_scale = from_decimal_type->get_scale(); | 147 | 1.11k | } | 148 | | | 149 | 1.11k | UInt32 to_max_digits = 0; | 150 | 1.11k | UInt32 to_precision = 0; | 151 | 1.11k | UInt32 to_scale = 0; | 152 | | | 153 | 1.11k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 1.11k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 1.11k | const auto* to_decimal_type = | 157 | 1.11k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 1.11k | to_precision = to_decimal_type->get_precision(); | 159 | 1.11k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 1.11k | to_scale = to_decimal_type->get_scale(); | 162 | 1.11k | ToDataType::check_type_scale(to_scale); | 163 | 1.11k | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 1.11k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 1.11k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 1.11k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 1.11k | if (to_scale > from_scale) { | 174 | 770 | multiply_may_overflow &= | 175 | 770 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 770 | } | 177 | 1.11k | return narrow_integral || multiply_may_overflow; | 178 | 1.11k | } | 179 | 0 | return false; | 180 | 1.11k | }); |
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 | 127 | 5.69k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 5.69k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 5.69k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 5.69k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 5.69k | using FromFieldType = typename FromDataType::FieldType; | 137 | 5.69k | using ToFieldType = typename ToDataType::FieldType; | 138 | 5.69k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 5.69k | UInt32 from_scale = 0; | 140 | | | 141 | 5.69k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 5.69k | const auto* from_decimal_type = | 143 | 5.69k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 5.69k | from_precision = | 145 | 5.69k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 5.69k | from_scale = from_decimal_type->get_scale(); | 147 | 5.69k | } | 148 | | | 149 | 5.69k | UInt32 to_max_digits = 0; | 150 | 5.69k | UInt32 to_precision = 0; | 151 | 5.69k | UInt32 to_scale = 0; | 152 | | | 153 | 5.69k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 5.69k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 5.69k | const auto* to_decimal_type = | 157 | 5.69k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 5.69k | to_precision = to_decimal_type->get_precision(); | 159 | 5.69k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 5.69k | to_scale = to_decimal_type->get_scale(); | 162 | 5.69k | ToDataType::check_type_scale(to_scale); | 163 | 5.69k | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 5.69k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 5.69k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 5.69k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 5.69k | if (to_scale > from_scale) { | 174 | 157 | multiply_may_overflow &= | 175 | 157 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 157 | } | 177 | 5.69k | return narrow_integral || multiply_may_overflow; | 178 | 5.69k | } | 179 | 0 | return false; | 180 | 5.69k | }); |
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 | 127 | 308 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 308 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 308 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 308 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 308 | using FromFieldType = typename FromDataType::FieldType; | 137 | 308 | using ToFieldType = typename ToDataType::FieldType; | 138 | 308 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 308 | UInt32 from_scale = 0; | 140 | | | 141 | 308 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 308 | const auto* from_decimal_type = | 143 | 308 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 308 | from_precision = | 145 | 308 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 308 | from_scale = from_decimal_type->get_scale(); | 147 | 308 | } | 148 | | | 149 | 308 | UInt32 to_max_digits = 0; | 150 | 308 | UInt32 to_precision = 0; | 151 | 308 | UInt32 to_scale = 0; | 152 | | | 153 | 308 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 308 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 308 | const auto* to_decimal_type = | 157 | 308 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 308 | to_precision = to_decimal_type->get_precision(); | 159 | 308 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 308 | to_scale = to_decimal_type->get_scale(); | 162 | 308 | ToDataType::check_type_scale(to_scale); | 163 | 308 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 308 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 308 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 308 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 308 | if (to_scale > from_scale) { | 174 | 50 | multiply_may_overflow &= | 175 | 50 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 50 | } | 177 | 308 | return narrow_integral || multiply_may_overflow; | 178 | 308 | } | 179 | 0 | return false; | 180 | 308 | }); |
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 | 127 | 427 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 427 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 427 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 427 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 427 | using FromFieldType = typename FromDataType::FieldType; | 137 | 427 | using ToFieldType = typename ToDataType::FieldType; | 138 | 427 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 427 | UInt32 from_scale = 0; | 140 | | | 141 | 427 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 427 | const auto* from_decimal_type = | 143 | 427 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 427 | from_precision = | 145 | 427 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 427 | from_scale = from_decimal_type->get_scale(); | 147 | 427 | } | 148 | | | 149 | 427 | UInt32 to_max_digits = 0; | 150 | 427 | UInt32 to_precision = 0; | 151 | 427 | UInt32 to_scale = 0; | 152 | | | 153 | 427 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 427 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 427 | const auto* to_decimal_type = | 157 | 427 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 427 | to_precision = to_decimal_type->get_precision(); | 159 | 427 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 427 | to_scale = to_decimal_type->get_scale(); | 162 | 427 | ToDataType::check_type_scale(to_scale); | 163 | 427 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 427 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 427 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 427 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 427 | if (to_scale > from_scale) { | 174 | 146 | multiply_may_overflow &= | 175 | 146 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 146 | } | 177 | 427 | return narrow_integral || multiply_may_overflow; | 178 | 427 | } | 179 | 0 | return false; | 180 | 427 | }); |
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 | 127 | 401 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 401 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 401 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 401 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 401 | using FromFieldType = typename FromDataType::FieldType; | 137 | 401 | using ToFieldType = typename ToDataType::FieldType; | 138 | 401 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 401 | UInt32 from_scale = 0; | 140 | | | 141 | 401 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 401 | const auto* from_decimal_type = | 143 | 401 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 401 | from_precision = | 145 | 401 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 401 | from_scale = from_decimal_type->get_scale(); | 147 | 401 | } | 148 | | | 149 | 401 | UInt32 to_max_digits = 0; | 150 | 401 | UInt32 to_precision = 0; | 151 | 401 | UInt32 to_scale = 0; | 152 | | | 153 | 401 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 401 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 401 | const auto* to_decimal_type = | 157 | 401 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 401 | to_precision = to_decimal_type->get_precision(); | 159 | 401 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 401 | to_scale = to_decimal_type->get_scale(); | 162 | 401 | ToDataType::check_type_scale(to_scale); | 163 | 401 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 401 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 401 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 401 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 401 | if (to_scale > from_scale) { | 174 | 137 | multiply_may_overflow &= | 175 | 137 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 137 | } | 177 | 401 | return narrow_integral || multiply_may_overflow; | 178 | 401 | } | 179 | 0 | return false; | 180 | 401 | }); |
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_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 | 127 | 7.87k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 7.87k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 7.87k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 7.87k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 7.87k | return false; | 134 | 7.87k | } | 135 | 7.87k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 7.87k | using FromFieldType = typename FromDataType::FieldType; | 137 | 7.87k | using ToFieldType = typename ToDataType::FieldType; | 138 | 7.87k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 7.87k | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 7.87k | UInt32 to_max_digits = 0; | 150 | 7.87k | UInt32 to_precision = 0; | 151 | 7.87k | UInt32 to_scale = 0; | 152 | | | 153 | 7.87k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 7.87k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 7.87k | const auto* to_decimal_type = | 157 | 7.87k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 7.87k | to_precision = to_decimal_type->get_precision(); | 159 | 7.87k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 7.87k | to_scale = to_decimal_type->get_scale(); | 162 | 7.87k | ToDataType::check_type_scale(to_scale); | 163 | 7.87k | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 7.87k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 7.87k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 7.87k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 7.87k | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 7.87k | return narrow_integral || multiply_may_overflow; | 178 | 7.87k | } | 179 | 0 | return false; | 180 | 7.87k | }); |
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 | 127 | 20 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 20 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 20 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 20 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 20 | using FromFieldType = typename FromDataType::FieldType; | 137 | 20 | using ToFieldType = typename ToDataType::FieldType; | 138 | 20 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 20 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 20 | UInt32 to_max_digits = 0; | 150 | 20 | UInt32 to_precision = 0; | 151 | 20 | UInt32 to_scale = 0; | 152 | | | 153 | 20 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 20 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 20 | const auto* to_decimal_type = | 157 | 20 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 20 | to_precision = to_decimal_type->get_precision(); | 159 | 20 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 20 | to_scale = to_decimal_type->get_scale(); | 162 | 20 | ToDataType::check_type_scale(to_scale); | 163 | 20 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 20 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 20 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 20 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 20 | if (to_scale > from_scale) { | 174 | 20 | multiply_may_overflow &= | 175 | 20 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 20 | } | 177 | 20 | return narrow_integral || multiply_may_overflow; | 178 | 20 | } | 179 | 0 | return false; | 180 | 20 | }); |
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_3EEESE_EEEEbSI_ Line | Count | Source | 127 | 16 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 16 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 16 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 16 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 16 | using FromFieldType = typename FromDataType::FieldType; | 137 | 16 | using ToFieldType = typename ToDataType::FieldType; | 138 | 16 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 16 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 16 | UInt32 to_max_digits = 0; | 150 | 16 | UInt32 to_precision = 0; | 151 | 16 | UInt32 to_scale = 0; | 152 | | | 153 | 16 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 16 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 16 | const auto* to_decimal_type = | 157 | 16 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 16 | to_precision = to_decimal_type->get_precision(); | 159 | 16 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 16 | to_scale = to_decimal_type->get_scale(); | 162 | 16 | ToDataType::check_type_scale(to_scale); | 163 | 16 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 16 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 16 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 16 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 16 | if (to_scale > from_scale) { | 174 | 16 | multiply_may_overflow &= | 175 | 16 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 16 | } | 177 | 16 | return narrow_integral || multiply_may_overflow; | 178 | 16 | } | 179 | 0 | return false; | 180 | 16 | }); |
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_4EEESE_EEEEbSI_ Line | Count | Source | 127 | 16 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 16 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 16 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 16 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 16 | using FromFieldType = typename FromDataType::FieldType; | 137 | 16 | using ToFieldType = typename ToDataType::FieldType; | 138 | 16 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 16 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 16 | UInt32 to_max_digits = 0; | 150 | 16 | UInt32 to_precision = 0; | 151 | 16 | UInt32 to_scale = 0; | 152 | | | 153 | 16 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 16 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 16 | const auto* to_decimal_type = | 157 | 16 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 16 | to_precision = to_decimal_type->get_precision(); | 159 | 16 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 16 | to_scale = to_decimal_type->get_scale(); | 162 | 16 | ToDataType::check_type_scale(to_scale); | 163 | 16 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 16 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 16 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 16 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 16 | if (to_scale > from_scale) { | 174 | 16 | multiply_may_overflow &= | 175 | 16 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 16 | } | 177 | 16 | return narrow_integral || multiply_may_overflow; | 178 | 16 | } | 179 | 0 | return false; | 180 | 16 | }); |
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_5EEESE_EEEEbSI_ Line | Count | Source | 127 | 16 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 16 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 16 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 16 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 16 | using FromFieldType = typename FromDataType::FieldType; | 137 | 16 | using ToFieldType = typename ToDataType::FieldType; | 138 | 16 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 16 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 16 | UInt32 to_max_digits = 0; | 150 | 16 | UInt32 to_precision = 0; | 151 | 16 | UInt32 to_scale = 0; | 152 | | | 153 | 16 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 16 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 16 | const auto* to_decimal_type = | 157 | 16 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 16 | to_precision = to_decimal_type->get_precision(); | 159 | 16 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 16 | to_scale = to_decimal_type->get_scale(); | 162 | 16 | ToDataType::check_type_scale(to_scale); | 163 | 16 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 16 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 16 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 16 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 16 | if (to_scale > from_scale) { | 174 | 16 | multiply_may_overflow &= | 175 | 16 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 16 | } | 177 | 16 | return narrow_integral || multiply_may_overflow; | 178 | 16 | } | 179 | 0 | return false; | 180 | 16 | }); |
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_ function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_8EEESE_EEEEbSI_ Line | Count | Source | 127 | 31 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 31 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 31 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 31 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 31 | using FromFieldType = typename FromDataType::FieldType; | 137 | 31 | using ToFieldType = typename ToDataType::FieldType; | 138 | 31 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 31 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 31 | UInt32 to_max_digits = 0; | 150 | 31 | UInt32 to_precision = 0; | 151 | 31 | UInt32 to_scale = 0; | 152 | | | 153 | 31 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 31 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 31 | const auto* to_decimal_type = | 157 | 31 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 31 | to_precision = to_decimal_type->get_precision(); | 159 | 31 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 31 | to_scale = to_decimal_type->get_scale(); | 162 | 31 | ToDataType::check_type_scale(to_scale); | 163 | 31 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 31 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 32 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 31 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 32 | if (to_scale > from_scale) { | 174 | 32 | multiply_may_overflow &= | 175 | 32 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 32 | } | 177 | 31 | return narrow_integral || multiply_may_overflow; | 178 | 31 | } | 179 | 0 | return false; | 180 | 31 | }); |
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeNumberILSD_9EEESE_EEEEbSI_ Line | Count | Source | 127 | 128 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 128 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 128 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 128 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 128 | using FromFieldType = typename FromDataType::FieldType; | 137 | 128 | using ToFieldType = typename ToDataType::FieldType; | 138 | 128 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 128 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 128 | UInt32 to_max_digits = 0; | 150 | 128 | UInt32 to_precision = 0; | 151 | 128 | UInt32 to_scale = 0; | 152 | | | 153 | 128 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 128 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 128 | const auto* to_decimal_type = | 157 | 128 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 128 | to_precision = to_decimal_type->get_precision(); | 159 | 128 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 128 | to_scale = to_decimal_type->get_scale(); | 162 | 128 | ToDataType::check_type_scale(to_scale); | 163 | 128 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 128 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 128 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 128 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 128 | if (to_scale > from_scale) { | 174 | 128 | multiply_may_overflow &= | 175 | 128 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 128 | } | 177 | 128 | return narrow_integral || multiply_may_overflow; | 178 | 128 | } | 179 | 0 | return false; | 180 | 128 | }); |
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_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_ function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ENKUlSI_E_clINSB_INS_14DataTypeStringESE_EEEEbSI_ Line | Count | Source | 127 | 1 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 1 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 1 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 1 | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 1 | return false; | 134 | 1 | } | 135 | 1 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 1 | using FromFieldType = typename FromDataType::FieldType; | 137 | 1 | using ToFieldType = typename ToDataType::FieldType; | 138 | 1 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 1 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 1 | UInt32 to_max_digits = 0; | 150 | 1 | UInt32 to_precision = 0; | 151 | 1 | UInt32 to_scale = 0; | 152 | | | 153 | 1 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 1 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 1 | const auto* to_decimal_type = | 157 | 1 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 1 | to_precision = to_decimal_type->get_precision(); | 159 | 1 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 1 | to_scale = to_decimal_type->get_scale(); | 162 | 1 | ToDataType::check_type_scale(to_scale); | 163 | 1 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 1 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 1 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 1 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 1 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 1 | return narrow_integral || multiply_may_overflow; | 178 | 1 | } | 179 | 0 | return false; | 180 | 1 | }); |
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 | 127 | 23 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 23 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 23 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 23 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 23 | using FromFieldType = typename FromDataType::FieldType; | 137 | 23 | using ToFieldType = typename ToDataType::FieldType; | 138 | 23 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 23 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 23 | UInt32 to_max_digits = 0; | 150 | 23 | UInt32 to_precision = 0; | 151 | 23 | UInt32 to_scale = 0; | 152 | | | 153 | 23 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 23 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 23 | const auto* to_decimal_type = | 157 | 23 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 23 | to_precision = to_decimal_type->get_precision(); | 159 | 23 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 23 | to_scale = to_decimal_type->get_scale(); | 162 | 23 | ToDataType::check_type_scale(to_scale); | 163 | 23 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 23 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 23 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 23 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 23 | if (to_scale > from_scale) { | 174 | 22 | multiply_may_overflow &= | 175 | 22 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 22 | } | 177 | 23 | return narrow_integral || multiply_may_overflow; | 178 | 23 | } | 179 | 0 | return false; | 180 | 23 | }); |
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 | 127 | 179 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 179 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 179 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 179 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 179 | using FromFieldType = typename FromDataType::FieldType; | 137 | 179 | using ToFieldType = typename ToDataType::FieldType; | 138 | 179 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 179 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 179 | UInt32 to_max_digits = 0; | 150 | 179 | UInt32 to_precision = 0; | 151 | 179 | UInt32 to_scale = 0; | 152 | | | 153 | 179 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 179 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 179 | const auto* to_decimal_type = | 157 | 179 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 179 | to_precision = to_decimal_type->get_precision(); | 159 | 179 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 179 | to_scale = to_decimal_type->get_scale(); | 162 | 179 | ToDataType::check_type_scale(to_scale); | 163 | 179 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 179 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 179 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 179 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 179 | if (to_scale > from_scale) { | 174 | 128 | multiply_may_overflow &= | 175 | 128 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 128 | } | 177 | 179 | return narrow_integral || multiply_may_overflow; | 178 | 179 | } | 179 | 0 | return false; | 180 | 179 | }); |
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 | 127 | 166 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 166 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 166 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 166 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 166 | using FromFieldType = typename FromDataType::FieldType; | 137 | 166 | using ToFieldType = typename ToDataType::FieldType; | 138 | 166 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 166 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 166 | UInt32 to_max_digits = 0; | 150 | 166 | UInt32 to_precision = 0; | 151 | 166 | UInt32 to_scale = 0; | 152 | | | 153 | 166 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 166 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 166 | const auto* to_decimal_type = | 157 | 166 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 166 | to_precision = to_decimal_type->get_precision(); | 159 | 166 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 166 | to_scale = to_decimal_type->get_scale(); | 162 | 166 | ToDataType::check_type_scale(to_scale); | 163 | 166 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 166 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 166 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 166 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 166 | if (to_scale > from_scale) { | 174 | 115 | multiply_may_overflow &= | 175 | 115 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 115 | } | 177 | 166 | return narrow_integral || multiply_may_overflow; | 178 | 166 | } | 179 | 0 | return false; | 180 | 166 | }); |
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 | 127 | 432 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 432 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 432 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 432 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 432 | using FromFieldType = typename FromDataType::FieldType; | 137 | 432 | using ToFieldType = typename ToDataType::FieldType; | 138 | 432 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 432 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 432 | UInt32 to_max_digits = 0; | 150 | 432 | UInt32 to_precision = 0; | 151 | 432 | UInt32 to_scale = 0; | 152 | | | 153 | 432 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 432 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 432 | const auto* to_decimal_type = | 157 | 432 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 432 | to_precision = to_decimal_type->get_precision(); | 159 | 432 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 432 | to_scale = to_decimal_type->get_scale(); | 162 | 432 | ToDataType::check_type_scale(to_scale); | 163 | 432 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 432 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 432 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 432 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 432 | if (to_scale > from_scale) { | 174 | 376 | multiply_may_overflow &= | 175 | 376 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 376 | } | 177 | 432 | return narrow_integral || multiply_may_overflow; | 178 | 432 | } | 179 | 0 | return false; | 180 | 432 | }); |
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 | 127 | 2.65k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 2.65k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 2.65k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 2.65k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 2.65k | using FromFieldType = typename FromDataType::FieldType; | 137 | 2.65k | using ToFieldType = typename ToDataType::FieldType; | 138 | 2.65k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 2.65k | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 2.65k | UInt32 to_max_digits = 0; | 150 | 2.65k | UInt32 to_precision = 0; | 151 | 2.65k | UInt32 to_scale = 0; | 152 | | | 153 | 2.65k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 2.65k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 2.65k | const auto* to_decimal_type = | 157 | 2.65k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 2.65k | to_precision = to_decimal_type->get_precision(); | 159 | 2.65k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 2.65k | to_scale = to_decimal_type->get_scale(); | 162 | 2.65k | ToDataType::check_type_scale(to_scale); | 163 | 2.65k | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 2.65k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 2.65k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 2.65k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 2.65k | if (to_scale > from_scale) { | 174 | 539 | multiply_may_overflow &= | 175 | 539 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 539 | } | 177 | 2.65k | return narrow_integral || multiply_may_overflow; | 178 | 2.65k | } | 179 | 0 | return false; | 180 | 2.65k | }); |
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 | 127 | 367 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 367 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 367 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 367 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 367 | using FromFieldType = typename FromDataType::FieldType; | 137 | 367 | using ToFieldType = typename ToDataType::FieldType; | 138 | 367 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 367 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 367 | UInt32 to_max_digits = 0; | 150 | 367 | UInt32 to_precision = 0; | 151 | 367 | UInt32 to_scale = 0; | 152 | | | 153 | 367 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 367 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 367 | const auto* to_decimal_type = | 157 | 367 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 367 | to_precision = to_decimal_type->get_precision(); | 159 | 367 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 367 | to_scale = to_decimal_type->get_scale(); | 162 | 367 | ToDataType::check_type_scale(to_scale); | 163 | 367 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 367 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 367 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 367 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 367 | if (to_scale > from_scale) { | 174 | 196 | multiply_may_overflow &= | 175 | 196 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 196 | } | 177 | 367 | return narrow_integral || multiply_may_overflow; | 178 | 367 | } | 179 | 0 | return false; | 180 | 367 | }); |
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 | 127 | 248 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 248 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 248 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 248 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 248 | using FromFieldType = typename FromDataType::FieldType; | 137 | 248 | using ToFieldType = typename ToDataType::FieldType; | 138 | 248 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 248 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 248 | UInt32 to_max_digits = 0; | 150 | 248 | UInt32 to_precision = 0; | 151 | 248 | UInt32 to_scale = 0; | 152 | | | 153 | 248 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 248 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 248 | const auto* to_decimal_type = | 157 | 248 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 248 | to_precision = to_decimal_type->get_precision(); | 159 | 248 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 248 | to_scale = to_decimal_type->get_scale(); | 162 | 248 | ToDataType::check_type_scale(to_scale); | 163 | 248 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 248 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 248 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 248 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 248 | if (to_scale > from_scale) { | 174 | 130 | multiply_may_overflow &= | 175 | 130 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 130 | } | 177 | 248 | return narrow_integral || multiply_may_overflow; | 178 | 248 | } | 179 | 0 | return false; | 180 | 248 | }); |
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 | 127 | 489 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 489 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 489 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 489 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 489 | using FromFieldType = typename FromDataType::FieldType; | 137 | 489 | using ToFieldType = typename ToDataType::FieldType; | 138 | 489 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 489 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 489 | UInt32 to_max_digits = 0; | 150 | 489 | UInt32 to_precision = 0; | 151 | 489 | UInt32 to_scale = 0; | 152 | | | 153 | 489 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 489 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 489 | const auto* to_decimal_type = | 157 | 489 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 489 | to_precision = to_decimal_type->get_precision(); | 159 | 489 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 489 | to_scale = to_decimal_type->get_scale(); | 162 | 489 | ToDataType::check_type_scale(to_scale); | 163 | 489 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 489 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 489 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 489 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 489 | if (to_scale > from_scale) { | 174 | 379 | multiply_may_overflow &= | 175 | 379 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 379 | } | 177 | 489 | return narrow_integral || multiply_may_overflow; | 178 | 489 | } | 179 | 0 | return false; | 180 | 489 | }); |
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 | 127 | 758 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 758 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 758 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 758 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 758 | using FromFieldType = typename FromDataType::FieldType; | 137 | 758 | using ToFieldType = typename ToDataType::FieldType; | 138 | 758 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 758 | UInt32 from_scale = 0; | 140 | | | 141 | 758 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 758 | const auto* from_decimal_type = | 143 | 758 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 758 | from_precision = | 145 | 758 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 758 | from_scale = from_decimal_type->get_scale(); | 147 | 758 | } | 148 | | | 149 | 758 | UInt32 to_max_digits = 0; | 150 | 758 | UInt32 to_precision = 0; | 151 | 758 | UInt32 to_scale = 0; | 152 | | | 153 | 758 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 758 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 758 | const auto* to_decimal_type = | 157 | 758 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 758 | to_precision = to_decimal_type->get_precision(); | 159 | 758 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 758 | to_scale = to_decimal_type->get_scale(); | 162 | 758 | ToDataType::check_type_scale(to_scale); | 163 | 758 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 758 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 758 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 758 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 758 | if (to_scale > from_scale) { | 174 | 606 | multiply_may_overflow &= | 175 | 606 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 606 | } | 177 | 758 | return narrow_integral || multiply_may_overflow; | 178 | 758 | } | 179 | 0 | return false; | 180 | 758 | }); |
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 | 127 | 1.04k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 1.04k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 1.04k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 1.04k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 1.04k | using FromFieldType = typename FromDataType::FieldType; | 137 | 1.04k | using ToFieldType = typename ToDataType::FieldType; | 138 | 1.04k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 1.04k | UInt32 from_scale = 0; | 140 | | | 141 | 1.04k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 1.04k | const auto* from_decimal_type = | 143 | 1.04k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 1.04k | from_precision = | 145 | 1.04k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 1.04k | from_scale = from_decimal_type->get_scale(); | 147 | 1.04k | } | 148 | | | 149 | 1.04k | UInt32 to_max_digits = 0; | 150 | 1.04k | UInt32 to_precision = 0; | 151 | 1.04k | UInt32 to_scale = 0; | 152 | | | 153 | 1.04k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 1.04k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 1.04k | const auto* to_decimal_type = | 157 | 1.04k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 1.04k | to_precision = to_decimal_type->get_precision(); | 159 | 1.04k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 1.04k | to_scale = to_decimal_type->get_scale(); | 162 | 1.04k | ToDataType::check_type_scale(to_scale); | 163 | 1.04k | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 1.04k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 1.04k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 1.04k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 1.04k | if (to_scale > from_scale) { | 174 | 719 | multiply_may_overflow &= | 175 | 719 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 719 | } | 177 | 1.04k | return narrow_integral || multiply_may_overflow; | 178 | 1.04k | } | 179 | 0 | return false; | 180 | 1.04k | }); |
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 | 127 | 331 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 331 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 331 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 331 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 331 | using FromFieldType = typename FromDataType::FieldType; | 137 | 331 | using ToFieldType = typename ToDataType::FieldType; | 138 | 331 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 331 | UInt32 from_scale = 0; | 140 | | | 141 | 331 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 331 | const auto* from_decimal_type = | 143 | 331 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 331 | from_precision = | 145 | 331 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 331 | from_scale = from_decimal_type->get_scale(); | 147 | 331 | } | 148 | | | 149 | 331 | UInt32 to_max_digits = 0; | 150 | 331 | UInt32 to_precision = 0; | 151 | 331 | UInt32 to_scale = 0; | 152 | | | 153 | 331 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 331 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 331 | const auto* to_decimal_type = | 157 | 331 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 331 | to_precision = to_decimal_type->get_precision(); | 159 | 331 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 331 | to_scale = to_decimal_type->get_scale(); | 162 | 331 | ToDataType::check_type_scale(to_scale); | 163 | 331 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 331 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 331 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 331 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 331 | if (to_scale > from_scale) { | 174 | 71 | multiply_may_overflow &= | 175 | 71 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 71 | } | 177 | 331 | return narrow_integral || multiply_may_overflow; | 178 | 331 | } | 179 | 0 | return false; | 180 | 331 | }); |
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 | 127 | 2.18k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 2.18k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 2.18k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 2.18k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 2.18k | using FromFieldType = typename FromDataType::FieldType; | 137 | 2.18k | using ToFieldType = typename ToDataType::FieldType; | 138 | 2.18k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 2.18k | UInt32 from_scale = 0; | 140 | | | 141 | 2.18k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 2.18k | const auto* from_decimal_type = | 143 | 2.18k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 2.18k | from_precision = | 145 | 2.18k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 2.18k | from_scale = from_decimal_type->get_scale(); | 147 | 2.18k | } | 148 | | | 149 | 2.18k | UInt32 to_max_digits = 0; | 150 | 2.18k | UInt32 to_precision = 0; | 151 | 2.18k | UInt32 to_scale = 0; | 152 | | | 153 | 2.18k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 2.18k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 2.18k | const auto* to_decimal_type = | 157 | 2.18k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 2.18k | to_precision = to_decimal_type->get_precision(); | 159 | 2.18k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 2.18k | to_scale = to_decimal_type->get_scale(); | 162 | 2.18k | ToDataType::check_type_scale(to_scale); | 163 | 2.18k | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 2.18k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 2.18k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 2.18k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 2.18k | if (to_scale > from_scale) { | 174 | 713 | multiply_may_overflow &= | 175 | 713 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 713 | } | 177 | 2.18k | return narrow_integral || multiply_may_overflow; | 178 | 2.18k | } | 179 | 0 | return false; | 180 | 2.18k | }); |
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 | 127 | 948 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 948 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 948 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 948 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 948 | using FromFieldType = typename FromDataType::FieldType; | 137 | 948 | using ToFieldType = typename ToDataType::FieldType; | 138 | 948 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 948 | UInt32 from_scale = 0; | 140 | | | 141 | 948 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 948 | const auto* from_decimal_type = | 143 | 948 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 948 | from_precision = | 145 | 948 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 948 | from_scale = from_decimal_type->get_scale(); | 147 | 948 | } | 148 | | | 149 | 948 | UInt32 to_max_digits = 0; | 150 | 948 | UInt32 to_precision = 0; | 151 | 948 | UInt32 to_scale = 0; | 152 | | | 153 | 948 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 948 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 948 | const auto* to_decimal_type = | 157 | 948 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 948 | to_precision = to_decimal_type->get_precision(); | 159 | 948 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 948 | to_scale = to_decimal_type->get_scale(); | 162 | 948 | ToDataType::check_type_scale(to_scale); | 163 | 948 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 948 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 948 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 948 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 948 | if (to_scale > from_scale) { | 174 | 394 | multiply_may_overflow &= | 175 | 394 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 394 | } | 177 | 948 | return narrow_integral || multiply_may_overflow; | 178 | 948 | } | 179 | 0 | return false; | 180 | 948 | }); |
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_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 | 127 | 4.93k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 4.93k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 4.93k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 4.93k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 4.93k | return false; | 134 | 4.93k | } | 135 | 4.93k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 4.93k | using FromFieldType = typename FromDataType::FieldType; | 137 | 4.93k | using ToFieldType = typename ToDataType::FieldType; | 138 | 4.93k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 4.93k | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 4.93k | UInt32 to_max_digits = 0; | 150 | 4.93k | UInt32 to_precision = 0; | 151 | 4.93k | UInt32 to_scale = 0; | 152 | | | 153 | 4.93k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 4.93k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 4.93k | const auto* to_decimal_type = | 157 | 4.93k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 4.93k | to_precision = to_decimal_type->get_precision(); | 159 | 4.93k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 4.93k | to_scale = to_decimal_type->get_scale(); | 162 | 4.93k | ToDataType::check_type_scale(to_scale); | 163 | 4.93k | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 4.93k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 4.93k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 4.93k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 4.93k | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 4.93k | return narrow_integral || multiply_may_overflow; | 178 | 4.93k | } | 179 | 0 | return false; | 180 | 4.93k | }); |
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 | 127 | 7 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 7 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 7 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 7 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 7 | using FromFieldType = typename FromDataType::FieldType; | 137 | 7 | using ToFieldType = typename ToDataType::FieldType; | 138 | 7 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 7 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 7 | UInt32 to_max_digits = 0; | 150 | 7 | UInt32 to_precision = 0; | 151 | 7 | UInt32 to_scale = 0; | 152 | | | 153 | 7 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 7 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 7 | const auto* to_decimal_type = | 157 | 7 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 7 | to_precision = to_decimal_type->get_precision(); | 159 | 7 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 7 | to_scale = to_decimal_type->get_scale(); | 162 | 7 | ToDataType::check_type_scale(to_scale); | 163 | 7 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 7 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 7 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 7 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 7 | if (to_scale > from_scale) { | 174 | 6 | multiply_may_overflow &= | 175 | 6 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 6 | } | 177 | 7 | return narrow_integral || multiply_may_overflow; | 178 | 7 | } | 179 | 0 | return false; | 180 | 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 | 127 | 160 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 160 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 160 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 160 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 160 | using FromFieldType = typename FromDataType::FieldType; | 137 | 160 | using ToFieldType = typename ToDataType::FieldType; | 138 | 160 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 160 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 160 | UInt32 to_max_digits = 0; | 150 | 160 | UInt32 to_precision = 0; | 151 | 160 | UInt32 to_scale = 0; | 152 | | | 153 | 160 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 160 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 160 | const auto* to_decimal_type = | 157 | 160 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 160 | to_precision = to_decimal_type->get_precision(); | 159 | 160 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 160 | to_scale = to_decimal_type->get_scale(); | 162 | 160 | ToDataType::check_type_scale(to_scale); | 163 | 160 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 160 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 160 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 160 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 160 | if (to_scale > from_scale) { | 174 | 109 | multiply_may_overflow &= | 175 | 109 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 109 | } | 177 | 160 | return narrow_integral || multiply_may_overflow; | 178 | 160 | } | 179 | 0 | return false; | 180 | 160 | }); |
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 | 127 | 158 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 158 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 158 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 158 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 158 | using FromFieldType = typename FromDataType::FieldType; | 137 | 158 | using ToFieldType = typename ToDataType::FieldType; | 138 | 158 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 158 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 158 | UInt32 to_max_digits = 0; | 150 | 158 | UInt32 to_precision = 0; | 151 | 158 | UInt32 to_scale = 0; | 152 | | | 153 | 158 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 158 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 158 | const auto* to_decimal_type = | 157 | 158 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 158 | to_precision = to_decimal_type->get_precision(); | 159 | 158 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 158 | to_scale = to_decimal_type->get_scale(); | 162 | 158 | ToDataType::check_type_scale(to_scale); | 163 | 158 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 158 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 158 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 158 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 158 | if (to_scale > from_scale) { | 174 | 107 | multiply_may_overflow &= | 175 | 107 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 107 | } | 177 | 158 | return narrow_integral || multiply_may_overflow; | 178 | 158 | } | 179 | 0 | return false; | 180 | 158 | }); |
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 | 127 | 176 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 176 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 176 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 176 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 176 | using FromFieldType = typename FromDataType::FieldType; | 137 | 176 | using ToFieldType = typename ToDataType::FieldType; | 138 | 176 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 176 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 176 | UInt32 to_max_digits = 0; | 150 | 176 | UInt32 to_precision = 0; | 151 | 176 | UInt32 to_scale = 0; | 152 | | | 153 | 176 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 176 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 176 | const auto* to_decimal_type = | 157 | 176 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 176 | to_precision = to_decimal_type->get_precision(); | 159 | 176 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 176 | to_scale = to_decimal_type->get_scale(); | 162 | 176 | ToDataType::check_type_scale(to_scale); | 163 | 176 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 176 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 176 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 176 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 176 | if (to_scale > from_scale) { | 174 | 120 | multiply_may_overflow &= | 175 | 120 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 120 | } | 177 | 176 | return narrow_integral || multiply_may_overflow; | 178 | 176 | } | 179 | 0 | return false; | 180 | 176 | }); |
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 | 127 | 158 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 158 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 158 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 158 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 158 | using FromFieldType = typename FromDataType::FieldType; | 137 | 158 | using ToFieldType = typename ToDataType::FieldType; | 138 | 158 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 158 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 158 | UInt32 to_max_digits = 0; | 150 | 158 | UInt32 to_precision = 0; | 151 | 158 | UInt32 to_scale = 0; | 152 | | | 153 | 158 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 158 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 158 | const auto* to_decimal_type = | 157 | 158 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 158 | to_precision = to_decimal_type->get_precision(); | 159 | 158 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 158 | to_scale = to_decimal_type->get_scale(); | 162 | 158 | ToDataType::check_type_scale(to_scale); | 163 | 158 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 158 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 158 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 158 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 158 | if (to_scale > from_scale) { | 174 | 107 | multiply_may_overflow &= | 175 | 107 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 107 | } | 177 | 158 | return narrow_integral || multiply_may_overflow; | 178 | 158 | } | 179 | 0 | return false; | 180 | 158 | }); |
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 | 127 | 232 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 232 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 232 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 232 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 232 | using FromFieldType = typename FromDataType::FieldType; | 137 | 232 | using ToFieldType = typename ToDataType::FieldType; | 138 | 232 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 232 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 232 | UInt32 to_max_digits = 0; | 150 | 232 | UInt32 to_precision = 0; | 151 | 232 | UInt32 to_scale = 0; | 152 | | | 153 | 232 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 232 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 232 | const auto* to_decimal_type = | 157 | 232 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 232 | to_precision = to_decimal_type->get_precision(); | 159 | 232 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 232 | to_scale = to_decimal_type->get_scale(); | 162 | 232 | ToDataType::check_type_scale(to_scale); | 163 | 232 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 232 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 232 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 232 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 232 | if (to_scale > from_scale) { | 174 | 170 | multiply_may_overflow &= | 175 | 170 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 170 | } | 177 | 232 | return narrow_integral || multiply_may_overflow; | 178 | 232 | } | 179 | 0 | return false; | 180 | 232 | }); |
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 | 127 | 224 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 224 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 224 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 224 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 224 | using FromFieldType = typename FromDataType::FieldType; | 137 | 224 | using ToFieldType = typename ToDataType::FieldType; | 138 | 224 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 224 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 224 | UInt32 to_max_digits = 0; | 150 | 224 | UInt32 to_precision = 0; | 151 | 224 | UInt32 to_scale = 0; | 152 | | | 153 | 224 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 224 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 224 | const auto* to_decimal_type = | 157 | 224 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 224 | to_precision = to_decimal_type->get_precision(); | 159 | 224 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 224 | to_scale = to_decimal_type->get_scale(); | 162 | 224 | ToDataType::check_type_scale(to_scale); | 163 | 224 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 224 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 224 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 224 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 224 | if (to_scale > from_scale) { | 174 | 126 | multiply_may_overflow &= | 175 | 126 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 126 | } | 177 | 224 | return narrow_integral || multiply_may_overflow; | 178 | 224 | } | 179 | 0 | return false; | 180 | 224 | }); |
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 | 127 | 318 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 318 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 318 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 318 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 318 | using FromFieldType = typename FromDataType::FieldType; | 137 | 318 | using ToFieldType = typename ToDataType::FieldType; | 138 | 318 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 318 | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 318 | UInt32 to_max_digits = 0; | 150 | 318 | UInt32 to_precision = 0; | 151 | 318 | UInt32 to_scale = 0; | 152 | | | 153 | 318 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 318 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 318 | const auto* to_decimal_type = | 157 | 318 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 318 | to_precision = to_decimal_type->get_precision(); | 159 | 318 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 318 | to_scale = to_decimal_type->get_scale(); | 162 | 318 | ToDataType::check_type_scale(to_scale); | 163 | 318 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 318 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 318 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 318 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 318 | if (to_scale > from_scale) { | 174 | 208 | multiply_may_overflow &= | 175 | 208 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 208 | } | 177 | 318 | return narrow_integral || multiply_may_overflow; | 178 | 318 | } | 179 | 0 | return false; | 180 | 318 | }); |
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 | 127 | 567 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 567 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 567 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 567 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 567 | using FromFieldType = typename FromDataType::FieldType; | 137 | 567 | using ToFieldType = typename ToDataType::FieldType; | 138 | 567 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 567 | UInt32 from_scale = 0; | 140 | | | 141 | 567 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 567 | const auto* from_decimal_type = | 143 | 567 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 567 | from_precision = | 145 | 567 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 567 | from_scale = from_decimal_type->get_scale(); | 147 | 567 | } | 148 | | | 149 | 567 | UInt32 to_max_digits = 0; | 150 | 567 | UInt32 to_precision = 0; | 151 | 567 | UInt32 to_scale = 0; | 152 | | | 153 | 567 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 567 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 567 | const auto* to_decimal_type = | 157 | 567 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 567 | to_precision = to_decimal_type->get_precision(); | 159 | 567 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 567 | to_scale = to_decimal_type->get_scale(); | 162 | 567 | ToDataType::check_type_scale(to_scale); | 163 | 567 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 567 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 567 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 567 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 567 | if (to_scale > from_scale) { | 174 | 499 | multiply_may_overflow &= | 175 | 499 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 499 | } | 177 | 567 | return narrow_integral || multiply_may_overflow; | 178 | 567 | } | 179 | 0 | return false; | 180 | 567 | }); |
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 | 127 | 919 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 919 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 919 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 919 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 919 | using FromFieldType = typename FromDataType::FieldType; | 137 | 919 | using ToFieldType = typename ToDataType::FieldType; | 138 | 919 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 919 | UInt32 from_scale = 0; | 140 | | | 141 | 919 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 919 | const auto* from_decimal_type = | 143 | 919 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 919 | from_precision = | 145 | 919 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 919 | from_scale = from_decimal_type->get_scale(); | 147 | 919 | } | 148 | | | 149 | 919 | UInt32 to_max_digits = 0; | 150 | 919 | UInt32 to_precision = 0; | 151 | 919 | UInt32 to_scale = 0; | 152 | | | 153 | 919 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 919 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 919 | const auto* to_decimal_type = | 157 | 919 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 919 | to_precision = to_decimal_type->get_precision(); | 159 | 919 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 919 | to_scale = to_decimal_type->get_scale(); | 162 | 919 | ToDataType::check_type_scale(to_scale); | 163 | 919 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 919 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 919 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 919 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 919 | if (to_scale > from_scale) { | 174 | 792 | multiply_may_overflow &= | 175 | 792 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 792 | } | 177 | 919 | return narrow_integral || multiply_may_overflow; | 178 | 919 | } | 179 | 0 | return false; | 180 | 919 | }); |
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 | 127 | 148 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 148 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 148 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 148 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 148 | using FromFieldType = typename FromDataType::FieldType; | 137 | 148 | using ToFieldType = typename ToDataType::FieldType; | 138 | 148 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 148 | UInt32 from_scale = 0; | 140 | | | 141 | 148 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 148 | const auto* from_decimal_type = | 143 | 148 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 148 | from_precision = | 145 | 148 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 148 | from_scale = from_decimal_type->get_scale(); | 147 | 148 | } | 148 | | | 149 | 148 | UInt32 to_max_digits = 0; | 150 | 148 | UInt32 to_precision = 0; | 151 | 148 | UInt32 to_scale = 0; | 152 | | | 153 | 148 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 148 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 148 | const auto* to_decimal_type = | 157 | 148 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 148 | to_precision = to_decimal_type->get_precision(); | 159 | 148 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 148 | to_scale = to_decimal_type->get_scale(); | 162 | 148 | ToDataType::check_type_scale(to_scale); | 163 | 148 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 148 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 148 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 148 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 148 | if (to_scale > from_scale) { | 174 | 84 | multiply_may_overflow &= | 175 | 84 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 84 | } | 177 | 148 | return narrow_integral || multiply_may_overflow; | 178 | 148 | } | 179 | 0 | return false; | 180 | 148 | }); |
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 | 127 | 1.20k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 1.20k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 1.20k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 1.20k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 1.20k | using FromFieldType = typename FromDataType::FieldType; | 137 | 1.20k | using ToFieldType = typename ToDataType::FieldType; | 138 | 1.20k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 1.20k | UInt32 from_scale = 0; | 140 | | | 141 | 1.20k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 1.20k | const auto* from_decimal_type = | 143 | 1.20k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 1.20k | from_precision = | 145 | 1.20k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 1.20k | from_scale = from_decimal_type->get_scale(); | 147 | 1.20k | } | 148 | | | 149 | 1.20k | UInt32 to_max_digits = 0; | 150 | 1.20k | UInt32 to_precision = 0; | 151 | 1.20k | UInt32 to_scale = 0; | 152 | | | 153 | 1.20k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 1.20k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 1.20k | const auto* to_decimal_type = | 157 | 1.20k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 1.20k | to_precision = to_decimal_type->get_precision(); | 159 | 1.20k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 1.20k | to_scale = to_decimal_type->get_scale(); | 162 | 1.20k | ToDataType::check_type_scale(to_scale); | 163 | 1.20k | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 1.20k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 1.20k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 1.20k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 1.20k | if (to_scale > from_scale) { | 174 | 739 | multiply_may_overflow &= | 175 | 739 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 739 | } | 177 | 1.20k | return narrow_integral || multiply_may_overflow; | 178 | 1.20k | } | 179 | 0 | return false; | 180 | 1.20k | }); |
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 | 127 | 928 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 928 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 928 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 928 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 928 | using FromFieldType = typename FromDataType::FieldType; | 137 | 928 | using ToFieldType = typename ToDataType::FieldType; | 138 | 928 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 928 | UInt32 from_scale = 0; | 140 | | | 141 | 928 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 928 | const auto* from_decimal_type = | 143 | 928 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 928 | from_precision = | 145 | 928 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 928 | from_scale = from_decimal_type->get_scale(); | 147 | 928 | } | 148 | | | 149 | 928 | UInt32 to_max_digits = 0; | 150 | 928 | UInt32 to_precision = 0; | 151 | 928 | UInt32 to_scale = 0; | 152 | | | 153 | 928 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 928 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 928 | const auto* to_decimal_type = | 157 | 928 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 928 | to_precision = to_decimal_type->get_precision(); | 159 | 928 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 928 | to_scale = to_decimal_type->get_scale(); | 162 | 928 | ToDataType::check_type_scale(to_scale); | 163 | 928 | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 928 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 928 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 928 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 928 | if (to_scale > from_scale) { | 174 | 452 | multiply_may_overflow &= | 175 | 452 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 452 | } | 177 | 928 | return narrow_integral || multiply_may_overflow; | 178 | 928 | } | 179 | 0 | return false; | 180 | 928 | }); |
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_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 | 127 | 5.66k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 5.66k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 5.66k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 5.66k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 5.66k | return false; | 134 | 5.66k | } | 135 | 5.66k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 5.66k | using FromFieldType = typename FromDataType::FieldType; | 137 | 5.66k | using ToFieldType = typename ToDataType::FieldType; | 138 | 5.66k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 5.66k | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | 5.66k | UInt32 to_max_digits = 0; | 150 | 5.66k | UInt32 to_precision = 0; | 151 | 5.66k | UInt32 to_scale = 0; | 152 | | | 153 | 5.66k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 5.66k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 5.66k | const auto* to_decimal_type = | 157 | 5.66k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 5.66k | to_precision = to_decimal_type->get_precision(); | 159 | 5.66k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 5.66k | to_scale = to_decimal_type->get_scale(); | 162 | 5.66k | ToDataType::check_type_scale(to_scale); | 163 | 5.66k | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 5.66k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 5.66k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 5.66k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 5.66k | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 5.66k | return narrow_integral || multiply_may_overflow; | 178 | 5.66k | } | 179 | 0 | return false; | 180 | 5.66k | }); |
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_ function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeDateV2ESC_EEEEbSG_ Line | Count | Source | 127 | 1 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 1 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 1 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 1 | return false; | 180 | 1 | }); |
Unexecuted instantiation: function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_18DataTypeDateTimeV2ESC_EEEEbSG_ function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ENKUlSG_E_clINSB_INS_16DataTypeDateTimeESC_EEEEbSG_ Line | Count | Source | 127 | 3 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 3 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 3 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 3 | return false; | 180 | 3 | }); |
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 | 127 | 26 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 26 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 26 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 26 | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 26 | return false; | 134 | 26 | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 26 | return false; | 180 | 26 | }); |
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_ function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE5EEESC_EEEEbSG_ Line | Count | Source | 127 | 10 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 10 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 10 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 10 | return false; | 180 | 10 | }); |
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 | 127 | 7 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 7 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 7 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 7 | return false; | 180 | 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 | 127 | 7 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 7 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 7 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 7 | return false; | 180 | 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 | 127 | 2 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 2 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 2 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 2 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 2 | using FromFieldType = typename FromDataType::FieldType; | 137 | 2 | using ToFieldType = typename ToDataType::FieldType; | 138 | 2 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 2 | UInt32 from_scale = 0; | 140 | | | 141 | 2 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 2 | const auto* from_decimal_type = | 143 | 2 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 2 | from_precision = | 145 | 2 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 2 | from_scale = from_decimal_type->get_scale(); | 147 | 2 | } | 148 | | | 149 | 2 | UInt32 to_max_digits = 0; | 150 | 2 | UInt32 to_precision = 0; | 151 | 2 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 2 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 2 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 2 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 2 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 2 | return narrow_integral || multiply_may_overflow; | 178 | 2 | } | 179 | 0 | return false; | 180 | 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 | 127 | 463 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 463 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 463 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 463 | return false; | 180 | 463 | }); |
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 | 127 | 201 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 201 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 201 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 201 | return false; | 180 | 201 | }); |
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_16DataTypeDateTimeESC_EEEEbSG_ Line | Count | Source | 127 | 1 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 1 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 1 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 1 | return false; | 180 | 1 | }); |
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 | 127 | 2 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 2 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 2 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 2 | return false; | 180 | 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 | 127 | 5.53k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 5.53k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 5.53k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 5.53k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 5.53k | return false; | 134 | 5.53k | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 5.53k | return false; | 180 | 5.53k | }); |
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_ function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE5EEESC_EEEEbSG_ Line | Count | Source | 127 | 13 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 13 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 13 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 13 | return false; | 180 | 13 | }); |
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 | 127 | 33 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 33 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 33 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 33 | return false; | 180 | 33 | }); |
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 | 127 | 12 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 12 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 12 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 12 | return false; | 180 | 12 | }); |
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEESC_EEEEbSG_ Line | Count | Source | 127 | 16 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 16 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 16 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 16 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 16 | using FromFieldType = typename FromDataType::FieldType; | 137 | 16 | using ToFieldType = typename ToDataType::FieldType; | 138 | 16 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 16 | UInt32 from_scale = 0; | 140 | | | 141 | 16 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 16 | const auto* from_decimal_type = | 143 | 16 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 16 | from_precision = | 145 | 16 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 16 | from_scale = from_decimal_type->get_scale(); | 147 | 16 | } | 148 | | | 149 | 16 | UInt32 to_max_digits = 0; | 150 | 16 | UInt32 to_precision = 0; | 151 | 16 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 16 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 16 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 16 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 16 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 16 | return narrow_integral || multiply_may_overflow; | 178 | 16 | } | 179 | 0 | return false; | 180 | 16 | }); |
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 | 127 | 14 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 14 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 14 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 14 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 14 | using FromFieldType = typename FromDataType::FieldType; | 137 | 14 | using ToFieldType = typename ToDataType::FieldType; | 138 | 14 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 14 | UInt32 from_scale = 0; | 140 | | | 141 | 14 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 14 | const auto* from_decimal_type = | 143 | 14 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 14 | from_precision = | 145 | 14 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 14 | from_scale = from_decimal_type->get_scale(); | 147 | 14 | } | 148 | | | 149 | 14 | UInt32 to_max_digits = 0; | 150 | 14 | UInt32 to_precision = 0; | 151 | 14 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 14 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 14 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 14 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 14 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 14 | return narrow_integral || multiply_may_overflow; | 178 | 14 | } | 179 | 0 | return false; | 180 | 14 | }); |
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_ function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEESC_EEEEbSG_ Line | Count | Source | 127 | 5 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 5 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 5 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 5 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 5 | using FromFieldType = typename FromDataType::FieldType; | 137 | 5 | using ToFieldType = typename ToDataType::FieldType; | 138 | 5 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 5 | UInt32 from_scale = 0; | 140 | | | 141 | 5 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 5 | const auto* from_decimal_type = | 143 | 5 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 5 | from_precision = | 145 | 5 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 5 | from_scale = from_decimal_type->get_scale(); | 147 | 5 | } | 148 | | | 149 | 5 | UInt32 to_max_digits = 0; | 150 | 5 | UInt32 to_precision = 0; | 151 | 5 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | 5 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 5 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 5 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 5 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 5 | return narrow_integral || multiply_may_overflow; | 178 | 5 | } | 179 | 0 | return false; | 180 | 5 | }); |
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 | 127 | 379 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 379 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 379 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 379 | return false; | 180 | 379 | }); |
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 | 127 | 109 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 109 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 109 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 109 | return false; | 180 | 109 | }); |
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 | 127 | 332 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 332 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 332 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 332 | return false; | 180 | 332 | }); |
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 | 127 | 4 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 4 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 4 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 4 | return false; | 180 | 4 | }); |
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 | 127 | 46 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 46 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 46 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 46 | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 46 | return false; | 134 | 46 | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 46 | return false; | 180 | 46 | }); |
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 | 127 | 3.80k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 3.80k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 3.80k | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 3.80k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 3.80k | return false; | 134 | 3.80k | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 3.80k | return false; | 180 | 3.80k | }); |
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_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_ function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeStringESC_EEEEbSG_ Line | Count | Source | 127 | 25 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 25 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 25 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 25 | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 25 | return false; | 134 | 25 | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 25 | return false; | 180 | 25 | }); |
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 | 127 | 28 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 28 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 28 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 28 | return false; | 180 | 28 | }); |
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE4EEESC_EEEEbSG_ Line | Count | Source | 127 | 21 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 21 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 21 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 21 | return false; | 180 | 21 | }); |
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE5EEESC_EEEEbSG_ Line | Count | Source | 127 | 33 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 33 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 33 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 33 | return false; | 180 | 33 | }); |
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 | 127 | 9 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 9 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 9 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 9 | return false; | 180 | 9 | }); |
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE7EEESC_EEEEbSG_ Line | Count | Source | 127 | 3 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 3 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 3 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 3 | return false; | 180 | 3 | }); |
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_14DataTypeNumberILNS_13PrimitiveTypeE8EEESC_EEEEbSG_ Line | Count | Source | 127 | 7 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 7 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 7 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 7 | return false; | 180 | 7 | }); |
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 | 127 | 18 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 18 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 18 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 18 | return false; | 180 | 18 | }); |
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEESC_EEEEbSG_ Line | Count | Source | 127 | 2 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 2 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 2 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 2 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 2 | using FromFieldType = typename FromDataType::FieldType; | 137 | 2 | using ToFieldType = typename ToDataType::FieldType; | 138 | 2 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 2 | UInt32 from_scale = 0; | 140 | | | 141 | 2 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 2 | const auto* from_decimal_type = | 143 | 2 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 2 | from_precision = | 145 | 2 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 2 | from_scale = from_decimal_type->get_scale(); | 147 | 2 | } | 148 | | | 149 | 2 | UInt32 to_max_digits = 0; | 150 | 2 | UInt32 to_precision = 0; | 151 | 2 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 2 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 2 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 2 | to_precision = to_max_digits; | 167 | 2 | } | 168 | | | 169 | 2 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 2 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 2 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 2 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 2 | return narrow_integral || multiply_may_overflow; | 178 | 2 | } | 179 | 0 | return false; | 180 | 2 | }); |
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 | 127 | 1 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 1 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 1 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 1 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 1 | using FromFieldType = typename FromDataType::FieldType; | 137 | 1 | using ToFieldType = typename ToDataType::FieldType; | 138 | 1 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 1 | UInt32 from_scale = 0; | 140 | | | 141 | 1 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 1 | const auto* from_decimal_type = | 143 | 1 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 1 | from_precision = | 145 | 1 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 1 | from_scale = from_decimal_type->get_scale(); | 147 | 1 | } | 148 | | | 149 | 1 | UInt32 to_max_digits = 0; | 150 | 1 | UInt32 to_precision = 0; | 151 | 1 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 1 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 1 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 1 | to_precision = to_max_digits; | 167 | 1 | } | 168 | | | 169 | 1 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 1 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 1 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 1 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 1 | return narrow_integral || multiply_may_overflow; | 178 | 1 | } | 179 | 0 | return false; | 180 | 1 | }); |
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEESC_EEEEbSG_ Line | Count | Source | 127 | 1 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 1 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 1 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 1 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 1 | using FromFieldType = typename FromDataType::FieldType; | 137 | 1 | using ToFieldType = typename ToDataType::FieldType; | 138 | 1 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 1 | UInt32 from_scale = 0; | 140 | | | 141 | 1 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 1 | const auto* from_decimal_type = | 143 | 1 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 1 | from_precision = | 145 | 1 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 1 | from_scale = from_decimal_type->get_scale(); | 147 | 1 | } | 148 | | | 149 | 1 | UInt32 to_max_digits = 0; | 150 | 1 | UInt32 to_precision = 0; | 151 | 1 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 1 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 1 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 1 | to_precision = to_max_digits; | 167 | 1 | } | 168 | | | 169 | 1 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 1 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 1 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 1 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 1 | return narrow_integral || multiply_may_overflow; | 178 | 1 | } | 179 | 0 | return false; | 180 | 1 | }); |
function_cast.cpp:_ZZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ENKUlSG_E_clINSB_INS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEESC_EEEEbSG_ Line | Count | Source | 127 | 11 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 11 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 11 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | 11 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 11 | using FromFieldType = typename FromDataType::FieldType; | 137 | 11 | using ToFieldType = typename ToDataType::FieldType; | 138 | 11 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 11 | UInt32 from_scale = 0; | 140 | | | 141 | 11 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 11 | const auto* from_decimal_type = | 143 | 11 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 11 | from_precision = | 145 | 11 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 11 | from_scale = from_decimal_type->get_scale(); | 147 | 11 | } | 148 | | | 149 | 11 | UInt32 to_max_digits = 0; | 150 | 11 | UInt32 to_precision = 0; | 151 | 11 | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | 11 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 11 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 11 | to_precision = to_max_digits; | 167 | 11 | } | 168 | | | 169 | 11 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 11 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 11 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 11 | if (to_scale > from_scale) { | 174 | 0 | multiply_may_overflow &= | 175 | 0 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 0 | } | 177 | 11 | return narrow_integral || multiply_may_overflow; | 178 | 11 | } | 179 | 0 | return false; | 180 | 11 | }); |
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 | 127 | 8 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 8 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 8 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 8 | return false; | 180 | 8 | }); |
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 | 127 | 19 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 19 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 19 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | | return false; | 134 | | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 19 | return false; | 180 | 19 | }); |
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 | 127 | 299 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 299 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 299 | using FromDataType = typename Types2::LeftType; | 130 | | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 299 | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 299 | return false; | 134 | 299 | } | 135 | | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | | using FromFieldType = typename FromDataType::FieldType; | 137 | | using ToFieldType = typename ToDataType::FieldType; | 138 | | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | | UInt32 from_scale = 0; | 140 | | | 141 | | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | | const auto* from_decimal_type = | 143 | | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | | from_precision = | 145 | | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | | from_scale = from_decimal_type->get_scale(); | 147 | | } | 148 | | | 149 | | UInt32 to_max_digits = 0; | 150 | | UInt32 to_precision = 0; | 151 | | UInt32 to_scale = 0; | 152 | | | 153 | | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | | const auto* to_decimal_type = | 157 | | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | | to_precision = to_decimal_type->get_precision(); | 159 | | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | | to_scale = to_decimal_type->get_scale(); | 162 | | ToDataType::check_type_scale(to_scale); | 163 | | } | 164 | | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | | to_precision = to_max_digits; | 167 | | } | 168 | | | 169 | | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | | if (to_scale > from_scale) { | 174 | | multiply_may_overflow &= | 175 | | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | | } | 177 | | return narrow_integral || multiply_may_overflow; | 178 | | } | 179 | 299 | return false; | 180 | 299 | }); |
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_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_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_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_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_ |
181 | 223k | }; function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE2EEEvEEEEbRKT_ Line | Count | Source | 117 | 2.42k | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 2.42k | using Types = std::decay_t<decltype(types)>; | 119 | 2.42k | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | | return false; | 125 | | } | 126 | 2.42k | return call_on_index_and_data_type< | 127 | 2.42k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 2.42k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 2.42k | using FromDataType = typename Types2::LeftType; | 130 | 2.42k | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 2.42k | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 2.42k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 2.42k | return false; | 134 | 2.42k | } | 135 | 2.42k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 2.42k | using FromFieldType = typename FromDataType::FieldType; | 137 | 2.42k | using ToFieldType = typename ToDataType::FieldType; | 138 | 2.42k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 2.42k | UInt32 from_scale = 0; | 140 | | | 141 | 2.42k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 2.42k | const auto* from_decimal_type = | 143 | 2.42k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 2.42k | from_precision = | 145 | 2.42k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 2.42k | from_scale = from_decimal_type->get_scale(); | 147 | 2.42k | } | 148 | | | 149 | 2.42k | UInt32 to_max_digits = 0; | 150 | 2.42k | UInt32 to_precision = 0; | 151 | 2.42k | UInt32 to_scale = 0; | 152 | | | 153 | 2.42k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 2.42k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 2.42k | const auto* to_decimal_type = | 157 | 2.42k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 2.42k | to_precision = to_decimal_type->get_precision(); | 159 | 2.42k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 2.42k | to_scale = to_decimal_type->get_scale(); | 162 | 2.42k | ToDataType::check_type_scale(to_scale); | 163 | 2.42k | } | 164 | 2.42k | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 2.42k | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 2.42k | to_precision = to_max_digits; | 167 | 2.42k | } | 168 | | | 169 | 2.42k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 2.42k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 2.42k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 2.42k | if (to_scale > from_scale) { | 174 | 2.42k | multiply_may_overflow &= | 175 | 2.42k | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 2.42k | } | 177 | 2.42k | return narrow_integral || multiply_may_overflow; | 178 | 2.42k | } | 179 | 2.42k | return false; | 180 | 2.42k | }); | 181 | 2.42k | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE3EEEvEEEEbRKT_ Line | Count | Source | 117 | 4.48k | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 4.48k | using Types = std::decay_t<decltype(types)>; | 119 | 4.48k | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | | return false; | 125 | | } | 126 | 4.48k | return call_on_index_and_data_type< | 127 | 4.48k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 4.48k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 4.48k | using FromDataType = typename Types2::LeftType; | 130 | 4.48k | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 4.48k | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 4.48k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 4.48k | return false; | 134 | 4.48k | } | 135 | 4.48k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 4.48k | using FromFieldType = typename FromDataType::FieldType; | 137 | 4.48k | using ToFieldType = typename ToDataType::FieldType; | 138 | 4.48k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 4.48k | UInt32 from_scale = 0; | 140 | | | 141 | 4.48k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 4.48k | const auto* from_decimal_type = | 143 | 4.48k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 4.48k | from_precision = | 145 | 4.48k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 4.48k | from_scale = from_decimal_type->get_scale(); | 147 | 4.48k | } | 148 | | | 149 | 4.48k | UInt32 to_max_digits = 0; | 150 | 4.48k | UInt32 to_precision = 0; | 151 | 4.48k | UInt32 to_scale = 0; | 152 | | | 153 | 4.48k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 4.48k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 4.48k | const auto* to_decimal_type = | 157 | 4.48k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 4.48k | to_precision = to_decimal_type->get_precision(); | 159 | 4.48k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 4.48k | to_scale = to_decimal_type->get_scale(); | 162 | 4.48k | ToDataType::check_type_scale(to_scale); | 163 | 4.48k | } | 164 | 4.48k | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 4.48k | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 4.48k | to_precision = to_max_digits; | 167 | 4.48k | } | 168 | | | 169 | 4.48k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 4.48k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 4.48k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 4.48k | if (to_scale > from_scale) { | 174 | 4.48k | multiply_may_overflow &= | 175 | 4.48k | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 4.48k | } | 177 | 4.48k | return narrow_integral || multiply_may_overflow; | 178 | 4.48k | } | 179 | 4.48k | return false; | 180 | 4.48k | }); | 181 | 4.48k | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE4EEEvEEEEbRKT_ Line | Count | Source | 117 | 5.68k | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 5.68k | using Types = std::decay_t<decltype(types)>; | 119 | 5.68k | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | | return false; | 125 | | } | 126 | 5.68k | return call_on_index_and_data_type< | 127 | 5.68k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 5.68k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 5.68k | using FromDataType = typename Types2::LeftType; | 130 | 5.68k | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 5.68k | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 5.68k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 5.68k | return false; | 134 | 5.68k | } | 135 | 5.68k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 5.68k | using FromFieldType = typename FromDataType::FieldType; | 137 | 5.68k | using ToFieldType = typename ToDataType::FieldType; | 138 | 5.68k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 5.68k | UInt32 from_scale = 0; | 140 | | | 141 | 5.68k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 5.68k | const auto* from_decimal_type = | 143 | 5.68k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 5.68k | from_precision = | 145 | 5.68k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 5.68k | from_scale = from_decimal_type->get_scale(); | 147 | 5.68k | } | 148 | | | 149 | 5.68k | UInt32 to_max_digits = 0; | 150 | 5.68k | UInt32 to_precision = 0; | 151 | 5.68k | UInt32 to_scale = 0; | 152 | | | 153 | 5.68k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 5.68k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 5.68k | const auto* to_decimal_type = | 157 | 5.68k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 5.68k | to_precision = to_decimal_type->get_precision(); | 159 | 5.68k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 5.68k | to_scale = to_decimal_type->get_scale(); | 162 | 5.68k | ToDataType::check_type_scale(to_scale); | 163 | 5.68k | } | 164 | 5.68k | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 5.68k | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 5.68k | to_precision = to_max_digits; | 167 | 5.68k | } | 168 | | | 169 | 5.68k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 5.68k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 5.68k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 5.68k | if (to_scale > from_scale) { | 174 | 5.68k | multiply_may_overflow &= | 175 | 5.68k | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 5.68k | } | 177 | 5.68k | return narrow_integral || multiply_may_overflow; | 178 | 5.68k | } | 179 | 5.68k | return false; | 180 | 5.68k | }); | 181 | 5.68k | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE5EEEvEEEEbRKT_ Line | Count | Source | 117 | 30.2k | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 30.2k | using Types = std::decay_t<decltype(types)>; | 119 | 30.2k | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | | return false; | 125 | | } | 126 | 30.2k | return call_on_index_and_data_type< | 127 | 30.2k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 30.2k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 30.2k | using FromDataType = typename Types2::LeftType; | 130 | 30.2k | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 30.2k | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 30.2k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 30.2k | return false; | 134 | 30.2k | } | 135 | 30.2k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 30.2k | using FromFieldType = typename FromDataType::FieldType; | 137 | 30.2k | using ToFieldType = typename ToDataType::FieldType; | 138 | 30.2k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 30.2k | UInt32 from_scale = 0; | 140 | | | 141 | 30.2k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 30.2k | const auto* from_decimal_type = | 143 | 30.2k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 30.2k | from_precision = | 145 | 30.2k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 30.2k | from_scale = from_decimal_type->get_scale(); | 147 | 30.2k | } | 148 | | | 149 | 30.2k | UInt32 to_max_digits = 0; | 150 | 30.2k | UInt32 to_precision = 0; | 151 | 30.2k | UInt32 to_scale = 0; | 152 | | | 153 | 30.2k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 30.2k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 30.2k | const auto* to_decimal_type = | 157 | 30.2k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 30.2k | to_precision = to_decimal_type->get_precision(); | 159 | 30.2k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 30.2k | to_scale = to_decimal_type->get_scale(); | 162 | 30.2k | ToDataType::check_type_scale(to_scale); | 163 | 30.2k | } | 164 | 30.2k | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 30.2k | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 30.2k | to_precision = to_max_digits; | 167 | 30.2k | } | 168 | | | 169 | 30.2k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 30.2k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 30.2k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 30.2k | if (to_scale > from_scale) { | 174 | 30.2k | multiply_may_overflow &= | 175 | 30.2k | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 30.2k | } | 177 | 30.2k | return narrow_integral || multiply_may_overflow; | 178 | 30.2k | } | 179 | 30.2k | return false; | 180 | 30.2k | }); | 181 | 30.2k | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE6EEEvEEEEbRKT_ Line | Count | Source | 117 | 37.4k | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 37.4k | using Types = std::decay_t<decltype(types)>; | 119 | 37.4k | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | | return false; | 125 | | } | 126 | 37.4k | return call_on_index_and_data_type< | 127 | 37.4k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 37.4k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 37.4k | using FromDataType = typename Types2::LeftType; | 130 | 37.4k | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 37.4k | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 37.4k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 37.4k | return false; | 134 | 37.4k | } | 135 | 37.4k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 37.4k | using FromFieldType = typename FromDataType::FieldType; | 137 | 37.4k | using ToFieldType = typename ToDataType::FieldType; | 138 | 37.4k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 37.4k | UInt32 from_scale = 0; | 140 | | | 141 | 37.4k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 37.4k | const auto* from_decimal_type = | 143 | 37.4k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 37.4k | from_precision = | 145 | 37.4k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 37.4k | from_scale = from_decimal_type->get_scale(); | 147 | 37.4k | } | 148 | | | 149 | 37.4k | UInt32 to_max_digits = 0; | 150 | 37.4k | UInt32 to_precision = 0; | 151 | 37.4k | UInt32 to_scale = 0; | 152 | | | 153 | 37.4k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 37.4k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 37.4k | const auto* to_decimal_type = | 157 | 37.4k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 37.4k | to_precision = to_decimal_type->get_precision(); | 159 | 37.4k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 37.4k | to_scale = to_decimal_type->get_scale(); | 162 | 37.4k | ToDataType::check_type_scale(to_scale); | 163 | 37.4k | } | 164 | 37.4k | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 37.4k | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 37.4k | to_precision = to_max_digits; | 167 | 37.4k | } | 168 | | | 169 | 37.4k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 37.4k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 37.4k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 37.4k | if (to_scale > from_scale) { | 174 | 37.4k | multiply_may_overflow &= | 175 | 37.4k | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 37.4k | } | 177 | 37.4k | return narrow_integral || multiply_may_overflow; | 178 | 37.4k | } | 179 | 37.4k | return false; | 180 | 37.4k | }); | 181 | 37.4k | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE7EEEvEEEEbRKT_ Line | Count | Source | 117 | 5.34k | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 5.34k | using Types = std::decay_t<decltype(types)>; | 119 | 5.34k | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | | return false; | 125 | | } | 126 | 5.34k | return call_on_index_and_data_type< | 127 | 5.34k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 5.34k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 5.34k | using FromDataType = typename Types2::LeftType; | 130 | 5.34k | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 5.34k | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 5.34k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 5.34k | return false; | 134 | 5.34k | } | 135 | 5.34k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 5.34k | using FromFieldType = typename FromDataType::FieldType; | 137 | 5.34k | using ToFieldType = typename ToDataType::FieldType; | 138 | 5.34k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 5.34k | UInt32 from_scale = 0; | 140 | | | 141 | 5.34k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 5.34k | const auto* from_decimal_type = | 143 | 5.34k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 5.34k | from_precision = | 145 | 5.34k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 5.34k | from_scale = from_decimal_type->get_scale(); | 147 | 5.34k | } | 148 | | | 149 | 5.34k | UInt32 to_max_digits = 0; | 150 | 5.34k | UInt32 to_precision = 0; | 151 | 5.34k | UInt32 to_scale = 0; | 152 | | | 153 | 5.34k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 5.34k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 5.34k | const auto* to_decimal_type = | 157 | 5.34k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 5.34k | to_precision = to_decimal_type->get_precision(); | 159 | 5.34k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 5.34k | to_scale = to_decimal_type->get_scale(); | 162 | 5.34k | ToDataType::check_type_scale(to_scale); | 163 | 5.34k | } | 164 | 5.34k | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 5.34k | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 5.34k | to_precision = to_max_digits; | 167 | 5.34k | } | 168 | | | 169 | 5.34k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 5.34k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 5.34k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 5.34k | if (to_scale > from_scale) { | 174 | 5.34k | multiply_may_overflow &= | 175 | 5.34k | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 5.34k | } | 177 | 5.34k | return narrow_integral || multiply_may_overflow; | 178 | 5.34k | } | 179 | 5.34k | return false; | 180 | 5.34k | }); | 181 | 5.34k | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE8EEEvEEEEbRKT_ Line | Count | Source | 117 | 10.7k | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 10.7k | using Types = std::decay_t<decltype(types)>; | 119 | 10.7k | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | | return false; | 125 | | } | 126 | 10.7k | return call_on_index_and_data_type< | 127 | 10.7k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 10.7k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 10.7k | using FromDataType = typename Types2::LeftType; | 130 | 10.7k | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 10.7k | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 10.7k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 10.7k | return false; | 134 | 10.7k | } | 135 | 10.7k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 10.7k | using FromFieldType = typename FromDataType::FieldType; | 137 | 10.7k | using ToFieldType = typename ToDataType::FieldType; | 138 | 10.7k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 10.7k | UInt32 from_scale = 0; | 140 | | | 141 | 10.7k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 10.7k | const auto* from_decimal_type = | 143 | 10.7k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 10.7k | from_precision = | 145 | 10.7k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 10.7k | from_scale = from_decimal_type->get_scale(); | 147 | 10.7k | } | 148 | | | 149 | 10.7k | UInt32 to_max_digits = 0; | 150 | 10.7k | UInt32 to_precision = 0; | 151 | 10.7k | UInt32 to_scale = 0; | 152 | | | 153 | 10.7k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 10.7k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 10.7k | const auto* to_decimal_type = | 157 | 10.7k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 10.7k | to_precision = to_decimal_type->get_precision(); | 159 | 10.7k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 10.7k | to_scale = to_decimal_type->get_scale(); | 162 | 10.7k | ToDataType::check_type_scale(to_scale); | 163 | 10.7k | } | 164 | 10.7k | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 10.7k | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 10.7k | to_precision = to_max_digits; | 167 | 10.7k | } | 168 | | | 169 | 10.7k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 10.7k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 10.7k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 10.7k | if (to_scale > from_scale) { | 174 | 10.7k | multiply_may_overflow &= | 175 | 10.7k | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 10.7k | } | 177 | 10.7k | return narrow_integral || multiply_may_overflow; | 178 | 10.7k | } | 179 | 10.7k | return false; | 180 | 10.7k | }); | 181 | 10.7k | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeNumberILNS_13PrimitiveTypeE9EEEvEEEEbRKT_ Line | Count | Source | 117 | 25.3k | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 25.3k | using Types = std::decay_t<decltype(types)>; | 119 | 25.3k | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | | return false; | 125 | | } | 126 | 25.3k | return call_on_index_and_data_type< | 127 | 25.3k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 25.3k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 25.3k | using FromDataType = typename Types2::LeftType; | 130 | 25.3k | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 25.3k | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 25.3k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 25.3k | return false; | 134 | 25.3k | } | 135 | 25.3k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 25.3k | using FromFieldType = typename FromDataType::FieldType; | 137 | 25.3k | using ToFieldType = typename ToDataType::FieldType; | 138 | 25.3k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 25.3k | UInt32 from_scale = 0; | 140 | | | 141 | 25.3k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 25.3k | const auto* from_decimal_type = | 143 | 25.3k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 25.3k | from_precision = | 145 | 25.3k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 25.3k | from_scale = from_decimal_type->get_scale(); | 147 | 25.3k | } | 148 | | | 149 | 25.3k | UInt32 to_max_digits = 0; | 150 | 25.3k | UInt32 to_precision = 0; | 151 | 25.3k | UInt32 to_scale = 0; | 152 | | | 153 | 25.3k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 25.3k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 25.3k | const auto* to_decimal_type = | 157 | 25.3k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 25.3k | to_precision = to_decimal_type->get_precision(); | 159 | 25.3k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 25.3k | to_scale = to_decimal_type->get_scale(); | 162 | 25.3k | ToDataType::check_type_scale(to_scale); | 163 | 25.3k | } | 164 | 25.3k | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 25.3k | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 25.3k | to_precision = to_max_digits; | 167 | 25.3k | } | 168 | | | 169 | 25.3k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 25.3k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 25.3k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 25.3k | if (to_scale > from_scale) { | 174 | 25.3k | multiply_may_overflow &= | 175 | 25.3k | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 25.3k | } | 177 | 25.3k | return narrow_integral || multiply_may_overflow; | 178 | 25.3k | } | 179 | 25.3k | return false; | 180 | 25.3k | }); | 181 | 25.3k | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE28EEEvEEEEbRKT_ Line | Count | Source | 117 | 7.87k | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 7.87k | using Types = std::decay_t<decltype(types)>; | 119 | 7.87k | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | | return false; | 125 | | } | 126 | 7.87k | return call_on_index_and_data_type< | 127 | 7.87k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 7.87k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 7.87k | using FromDataType = typename Types2::LeftType; | 130 | 7.87k | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 7.87k | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 7.87k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 7.87k | return false; | 134 | 7.87k | } | 135 | 7.87k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 7.87k | using FromFieldType = typename FromDataType::FieldType; | 137 | 7.87k | using ToFieldType = typename ToDataType::FieldType; | 138 | 7.87k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 7.87k | UInt32 from_scale = 0; | 140 | | | 141 | 7.87k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 7.87k | const auto* from_decimal_type = | 143 | 7.87k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 7.87k | from_precision = | 145 | 7.87k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 7.87k | from_scale = from_decimal_type->get_scale(); | 147 | 7.87k | } | 148 | | | 149 | 7.87k | UInt32 to_max_digits = 0; | 150 | 7.87k | UInt32 to_precision = 0; | 151 | 7.87k | UInt32 to_scale = 0; | 152 | | | 153 | 7.87k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 7.87k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 7.87k | const auto* to_decimal_type = | 157 | 7.87k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 7.87k | to_precision = to_decimal_type->get_precision(); | 159 | 7.87k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 7.87k | to_scale = to_decimal_type->get_scale(); | 162 | 7.87k | ToDataType::check_type_scale(to_scale); | 163 | 7.87k | } | 164 | 7.87k | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 7.87k | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 7.87k | to_precision = to_max_digits; | 167 | 7.87k | } | 168 | | | 169 | 7.87k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 7.87k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 7.87k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 7.87k | if (to_scale > from_scale) { | 174 | 7.87k | multiply_may_overflow &= | 175 | 7.87k | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 7.87k | } | 177 | 7.87k | return narrow_integral || multiply_may_overflow; | 178 | 7.87k | } | 179 | 7.87k | return false; | 180 | 7.87k | }); | 181 | 7.87k | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE29EEEvEEEEbRKT_ Line | Count | Source | 117 | 16.8k | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 16.8k | using Types = std::decay_t<decltype(types)>; | 119 | 16.8k | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | | return false; | 125 | | } | 126 | 16.8k | return call_on_index_and_data_type< | 127 | 16.8k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 16.8k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 16.8k | using FromDataType = typename Types2::LeftType; | 130 | 16.8k | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 16.8k | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 16.8k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 16.8k | return false; | 134 | 16.8k | } | 135 | 16.8k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 16.8k | using FromFieldType = typename FromDataType::FieldType; | 137 | 16.8k | using ToFieldType = typename ToDataType::FieldType; | 138 | 16.8k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 16.8k | UInt32 from_scale = 0; | 140 | | | 141 | 16.8k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 16.8k | const auto* from_decimal_type = | 143 | 16.8k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 16.8k | from_precision = | 145 | 16.8k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 16.8k | from_scale = from_decimal_type->get_scale(); | 147 | 16.8k | } | 148 | | | 149 | 16.8k | UInt32 to_max_digits = 0; | 150 | 16.8k | UInt32 to_precision = 0; | 151 | 16.8k | UInt32 to_scale = 0; | 152 | | | 153 | 16.8k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 16.8k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 16.8k | const auto* to_decimal_type = | 157 | 16.8k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 16.8k | to_precision = to_decimal_type->get_precision(); | 159 | 16.8k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 16.8k | to_scale = to_decimal_type->get_scale(); | 162 | 16.8k | ToDataType::check_type_scale(to_scale); | 163 | 16.8k | } | 164 | 16.8k | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 16.8k | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 16.8k | to_precision = to_max_digits; | 167 | 16.8k | } | 168 | | | 169 | 16.8k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 16.8k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 16.8k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 16.8k | if (to_scale > from_scale) { | 174 | 16.8k | multiply_may_overflow &= | 175 | 16.8k | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 16.8k | } | 177 | 16.8k | return narrow_integral || multiply_may_overflow; | 178 | 16.8k | } | 179 | 16.8k | return false; | 180 | 16.8k | }); | 181 | 16.8k | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE20EEEvEEEEbRKT_ Line | Count | Source | 117 | 229 | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 229 | using Types = std::decay_t<decltype(types)>; | 119 | 229 | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | | return false; | 125 | | } | 126 | 229 | return call_on_index_and_data_type< | 127 | 229 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 229 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 229 | using FromDataType = typename Types2::LeftType; | 130 | 229 | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 229 | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 229 | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 229 | return false; | 134 | 229 | } | 135 | 229 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 229 | using FromFieldType = typename FromDataType::FieldType; | 137 | 229 | using ToFieldType = typename ToDataType::FieldType; | 138 | 229 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 229 | UInt32 from_scale = 0; | 140 | | | 141 | 229 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 229 | const auto* from_decimal_type = | 143 | 229 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 229 | from_precision = | 145 | 229 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 229 | from_scale = from_decimal_type->get_scale(); | 147 | 229 | } | 148 | | | 149 | 229 | UInt32 to_max_digits = 0; | 150 | 229 | UInt32 to_precision = 0; | 151 | 229 | UInt32 to_scale = 0; | 152 | | | 153 | 229 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 229 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 229 | const auto* to_decimal_type = | 157 | 229 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 229 | to_precision = to_decimal_type->get_precision(); | 159 | 229 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 229 | to_scale = to_decimal_type->get_scale(); | 162 | 229 | ToDataType::check_type_scale(to_scale); | 163 | 229 | } | 164 | 229 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 229 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 229 | to_precision = to_max_digits; | 167 | 229 | } | 168 | | | 169 | 229 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 229 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 229 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 229 | if (to_scale > from_scale) { | 174 | 229 | multiply_may_overflow &= | 175 | 229 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 229 | } | 177 | 229 | return narrow_integral || multiply_may_overflow; | 178 | 229 | } | 179 | 229 | return false; | 180 | 229 | }); | 181 | 229 | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE30EEEvEEEEbRKT_ Line | Count | Source | 117 | 15.0k | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 15.0k | using Types = std::decay_t<decltype(types)>; | 119 | 15.0k | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | | return false; | 125 | | } | 126 | 15.0k | return call_on_index_and_data_type< | 127 | 15.0k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 15.0k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 15.0k | using FromDataType = typename Types2::LeftType; | 130 | 15.0k | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 15.0k | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 15.0k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 15.0k | return false; | 134 | 15.0k | } | 135 | 15.0k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 15.0k | using FromFieldType = typename FromDataType::FieldType; | 137 | 15.0k | using ToFieldType = typename ToDataType::FieldType; | 138 | 15.0k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 15.0k | UInt32 from_scale = 0; | 140 | | | 141 | 15.0k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 15.0k | const auto* from_decimal_type = | 143 | 15.0k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 15.0k | from_precision = | 145 | 15.0k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 15.0k | from_scale = from_decimal_type->get_scale(); | 147 | 15.0k | } | 148 | | | 149 | 15.0k | UInt32 to_max_digits = 0; | 150 | 15.0k | UInt32 to_precision = 0; | 151 | 15.0k | UInt32 to_scale = 0; | 152 | | | 153 | 15.0k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 15.0k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 15.0k | const auto* to_decimal_type = | 157 | 15.0k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 15.0k | to_precision = to_decimal_type->get_precision(); | 159 | 15.0k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 15.0k | to_scale = to_decimal_type->get_scale(); | 162 | 15.0k | ToDataType::check_type_scale(to_scale); | 163 | 15.0k | } | 164 | 15.0k | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 15.0k | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 15.0k | to_precision = to_max_digits; | 167 | 15.0k | } | 168 | | | 169 | 15.0k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 15.0k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 15.0k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 15.0k | if (to_scale > from_scale) { | 174 | 15.0k | multiply_may_overflow &= | 175 | 15.0k | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 15.0k | } | 177 | 15.0k | return narrow_integral || multiply_may_overflow; | 178 | 15.0k | } | 179 | 15.0k | return false; | 180 | 15.0k | }); | 181 | 15.0k | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_15DataTypeDecimalILNS_13PrimitiveTypeE35EEEvEEEEbRKT_ Line | Count | Source | 117 | 10.9k | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 10.9k | using Types = std::decay_t<decltype(types)>; | 119 | 10.9k | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | | return false; | 125 | | } | 126 | 10.9k | return call_on_index_and_data_type< | 127 | 10.9k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 10.9k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 10.9k | using FromDataType = typename Types2::LeftType; | 130 | 10.9k | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 10.9k | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 10.9k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 10.9k | return false; | 134 | 10.9k | } | 135 | 10.9k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 10.9k | using FromFieldType = typename FromDataType::FieldType; | 137 | 10.9k | using ToFieldType = typename ToDataType::FieldType; | 138 | 10.9k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 10.9k | UInt32 from_scale = 0; | 140 | | | 141 | 10.9k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 10.9k | const auto* from_decimal_type = | 143 | 10.9k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 10.9k | from_precision = | 145 | 10.9k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 10.9k | from_scale = from_decimal_type->get_scale(); | 147 | 10.9k | } | 148 | | | 149 | 10.9k | UInt32 to_max_digits = 0; | 150 | 10.9k | UInt32 to_precision = 0; | 151 | 10.9k | UInt32 to_scale = 0; | 152 | | | 153 | 10.9k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 10.9k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 10.9k | const auto* to_decimal_type = | 157 | 10.9k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 10.9k | to_precision = to_decimal_type->get_precision(); | 159 | 10.9k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 10.9k | to_scale = to_decimal_type->get_scale(); | 162 | 10.9k | ToDataType::check_type_scale(to_scale); | 163 | 10.9k | } | 164 | 10.9k | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 10.9k | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 10.9k | to_precision = to_max_digits; | 167 | 10.9k | } | 168 | | | 169 | 10.9k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 10.9k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 10.9k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 10.9k | if (to_scale > from_scale) { | 174 | 10.9k | multiply_may_overflow &= | 175 | 10.9k | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 10.9k | } | 177 | 10.9k | return narrow_integral || multiply_may_overflow; | 178 | 10.9k | } | 179 | 10.9k | return false; | 180 | 10.9k | }); | 181 | 10.9k | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeDateEvEEEEbRKT_ Line | Count | Source | 117 | 30 | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 30 | using Types = std::decay_t<decltype(types)>; | 119 | 30 | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | | return false; | 125 | | } | 126 | 30 | return call_on_index_and_data_type< | 127 | 30 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 30 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 30 | using FromDataType = typename Types2::LeftType; | 130 | 30 | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 30 | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 30 | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 30 | return false; | 134 | 30 | } | 135 | 30 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 30 | using FromFieldType = typename FromDataType::FieldType; | 137 | 30 | using ToFieldType = typename ToDataType::FieldType; | 138 | 30 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 30 | UInt32 from_scale = 0; | 140 | | | 141 | 30 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 30 | const auto* from_decimal_type = | 143 | 30 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 30 | from_precision = | 145 | 30 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 30 | from_scale = from_decimal_type->get_scale(); | 147 | 30 | } | 148 | | | 149 | 30 | UInt32 to_max_digits = 0; | 150 | 30 | UInt32 to_precision = 0; | 151 | 30 | UInt32 to_scale = 0; | 152 | | | 153 | 30 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 30 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 30 | const auto* to_decimal_type = | 157 | 30 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 30 | to_precision = to_decimal_type->get_precision(); | 159 | 30 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 30 | to_scale = to_decimal_type->get_scale(); | 162 | 30 | ToDataType::check_type_scale(to_scale); | 163 | 30 | } | 164 | 30 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 30 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 30 | to_precision = to_max_digits; | 167 | 30 | } | 168 | | | 169 | 30 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 30 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 30 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 30 | if (to_scale > from_scale) { | 174 | 30 | multiply_may_overflow &= | 175 | 30 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 30 | } | 177 | 30 | return narrow_integral || multiply_may_overflow; | 178 | 30 | } | 179 | 30 | return false; | 180 | 30 | }); | 181 | 30 | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeDateV2EvEEEEbRKT_ Line | Count | Source | 117 | 7.45k | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 7.45k | using Types = std::decay_t<decltype(types)>; | 119 | 7.45k | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | | return false; | 125 | | } | 126 | 7.45k | return call_on_index_and_data_type< | 127 | 7.45k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 7.45k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 7.45k | using FromDataType = typename Types2::LeftType; | 130 | 7.45k | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 7.45k | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 7.45k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 7.45k | return false; | 134 | 7.45k | } | 135 | 7.45k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 7.45k | using FromFieldType = typename FromDataType::FieldType; | 137 | 7.45k | using ToFieldType = typename ToDataType::FieldType; | 138 | 7.45k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 7.45k | UInt32 from_scale = 0; | 140 | | | 141 | 7.45k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 7.45k | const auto* from_decimal_type = | 143 | 7.45k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 7.45k | from_precision = | 145 | 7.45k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 7.45k | from_scale = from_decimal_type->get_scale(); | 147 | 7.45k | } | 148 | | | 149 | 7.45k | UInt32 to_max_digits = 0; | 150 | 7.45k | UInt32 to_precision = 0; | 151 | 7.45k | UInt32 to_scale = 0; | 152 | | | 153 | 7.45k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 7.45k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 7.45k | const auto* to_decimal_type = | 157 | 7.45k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 7.45k | to_precision = to_decimal_type->get_precision(); | 159 | 7.45k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 7.45k | to_scale = to_decimal_type->get_scale(); | 162 | 7.45k | ToDataType::check_type_scale(to_scale); | 163 | 7.45k | } | 164 | 7.45k | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 7.45k | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 7.45k | to_precision = to_max_digits; | 167 | 7.45k | } | 168 | | | 169 | 7.45k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 7.45k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 7.45k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 7.45k | if (to_scale > from_scale) { | 174 | 7.45k | multiply_may_overflow &= | 175 | 7.45k | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 7.45k | } | 177 | 7.45k | return narrow_integral || multiply_may_overflow; | 178 | 7.45k | } | 179 | 7.45k | return false; | 180 | 7.45k | }); | 181 | 7.45k | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_18DataTypeDateTimeV2EvEEEEbRKT_ Line | Count | Source | 117 | 4.81k | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 4.81k | using Types = std::decay_t<decltype(types)>; | 119 | 4.81k | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | | return false; | 125 | | } | 126 | 4.81k | return call_on_index_and_data_type< | 127 | 4.81k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 4.81k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 4.81k | using FromDataType = typename Types2::LeftType; | 130 | 4.81k | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 4.81k | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 4.81k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 4.81k | return false; | 134 | 4.81k | } | 135 | 4.81k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 4.81k | using FromFieldType = typename FromDataType::FieldType; | 137 | 4.81k | using ToFieldType = typename ToDataType::FieldType; | 138 | 4.81k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 4.81k | UInt32 from_scale = 0; | 140 | | | 141 | 4.81k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 4.81k | const auto* from_decimal_type = | 143 | 4.81k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 4.81k | from_precision = | 145 | 4.81k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 4.81k | from_scale = from_decimal_type->get_scale(); | 147 | 4.81k | } | 148 | | | 149 | 4.81k | UInt32 to_max_digits = 0; | 150 | 4.81k | UInt32 to_precision = 0; | 151 | 4.81k | UInt32 to_scale = 0; | 152 | | | 153 | 4.81k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 4.81k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 4.81k | const auto* to_decimal_type = | 157 | 4.81k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 4.81k | to_precision = to_decimal_type->get_precision(); | 159 | 4.81k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 4.81k | to_scale = to_decimal_type->get_scale(); | 162 | 4.81k | ToDataType::check_type_scale(to_scale); | 163 | 4.81k | } | 164 | 4.81k | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 4.81k | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 4.81k | to_precision = to_max_digits; | 167 | 4.81k | } | 168 | | | 169 | 4.81k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 4.81k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 4.81k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 4.81k | if (to_scale > from_scale) { | 174 | 4.81k | multiply_may_overflow &= | 175 | 4.81k | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 4.81k | } | 177 | 4.81k | return narrow_integral || multiply_may_overflow; | 178 | 4.81k | } | 179 | 4.81k | return false; | 180 | 4.81k | }); | 181 | 4.81k | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_16DataTypeDateTimeEvEEEEbRKT_ Line | Count | Source | 117 | 25 | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 25 | using Types = std::decay_t<decltype(types)>; | 119 | 25 | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | | return false; | 125 | | } | 126 | 25 | return call_on_index_and_data_type< | 127 | 25 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 25 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 25 | using FromDataType = typename Types2::LeftType; | 130 | 25 | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 25 | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 25 | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 25 | return false; | 134 | 25 | } | 135 | 25 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 25 | using FromFieldType = typename FromDataType::FieldType; | 137 | 25 | using ToFieldType = typename ToDataType::FieldType; | 138 | 25 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 25 | UInt32 from_scale = 0; | 140 | | | 141 | 25 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 25 | const auto* from_decimal_type = | 143 | 25 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 25 | from_precision = | 145 | 25 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 25 | from_scale = from_decimal_type->get_scale(); | 147 | 25 | } | 148 | | | 149 | 25 | UInt32 to_max_digits = 0; | 150 | 25 | UInt32 to_precision = 0; | 151 | 25 | UInt32 to_scale = 0; | 152 | | | 153 | 25 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 25 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 25 | const auto* to_decimal_type = | 157 | 25 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 25 | to_precision = to_decimal_type->get_precision(); | 159 | 25 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 25 | to_scale = to_decimal_type->get_scale(); | 162 | 25 | ToDataType::check_type_scale(to_scale); | 163 | 25 | } | 164 | 25 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 25 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 25 | to_precision = to_max_digits; | 167 | 25 | } | 168 | | | 169 | 25 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 25 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 25 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 25 | if (to_scale > from_scale) { | 174 | 25 | multiply_may_overflow &= | 175 | 25 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 25 | } | 177 | 25 | return narrow_integral || multiply_may_overflow; | 178 | 25 | } | 179 | 25 | return false; | 180 | 25 | }); | 181 | 25 | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeTimeV2EvEEEEbRKT_ Line | Count | Source | 117 | 460 | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 460 | using Types = std::decay_t<decltype(types)>; | 119 | 460 | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | | return false; | 125 | | } | 126 | 460 | return call_on_index_and_data_type< | 127 | 460 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 460 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 460 | using FromDataType = typename Types2::LeftType; | 130 | 460 | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 460 | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 460 | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 460 | return false; | 134 | 460 | } | 135 | 460 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 460 | using FromFieldType = typename FromDataType::FieldType; | 137 | 460 | using ToFieldType = typename ToDataType::FieldType; | 138 | 460 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 460 | UInt32 from_scale = 0; | 140 | | | 141 | 460 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 460 | const auto* from_decimal_type = | 143 | 460 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 460 | from_precision = | 145 | 460 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 460 | from_scale = from_decimal_type->get_scale(); | 147 | 460 | } | 148 | | | 149 | 460 | UInt32 to_max_digits = 0; | 150 | 460 | UInt32 to_precision = 0; | 151 | 460 | UInt32 to_scale = 0; | 152 | | | 153 | 460 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 460 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 460 | const auto* to_decimal_type = | 157 | 460 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 460 | to_precision = to_decimal_type->get_precision(); | 159 | 460 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 460 | to_scale = to_decimal_type->get_scale(); | 162 | 460 | ToDataType::check_type_scale(to_scale); | 163 | 460 | } | 164 | 460 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 460 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 460 | to_precision = to_max_digits; | 167 | 460 | } | 168 | | | 169 | 460 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 460 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 460 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 460 | if (to_scale > from_scale) { | 174 | 460 | multiply_may_overflow &= | 175 | 460 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 460 | } | 177 | 460 | return narrow_integral || multiply_may_overflow; | 178 | 460 | } | 179 | 460 | return false; | 180 | 460 | }); | 181 | 460 | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_19DataTypeTimeStampTzEvEEEEbRKT_ Line | Count | Source | 117 | 462 | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 462 | using Types = std::decay_t<decltype(types)>; | 119 | 462 | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | 462 | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | 462 | return false; | 125 | 462 | } | 126 | 0 | return call_on_index_and_data_type< | 127 | 462 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 462 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 462 | using FromDataType = typename Types2::LeftType; | 130 | 462 | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 462 | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 462 | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 462 | return false; | 134 | 462 | } | 135 | 462 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 462 | using FromFieldType = typename FromDataType::FieldType; | 137 | 462 | using ToFieldType = typename ToDataType::FieldType; | 138 | 462 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 462 | UInt32 from_scale = 0; | 140 | | | 141 | 462 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 462 | const auto* from_decimal_type = | 143 | 462 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 462 | from_precision = | 145 | 462 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 462 | from_scale = from_decimal_type->get_scale(); | 147 | 462 | } | 148 | | | 149 | 462 | UInt32 to_max_digits = 0; | 150 | 462 | UInt32 to_precision = 0; | 151 | 462 | UInt32 to_scale = 0; | 152 | | | 153 | 462 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 462 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 462 | const auto* to_decimal_type = | 157 | 462 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 462 | to_precision = to_decimal_type->get_precision(); | 159 | 462 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 462 | to_scale = to_decimal_type->get_scale(); | 162 | 462 | ToDataType::check_type_scale(to_scale); | 163 | 462 | } | 164 | 462 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 462 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 462 | to_precision = to_max_digits; | 167 | 462 | } | 168 | | | 169 | 462 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 462 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 462 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 462 | if (to_scale > from_scale) { | 174 | 462 | multiply_may_overflow &= | 175 | 462 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 462 | } | 177 | 462 | return narrow_integral || multiply_may_overflow; | 178 | 462 | } | 179 | 462 | return false; | 180 | 462 | }); | 181 | 462 | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv4EvEEEEbRKT_ Line | Count | Source | 117 | 634 | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 634 | using Types = std::decay_t<decltype(types)>; | 119 | 634 | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | 634 | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | 634 | return false; | 125 | 634 | } | 126 | 0 | return call_on_index_and_data_type< | 127 | 634 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 634 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 634 | using FromDataType = typename Types2::LeftType; | 130 | 634 | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 634 | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 634 | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 634 | return false; | 134 | 634 | } | 135 | 634 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 634 | using FromFieldType = typename FromDataType::FieldType; | 137 | 634 | using ToFieldType = typename ToDataType::FieldType; | 138 | 634 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 634 | UInt32 from_scale = 0; | 140 | | | 141 | 634 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 634 | const auto* from_decimal_type = | 143 | 634 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 634 | from_precision = | 145 | 634 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 634 | from_scale = from_decimal_type->get_scale(); | 147 | 634 | } | 148 | | | 149 | 634 | UInt32 to_max_digits = 0; | 150 | 634 | UInt32 to_precision = 0; | 151 | 634 | UInt32 to_scale = 0; | 152 | | | 153 | 634 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 634 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 634 | const auto* to_decimal_type = | 157 | 634 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 634 | to_precision = to_decimal_type->get_precision(); | 159 | 634 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 634 | to_scale = to_decimal_type->get_scale(); | 162 | 634 | ToDataType::check_type_scale(to_scale); | 163 | 634 | } | 164 | 634 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 634 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 634 | to_precision = to_max_digits; | 167 | 634 | } | 168 | | | 169 | 634 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 634 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 634 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 634 | if (to_scale > from_scale) { | 174 | 634 | multiply_may_overflow &= | 175 | 634 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 634 | } | 177 | 634 | return narrow_integral || multiply_may_overflow; | 178 | 634 | } | 179 | 634 | return false; | 180 | 634 | }); | 181 | 634 | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_12DataTypeIPv6EvEEEEbRKT_ Line | Count | Source | 117 | 291 | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 291 | using Types = std::decay_t<decltype(types)>; | 119 | 291 | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | 291 | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | 291 | return false; | 125 | 291 | } | 126 | 0 | return call_on_index_and_data_type< | 127 | 291 | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 291 | using Types2 = std::decay_t<decltype(types2)>; | 129 | 291 | using FromDataType = typename Types2::LeftType; | 130 | 291 | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 291 | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 291 | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 291 | return false; | 134 | 291 | } | 135 | 291 | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 291 | using FromFieldType = typename FromDataType::FieldType; | 137 | 291 | using ToFieldType = typename ToDataType::FieldType; | 138 | 291 | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 291 | UInt32 from_scale = 0; | 140 | | | 141 | 291 | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 291 | const auto* from_decimal_type = | 143 | 291 | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 291 | from_precision = | 145 | 291 | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 291 | from_scale = from_decimal_type->get_scale(); | 147 | 291 | } | 148 | | | 149 | 291 | UInt32 to_max_digits = 0; | 150 | 291 | UInt32 to_precision = 0; | 151 | 291 | UInt32 to_scale = 0; | 152 | | | 153 | 291 | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 291 | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 291 | const auto* to_decimal_type = | 157 | 291 | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 291 | to_precision = to_decimal_type->get_precision(); | 159 | 291 | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 291 | to_scale = to_decimal_type->get_scale(); | 162 | 291 | ToDataType::check_type_scale(to_scale); | 163 | 291 | } | 164 | 291 | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 291 | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 291 | to_precision = to_max_digits; | 167 | 291 | } | 168 | | | 169 | 291 | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 291 | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 291 | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 291 | if (to_scale > from_scale) { | 174 | 291 | multiply_may_overflow &= | 175 | 291 | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 291 | } | 177 | 291 | return narrow_integral || multiply_may_overflow; | 178 | 291 | } | 179 | 291 | return false; | 180 | 291 | }); | 181 | 291 | }; |
function_cast.cpp:_ZZN5doris11CastWrapper33need_replace_null_data_to_defaultEPNS_15FunctionContextERKSt10shared_ptrIKNS_9IDataTypeEES8_ENK3$_0clINS_8TypePairINS_14DataTypeStringEvEEEEbRKT_ Line | Count | Source | 117 | 36.7k | auto make_default_wrapper = [&](const auto& types) -> bool { | 118 | 36.7k | using Types = std::decay_t<decltype(types)>; | 119 | 36.7k | using ToDataType = typename Types::LeftType; | 120 | | | 121 | | if constexpr (!(IsDataTypeDecimalOrNumber<ToDataType> || IsDatelikeV1Types<ToDataType> || | 122 | | IsDatelikeV2Types<ToDataType> || | 123 | 36.7k | std::is_same_v<ToDataType, DataTypeTimeV2>)) { | 124 | 36.7k | return false; | 125 | 36.7k | } | 126 | 0 | return call_on_index_and_data_type< | 127 | 36.7k | ToDataType>(from_type->get_primitive_type(), [&](const auto& types2) -> bool { | 128 | 36.7k | using Types2 = std::decay_t<decltype(types2)>; | 129 | 36.7k | using FromDataType = typename Types2::LeftType; | 130 | 36.7k | if constexpr (!(IsDataTypeDecimalOrNumber<FromDataType> || | 131 | 36.7k | IsDatelikeV1Types<FromDataType> || IsDatelikeV2Types<FromDataType> || | 132 | 36.7k | std::is_same_v<FromDataType, DataTypeTimeV2>)) { | 133 | 36.7k | return false; | 134 | 36.7k | } | 135 | 36.7k | if constexpr (IsDataTypeDecimal<FromDataType> || IsDataTypeDecimal<ToDataType>) { | 136 | 36.7k | using FromFieldType = typename FromDataType::FieldType; | 137 | 36.7k | using ToFieldType = typename ToDataType::FieldType; | 138 | 36.7k | UInt32 from_precision = NumberTraits::max_ascii_len<FromFieldType>(); | 139 | 36.7k | UInt32 from_scale = 0; | 140 | | | 141 | 36.7k | if constexpr (IsDataTypeDecimal<FromDataType>) { | 142 | 36.7k | const auto* from_decimal_type = | 143 | 36.7k | check_and_get_data_type<FromDataType>(from_type.get()); | 144 | 36.7k | from_precision = | 145 | 36.7k | NumberTraits::max_ascii_len<typename FromFieldType::NativeType>(); | 146 | 36.7k | from_scale = from_decimal_type->get_scale(); | 147 | 36.7k | } | 148 | | | 149 | 36.7k | UInt32 to_max_digits = 0; | 150 | 36.7k | UInt32 to_precision = 0; | 151 | 36.7k | UInt32 to_scale = 0; | 152 | | | 153 | 36.7k | if constexpr (IsDataTypeDecimal<ToDataType>) { | 154 | 36.7k | to_max_digits = NumberTraits::max_ascii_len<typename ToFieldType::NativeType>(); | 155 | | | 156 | 36.7k | const auto* to_decimal_type = | 157 | 36.7k | check_and_get_data_type<ToDataType>(to_type.get()); | 158 | 36.7k | to_precision = to_decimal_type->get_precision(); | 159 | 36.7k | ToDataType::check_type_precision(to_precision); | 160 | | | 161 | 36.7k | to_scale = to_decimal_type->get_scale(); | 162 | 36.7k | ToDataType::check_type_scale(to_scale); | 163 | 36.7k | } | 164 | 36.7k | if constexpr (IsIntegralV<ToFieldType> || std::is_floating_point_v<ToFieldType>) { | 165 | 36.7k | to_max_digits = NumberTraits::max_ascii_len<ToFieldType>(); | 166 | 36.7k | to_precision = to_max_digits; | 167 | 36.7k | } | 168 | | | 169 | 36.7k | bool narrow_integral = context->check_overflow_for_decimal() && | 170 | 36.7k | (to_precision - to_scale) <= (from_precision - from_scale); | 171 | | | 172 | 36.7k | bool multiply_may_overflow = context->check_overflow_for_decimal(); | 173 | 36.7k | if (to_scale > from_scale) { | 174 | 36.7k | multiply_may_overflow &= | 175 | 36.7k | (from_precision + to_scale - from_scale) >= to_max_digits; | 176 | 36.7k | } | 177 | 36.7k | return narrow_integral || multiply_may_overflow; | 178 | 36.7k | } | 179 | 36.7k | return false; | 180 | 36.7k | }); | 181 | 36.7k | }; |
|
182 | | |
183 | 310k | return call_on_index_and_data_type<void>(to_type->get_primitive_type(), make_default_wrapper); |
184 | 377k | } |
185 | | |
186 | | WrapperType prepare_remove_nullable(FunctionContext* context, const DataTypePtr& from_type, |
187 | 405k | const DataTypePtr& to_type) { |
188 | | /// Determine whether pre-processing and/or post-processing must take place during conversion. |
189 | 405k | bool result_is_nullable = to_type->is_nullable(); |
190 | | |
191 | 405k | if (result_is_nullable) { |
192 | 377k | return [from_type, to_type](FunctionContext* context, Block& block, |
193 | 377k | const ColumnNumbers& arguments, uint32_t result, |
194 | 377k | size_t input_rows_count, |
195 | 377k | const NullMap::value_type* null_map = nullptr) { |
196 | 377k | auto from_type_not_nullable = remove_nullable(from_type); |
197 | 377k | auto to_type_not_nullable = remove_nullable(to_type); |
198 | | |
199 | 377k | bool replace_null_data_to_default = need_replace_null_data_to_default( |
200 | 377k | context, from_type_not_nullable, to_type_not_nullable); |
201 | | |
202 | 377k | auto nested_result_index = block.columns(); |
203 | 377k | block.insert(block.get_by_position(result).unnest_nullable()); |
204 | 377k | auto nested_source_index = block.columns(); |
205 | 377k | block.insert(block.get_by_position(arguments[0]) |
206 | 377k | .unnest_nullable(replace_null_data_to_default)); |
207 | | |
208 | 377k | const auto& arg_col = block.get_by_position(arguments[0]); |
209 | 377k | const NullMap::value_type* arg_null_map = nullptr; |
210 | 377k | if (const auto* nullable = check_and_get_column<ColumnNullable>(*arg_col.column)) { |
211 | 324k | arg_null_map = nullable->get_null_map_data().data(); |
212 | 324k | } |
213 | 377k | RETURN_IF_ERROR(prepare_impl(context, from_type_not_nullable, to_type_not_nullable)( |
214 | 377k | context, block, {nested_source_index}, nested_result_index, input_rows_count, |
215 | 377k | arg_null_map)); |
216 | | |
217 | 351k | block.get_by_position(result).column = |
218 | 351k | wrap_in_nullable(block.get_by_position(nested_result_index).column, block, |
219 | 351k | arguments, input_rows_count); |
220 | | |
221 | 351k | block.erase(nested_source_index); |
222 | 351k | block.erase(nested_result_index); |
223 | 351k | return Status::OK(); |
224 | 377k | }; |
225 | 377k | } else { |
226 | 28.2k | return prepare_impl(context, from_type, to_type); |
227 | 28.2k | } |
228 | 405k | } |
229 | | |
230 | | /// 'from_type' and 'to_type' are nested types in case of Nullable. |
231 | | /// 'requested_result_is_nullable' is true if CAST to Nullable type is requested. |
232 | | WrapperType prepare_impl(FunctionContext* context, const DataTypePtr& origin_from_type, |
233 | 415k | const DataTypePtr& origin_to_type) { |
234 | 415k | auto to_type = get_serialized_type(origin_to_type); |
235 | 415k | auto from_type = get_serialized_type(origin_from_type); |
236 | 415k | if (from_type->equals(*to_type)) { |
237 | 71.0k | return create_identity_wrapper(from_type); |
238 | 71.0k | } |
239 | | |
240 | | // variant needs to be judged first |
241 | 344k | if (to_type->get_primitive_type() == PrimitiveType::TYPE_VARIANT) { |
242 | 11.7k | return create_cast_to_variant_wrapper(from_type, |
243 | 11.7k | static_cast<const DataTypeVariant&>(*to_type)); |
244 | 11.7k | } |
245 | 333k | if (from_type->get_primitive_type() == PrimitiveType::TYPE_VARIANT) { |
246 | 12.2k | return create_cast_from_variant_wrapper(static_cast<const DataTypeVariant&>(*from_type), |
247 | 12.2k | to_type); |
248 | 12.2k | } |
249 | | |
250 | 320k | if (from_type->get_primitive_type() == PrimitiveType::TYPE_JSONB) { |
251 | 9.31k | return create_cast_from_jsonb_wrapper(static_cast<const DataTypeJsonb&>(*from_type), |
252 | 9.31k | to_type, |
253 | 18.4E | context ? context->jsonb_string_as_string() : false); |
254 | 9.31k | } |
255 | | |
256 | 311k | switch (to_type->get_primitive_type()) { |
257 | 1.03k | case PrimitiveType::TYPE_BOOLEAN: |
258 | 1.03k | return create_boolean_wrapper(context, from_type); |
259 | 4.57k | case PrimitiveType::TYPE_TINYINT: |
260 | 4.57k | return create_int_wrapper<DataTypeInt8>(context, from_type); |
261 | 5.64k | case PrimitiveType::TYPE_SMALLINT: |
262 | 5.64k | return create_int_wrapper<DataTypeInt16>(context, from_type); |
263 | 28.1k | case PrimitiveType::TYPE_INT: |
264 | 28.1k | return create_int_wrapper<DataTypeInt32>(context, from_type); |
265 | 43.0k | case PrimitiveType::TYPE_BIGINT: |
266 | 43.0k | return create_int_wrapper<DataTypeInt64>(context, from_type); |
267 | 4.84k | case PrimitiveType::TYPE_LARGEINT: |
268 | 4.84k | return create_int_wrapper<DataTypeInt128>(context, from_type); |
269 | 10.9k | case PrimitiveType::TYPE_FLOAT: |
270 | 10.9k | return create_float_wrapper<DataTypeFloat32>(context, from_type); |
271 | 30.2k | case PrimitiveType::TYPE_DOUBLE: |
272 | 30.2k | return create_float_wrapper<DataTypeFloat64>(context, from_type); |
273 | 30 | case PrimitiveType::TYPE_DATE: |
274 | 30 | return create_datelike_wrapper<DataTypeDate>(context, from_type); |
275 | 25 | case PrimitiveType::TYPE_DATETIME: |
276 | 25 | return create_datelike_wrapper<DataTypeDateTime>(context, from_type); |
277 | 7.49k | case PrimitiveType::TYPE_DATEV2: |
278 | 7.49k | return create_datelike_wrapper<DataTypeDateV2>(context, from_type); |
279 | 5.25k | case PrimitiveType::TYPE_DATETIMEV2: |
280 | 5.25k | return create_datelike_wrapper<DataTypeDateTimeV2>(context, from_type); |
281 | 462 | case PrimitiveType::TYPE_TIMESTAMPTZ: |
282 | 462 | return create_timestamptz_wrapper(context, from_type); |
283 | 460 | case PrimitiveType::TYPE_TIMEV2: |
284 | 460 | return create_datelike_wrapper<DataTypeTimeV2>(context, from_type); |
285 | 481 | case PrimitiveType::TYPE_IPV4: |
286 | 481 | return create_ip_wrapper<DataTypeIPv4>(context, from_type); |
287 | 290 | case PrimitiveType::TYPE_IPV6: |
288 | 290 | return create_ip_wrapper<DataTypeIPv6>(context, from_type); |
289 | 292 | case PrimitiveType::TYPE_DECIMALV2: |
290 | 292 | return create_decimal_wrapper<DataTypeDecimalV2>(context, from_type); |
291 | 7.96k | case PrimitiveType::TYPE_DECIMAL32: |
292 | 7.96k | return create_decimal_wrapper<DataTypeDecimal32>(context, from_type); |
293 | 19.8k | case PrimitiveType::TYPE_DECIMAL64: |
294 | 19.8k | return create_decimal_wrapper<DataTypeDecimal64>(context, from_type); |
295 | 17.9k | case PrimitiveType::TYPE_DECIMAL128I: |
296 | 17.9k | return create_decimal_wrapper<DataTypeDecimal128>(context, from_type); |
297 | 10.9k | case PrimitiveType::TYPE_DECIMAL256: |
298 | 10.9k | return create_decimal_wrapper<DataTypeDecimal256>(context, from_type); |
299 | 32 | case PrimitiveType::TYPE_CHAR: |
300 | 7.20k | case PrimitiveType::TYPE_VARCHAR: |
301 | 34.1k | case PrimitiveType::TYPE_STRING: |
302 | 34.1k | return create_string_wrapper(from_type); |
303 | 14.5k | case PrimitiveType::TYPE_ARRAY: |
304 | 14.5k | return create_array_wrapper(context, from_type, |
305 | 14.5k | static_cast<const DataTypeArray&>(*to_type)); |
306 | 2.23k | case PrimitiveType::TYPE_STRUCT: |
307 | 2.23k | return create_struct_wrapper(context, from_type, |
308 | 2.23k | static_cast<const DataTypeStruct&>(*to_type)); |
309 | 1.75k | case PrimitiveType::TYPE_MAP: |
310 | 1.75k | return create_map_wrapper(context, from_type, static_cast<const DataTypeMap&>(*to_type)); |
311 | 3 | case PrimitiveType::TYPE_HLL: |
312 | 3 | return create_hll_wrapper(context, from_type, static_cast<const DataTypeHLL&>(*to_type)); |
313 | 3 | case PrimitiveType::TYPE_BITMAP: |
314 | 3 | return create_bitmap_wrapper(context, from_type, |
315 | 3 | static_cast<const DataTypeBitMap&>(*to_type)); |
316 | 1 | case PrimitiveType::TYPE_QUANTILE_STATE: |
317 | 1 | return create_quantile_state_wrapper(context, from_type, |
318 | 1 | static_cast<const DataTypeQuantileState&>(*to_type)); |
319 | 59.1k | case PrimitiveType::TYPE_JSONB: |
320 | 59.1k | return create_cast_to_jsonb_wrapper(from_type, static_cast<const DataTypeJsonb&>(*to_type), |
321 | 59.1k | context ? context->string_as_jsonb_string() : false); |
322 | 2 | case PrimitiveType::TYPE_VARBINARY: |
323 | 2 | return create_varbinary_wrapper(from_type); |
324 | 0 | default: |
325 | 0 | break; |
326 | 311k | } |
327 | | |
328 | 0 | return create_unsupport_wrapper(from_type->get_name(), to_type->get_name()); |
329 | 311k | } |
330 | | |
331 | | } // namespace CastWrapper |
332 | | |
333 | | class PreparedFunctionCast : public PreparedFunctionImpl { |
334 | | public: |
335 | | explicit PreparedFunctionCast(CastWrapper::WrapperType&& wrapper_function_, const char* name_) |
336 | 393k | : wrapper_function(std::move(wrapper_function_)), name(name_) {} |
337 | | |
338 | 0 | String get_name() const override { return name; } |
339 | | |
340 | | protected: |
341 | | Status execute_impl(FunctionContext* context, Block& block, const ColumnNumbers& arguments, |
342 | 393k | uint32_t result, size_t input_rows_count) const override { |
343 | 393k | return wrapper_function(context, block, arguments, result, input_rows_count, nullptr); |
344 | 393k | } |
345 | | |
346 | 393k | bool use_default_implementation_for_nulls() const override { return false; } |
347 | 393k | ColumnNumbers get_arguments_that_are_always_constant() const override { return {1}; } |
348 | | |
349 | | private: |
350 | | CastWrapper::WrapperType wrapper_function; |
351 | | const char* name; |
352 | | }; |
353 | | |
354 | | class FunctionCast final : public IFunctionBase { |
355 | | public: |
356 | | FunctionCast(const char* name_, DataTypes argument_types_, DataTypePtr return_type_) |
357 | 303k | : name(name_), |
358 | 303k | argument_types(std::move(argument_types_)), |
359 | 303k | return_type(std::move(return_type_)) {} |
360 | | |
361 | 393k | const DataTypes& get_argument_types() const override { return argument_types; } |
362 | 393k | const DataTypePtr& get_return_type() const override { return return_type; } |
363 | | |
364 | | PreparedFunctionPtr prepare(FunctionContext* context, const Block& /*sample_block*/, |
365 | | const ColumnNumbers& /*arguments*/, |
366 | 393k | uint32_t /*result*/) const override { |
367 | 393k | return std::make_shared<PreparedFunctionCast>( |
368 | 393k | CastWrapper::prepare_unpack_dictionaries(context, get_argument_types()[0], |
369 | 393k | get_return_type()), |
370 | 393k | name); |
371 | 393k | } |
372 | | |
373 | 0 | String get_name() const override { return name; } |
374 | | |
375 | 0 | bool is_use_default_implementation_for_constants() const override { return true; } |
376 | | |
377 | | private: |
378 | | const char* name = nullptr; |
379 | | |
380 | | DataTypes argument_types; |
381 | | DataTypePtr return_type; |
382 | | }; |
383 | | |
384 | | class FunctionBuilderCast : public FunctionBuilderImpl { |
385 | | public: |
386 | | static constexpr auto name = "CAST"; |
387 | 303k | static FunctionBuilderPtr create() { return std::make_shared<FunctionBuilderCast>(); } |
388 | | |
389 | 303k | FunctionBuilderCast() = default; |
390 | | |
391 | 1 | String get_name() const override { return name; } |
392 | | |
393 | 0 | size_t get_number_of_arguments() const override { return 2; } |
394 | | |
395 | 0 | ColumnNumbers get_arguments_that_are_always_constant() const override { return {1}; } |
396 | | |
397 | | protected: |
398 | | FunctionBasePtr build_impl(const ColumnsWithTypeAndName& arguments, |
399 | 303k | const DataTypePtr& return_type) const override { |
400 | 303k | DataTypes data_types(arguments.size()); |
401 | | |
402 | 911k | for (size_t i = 0; i < arguments.size(); ++i) { |
403 | 607k | data_types[i] = arguments[i].type; |
404 | 607k | } |
405 | | |
406 | 303k | return std::make_shared<FunctionCast>(name, data_types, return_type); |
407 | 303k | } |
408 | | |
409 | 303k | bool skip_return_type_check() const override { return true; } |
410 | 0 | DataTypePtr get_return_type_impl(const ColumnsWithTypeAndName& arguments) const override { |
411 | 0 | return nullptr; |
412 | 0 | } |
413 | | |
414 | 0 | bool use_default_implementation_for_nulls() const override { return false; } |
415 | | }; |
416 | | |
417 | 7 | void register_function_cast(SimpleFunctionFactory& factory) { |
418 | 7 | factory.register_function<FunctionBuilderCast>(); |
419 | 7 | } |
420 | | } // namespace doris |