be/src/storage/delete/delete_handler.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 "storage/delete/delete_handler.h" |
19 | | |
20 | | #include <gen_cpp/PaloInternalService_types.h> |
21 | | #include <gen_cpp/olap_file.pb.h> |
22 | | #include <thrift/protocol/TDebugProtocol.h> |
23 | | |
24 | | #include <string> |
25 | | #include <vector> |
26 | | |
27 | | #include "common/config.h" |
28 | | #include "common/logging.h" |
29 | | #include "common/status.h" |
30 | | #include "core/data_type_serde/data_type_serde.h" |
31 | | #include "storage/olap_common.h" |
32 | | #include "storage/predicate/block_column_predicate.h" |
33 | | #include "storage/predicate/null_predicate.h" |
34 | | #include "storage/predicate/predicate_creator.h" |
35 | | #include "storage/tablet/tablet_schema.h" |
36 | | #include "storage/utils.h" |
37 | | #include "util/debug_points.h" |
38 | | |
39 | | using apache::thrift::ThriftDebugString; |
40 | | using std::vector; |
41 | | using std::string; |
42 | | |
43 | | using ::google::protobuf::RepeatedPtrField; |
44 | | |
45 | | namespace doris { |
46 | | |
47 | | // Parses a string value into a Field using the serde's from_fe_string, then builds |
48 | | // a HybridSetBase for IN/NOT_IN predicates. |
49 | | // The type-dispatch via switch/case is still needed because build_set<PType>() and |
50 | | // HybridSet::insert(const void*) require compile-time PrimitiveType, and Field::get<PType>() |
51 | | // must be invoked with the correct type to extract the underlying CppType value. |
52 | | template <PrimitiveType PType> |
53 | 5 | void insert_field_to_set(const Field& field, HybridSetBase* set) { |
54 | 5 | if constexpr (is_string_type(PType)) { |
55 | | // StringSet::insert expects const StringRef*, so we must construct a StringRef |
56 | | // from the std::string returned by Field::get<>. |
57 | 0 | const auto& tmp = field.get<PType>(); |
58 | 0 | StringRef ref(tmp.data(), tmp.size()); |
59 | 0 | set->insert(reinterpret_cast<const void*>(&ref)); |
60 | 5 | } else { |
61 | 5 | auto tmp = field.get<PType>(); |
62 | 5 | set->insert(reinterpret_cast<const void*>(&tmp)); |
63 | 5 | } |
64 | 5 | } Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE3EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE4EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE5EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE6EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE7EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE8EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE9EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE11EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE12EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE25EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE26EEEvRKNS_5FieldEPNS_13HybridSetBaseE _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE42EEEvRKNS_5FieldEPNS_13HybridSetBaseE Line | Count | Source | 53 | 5 | void insert_field_to_set(const Field& field, HybridSetBase* set) { | 54 | | if constexpr (is_string_type(PType)) { | 55 | | // StringSet::insert expects const StringRef*, so we must construct a StringRef | 56 | | // from the std::string returned by Field::get<>. | 57 | | const auto& tmp = field.get<PType>(); | 58 | | StringRef ref(tmp.data(), tmp.size()); | 59 | | set->insert(reinterpret_cast<const void*>(&ref)); | 60 | 5 | } else { | 61 | 5 | auto tmp = field.get<PType>(); | 62 | 5 | set->insert(reinterpret_cast<const void*>(&tmp)); | 63 | 5 | } | 64 | 5 | } |
Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE2EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE36EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE37EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE20EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE28EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE29EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE30EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE35EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE15EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE10EEEvRKNS_5FieldEPNS_13HybridSetBaseE Unexecuted instantiation: _ZN5doris19insert_field_to_setILNS_13PrimitiveTypeE23EEEvRKNS_5FieldEPNS_13HybridSetBaseE |
65 | | |
66 | | #define FROM_FE_STRING_CASE(PType) \ |
67 | 2 | case PType: { \ |
68 | 2 | set = build_set<PType>(); \ |
69 | 5 | for (const auto& s : str) { \ |
70 | 5 | Field field; \ |
71 | 5 | RETURN_IF_ERROR(serde->from_fe_string(s, field)); \ |
72 | 5 | insert_field_to_set<PType>(field, set.get()); \ |
73 | 5 | } \ |
74 | 2 | return Status::OK(); \ |
75 | 2 | } |
76 | | Status convert(const DataTypePtr& data_type, const std::list<std::string>& str, |
77 | 2 | std::shared_ptr<HybridSetBase>& set) { |
78 | 2 | auto serde = data_type->get_serde(); |
79 | 2 | switch (data_type->get_primitive_type()) { |
80 | 0 | FROM_FE_STRING_CASE(TYPE_TINYINT); |
81 | 0 | FROM_FE_STRING_CASE(TYPE_SMALLINT); |
82 | 0 | FROM_FE_STRING_CASE(TYPE_INT); |
83 | 0 | FROM_FE_STRING_CASE(TYPE_BIGINT); |
84 | 0 | FROM_FE_STRING_CASE(TYPE_LARGEINT); |
85 | 0 | FROM_FE_STRING_CASE(TYPE_FLOAT); |
86 | 0 | FROM_FE_STRING_CASE(TYPE_DOUBLE); |
87 | 0 | FROM_FE_STRING_CASE(TYPE_DATE); |
88 | 0 | FROM_FE_STRING_CASE(TYPE_DATETIME); |
89 | 0 | FROM_FE_STRING_CASE(TYPE_DATEV2); |
90 | 0 | FROM_FE_STRING_CASE(TYPE_DATETIMEV2); |
91 | 2 | FROM_FE_STRING_CASE(TYPE_TIMESTAMPTZ); |
92 | 0 | FROM_FE_STRING_CASE(TYPE_BOOLEAN); |
93 | 0 | FROM_FE_STRING_CASE(TYPE_IPV4); |
94 | 0 | FROM_FE_STRING_CASE(TYPE_IPV6); |
95 | 0 | FROM_FE_STRING_CASE(TYPE_DECIMALV2); |
96 | 0 | FROM_FE_STRING_CASE(TYPE_DECIMAL32); |
97 | 0 | FROM_FE_STRING_CASE(TYPE_DECIMAL64); |
98 | 0 | FROM_FE_STRING_CASE(TYPE_DECIMAL128I); |
99 | 0 | FROM_FE_STRING_CASE(TYPE_DECIMAL256); |
100 | 0 | FROM_FE_STRING_CASE(TYPE_CHAR); |
101 | 0 | FROM_FE_STRING_CASE(TYPE_VARCHAR); |
102 | 0 | FROM_FE_STRING_CASE(TYPE_STRING); |
103 | 0 | default: |
104 | 0 | return Status::Error<ErrorCode::INVALID_ARGUMENT>( |
105 | 0 | "unsupported data type in delete handler. type={}", |
106 | 0 | type_to_string(data_type->get_primitive_type())); |
107 | 2 | } |
108 | 0 | return Status::OK(); |
109 | 2 | } |
110 | | #undef FROM_FE_STRING_CASE |
111 | | |
112 | | // Parses a single condition value string into a Field and creates a comparison predicate. |
113 | | // Uses serde->from_fe_string to do the parsing, which handles all type-specific |
114 | | // conversions (including decimal scale, etc.). |
115 | | Status parse_to_predicate(const uint32_t index, const std::string col_name, const DataTypePtr& type, |
116 | | DeleteHandler::ConditionParseResult& res, Arena& arena, |
117 | 181 | std::shared_ptr<ColumnPredicate>& predicate) { |
118 | 181 | DCHECK_EQ(res.value_str.size(), 1); |
119 | 181 | if (res.condition_op == PredicateType::IS_NULL || |
120 | 181 | res.condition_op == PredicateType::IS_NOT_NULL) { |
121 | 37 | predicate = NullPredicate::create_shared(index, col_name, |
122 | 37 | res.condition_op == PredicateType::IS_NOT_NULL, |
123 | 37 | type->get_primitive_type()); |
124 | 37 | return Status::OK(); |
125 | 37 | } |
126 | | |
127 | 144 | Field v; |
128 | 144 | if (is_string_type(type->get_primitive_type())) { |
129 | 38 | v = Field::create_field<TYPE_STRING>(res.value_str.front()); |
130 | 106 | } else { |
131 | 106 | auto serde = type->get_serde(); |
132 | 106 | RETURN_IF_ERROR(serde->from_fe_string(res.value_str.front(), v)); |
133 | 106 | } |
134 | | |
135 | 137 | switch (res.condition_op) { |
136 | 48 | case PredicateType::EQ: |
137 | 48 | predicate = create_comparison_predicate<PredicateType::EQ>(index, col_name, type, v, true); |
138 | 48 | return Status::OK(); |
139 | 7 | case PredicateType::NE: |
140 | 7 | predicate = create_comparison_predicate<PredicateType::NE>(index, col_name, type, v, true); |
141 | 7 | return Status::OK(); |
142 | 2 | case PredicateType::GT: |
143 | 2 | predicate = create_comparison_predicate<PredicateType::GT>(index, col_name, type, v, true); |
144 | 2 | return Status::OK(); |
145 | 2 | case PredicateType::GE: |
146 | 2 | predicate = create_comparison_predicate<PredicateType::GE>(index, col_name, type, v, true); |
147 | 2 | return Status::OK(); |
148 | 76 | case PredicateType::LT: |
149 | 76 | predicate = create_comparison_predicate<PredicateType::LT>(index, col_name, type, v, true); |
150 | 76 | return Status::OK(); |
151 | 2 | case PredicateType::LE: |
152 | 2 | predicate = create_comparison_predicate<PredicateType::LE>(index, col_name, type, v, true); |
153 | 2 | return Status::OK(); |
154 | 0 | default: |
155 | 0 | return Status::Error<ErrorCode::INVALID_ARGUMENT>("invalid condition operator. operator={}", |
156 | 0 | type_to_op_str(res.condition_op)); |
157 | 137 | } |
158 | 137 | } |
159 | | |
160 | | Status parse_to_in_predicate(const uint32_t index, const std::string& col_name, |
161 | | const DataTypePtr& type, DeleteHandler::ConditionParseResult& res, |
162 | 2 | Arena& arena, std::shared_ptr<ColumnPredicate>& predicate) { |
163 | 2 | DCHECK_GT(res.value_str.size(), 1); |
164 | 2 | switch (res.condition_op) { |
165 | 1 | case PredicateType::IN_LIST: { |
166 | 1 | std::shared_ptr<HybridSetBase> set; |
167 | 1 | RETURN_IF_ERROR(convert(type, res.value_str, set)); |
168 | 1 | predicate = |
169 | 1 | create_in_list_predicate<PredicateType::IN_LIST>(index, col_name, type, set, true); |
170 | 1 | break; |
171 | 1 | } |
172 | 1 | case PredicateType::NOT_IN_LIST: { |
173 | 1 | std::shared_ptr<HybridSetBase> set; |
174 | 1 | RETURN_IF_ERROR(convert(type, res.value_str, set)); |
175 | 1 | predicate = create_in_list_predicate<PredicateType::NOT_IN_LIST>(index, col_name, type, set, |
176 | 1 | true); |
177 | 1 | break; |
178 | 1 | } |
179 | 0 | default: |
180 | 0 | return Status::Error<ErrorCode::INVALID_ARGUMENT>("invalid condition operator. operator={}", |
181 | 0 | type_to_op_str(res.condition_op)); |
182 | 2 | } |
183 | 2 | return Status::OK(); |
184 | 2 | } |
185 | | |
186 | | // construct sub condition from TCondition |
187 | 101 | std::string construct_sub_predicate(const TCondition& condition) { |
188 | 101 | string op = condition.condition_op; |
189 | 101 | if (op == "<") { |
190 | 50 | op += "<"; |
191 | 51 | } else if (op == ">") { |
192 | 3 | op += ">"; |
193 | 3 | } |
194 | 101 | string condition_str; |
195 | 101 | if ("IS" == op) { |
196 | | // ATTN: tricky! Surround IS with spaces to make it "special" |
197 | 2 | condition_str = condition.column_name + " IS " + condition.condition_values[0]; |
198 | 99 | } else { // multi-elements IN expr has been processed with InPredicatePB |
199 | 99 | if (op == "*=") { |
200 | 2 | op = "="; |
201 | 97 | } else if (op == "!*=") { |
202 | 2 | op = "!="; |
203 | 2 | } |
204 | 99 | condition_str = condition.column_name + op + "'" + condition.condition_values[0] + "'"; |
205 | 99 | } |
206 | 101 | return condition_str; |
207 | 101 | } |
208 | | |
209 | | // make operators from FE adaptive to BE |
210 | 101 | std::string trans_op(const std::string& opt) { |
211 | 101 | std::string op = string(opt); |
212 | 101 | if (op == "<") { |
213 | 50 | op += "<"; |
214 | 51 | } else if (op == ">") { |
215 | 3 | op += ">"; |
216 | 3 | } |
217 | 101 | if ("IS" != op) { |
218 | 99 | if (op == "*=") { |
219 | 2 | op = "="; |
220 | 97 | } else if (op == "!*=") { |
221 | 2 | op = "!="; |
222 | 2 | } |
223 | 99 | } |
224 | 101 | return op; |
225 | 101 | } |
226 | | |
227 | | Status DeleteHandler::generate_delete_predicate(const TabletSchema& schema, |
228 | | const std::vector<TCondition>& conditions, |
229 | 106 | DeletePredicatePB* del_pred) { |
230 | 106 | DBUG_EXECUTE_IF("DeleteHandler::generate_delete_predicate.inject_failure", { |
231 | 106 | return Status::Error<false>(dp->param<int>("error_code"), |
232 | 106 | dp->param<std::string>("error_msg")); |
233 | 106 | }) |
234 | 106 | if (conditions.empty()) { |
235 | 1 | return Status::Error<ErrorCode::INVALID_ARGUMENT>( |
236 | 1 | "invalid parameters for store_cond. condition_size={}", conditions.size()); |
237 | 1 | } |
238 | | |
239 | | // Check whether the delete condition meets the requirements |
240 | 135 | for (const TCondition& condition : conditions) { |
241 | 135 | RETURN_IF_ERROR(check_condition_valid(schema, condition)); |
242 | 135 | } |
243 | | |
244 | | // Store delete condition |
245 | 105 | for (const TCondition& condition : conditions) { |
246 | 105 | if (condition.condition_values.size() > 1) { |
247 | 4 | InPredicatePB* in_pred = del_pred->add_in_predicates(); |
248 | 4 | if (condition.__isset.column_unique_id) { |
249 | 0 | in_pred->set_column_unique_id(condition.column_unique_id); |
250 | 0 | } |
251 | 4 | in_pred->set_column_name(condition.column_name); |
252 | 4 | bool is_not_in = condition.condition_op == "!*="; |
253 | 4 | in_pred->set_is_not_in(is_not_in); |
254 | 10 | for (const auto& condition_value : condition.condition_values) { |
255 | 10 | in_pred->add_values(condition_value); |
256 | 10 | } |
257 | | |
258 | 4 | LOG(INFO) << "store one sub-delete condition. condition name=" << in_pred->column_name() |
259 | 4 | << "condition size=" << in_pred->values().size(); |
260 | 101 | } else { |
261 | | // write sub predicate v1 for compactbility |
262 | 101 | std::string condition_str = construct_sub_predicate(condition); |
263 | 101 | VLOG_NOTICE << __PRETTY_FUNCTION__ << " condition_str: " << condition_str; |
264 | 101 | del_pred->add_sub_predicates(condition_str); |
265 | 101 | DeleteSubPredicatePB* sub_predicate = del_pred->add_sub_predicates_v2(); |
266 | 101 | if (condition.__isset.column_unique_id) { |
267 | | // only light schema change capable table set this field |
268 | 0 | sub_predicate->set_column_unique_id(condition.column_unique_id); |
269 | 101 | } else { |
270 | 101 | try { |
271 | 101 | [[maybe_unused]] auto parsed_cond = parse_condition(condition_str); |
272 | 101 | } catch (const Exception& e) { |
273 | 0 | return Status::Error<ErrorCode::INVALID_ARGUMENT>( |
274 | 0 | "failed to parse condition_str, condition={}, error={}", |
275 | 0 | ThriftDebugString(condition), e.to_string()); |
276 | 0 | } |
277 | 101 | } |
278 | | |
279 | 101 | sub_predicate->set_column_name(condition.column_name); |
280 | 101 | sub_predicate->set_op(trans_op(condition.condition_op)); |
281 | 101 | sub_predicate->set_cond_value(condition.condition_values[0]); |
282 | 101 | LOG(INFO) << "store one sub-delete condition. condition=" |
283 | 101 | << fmt::format(" {} {} {}", condition.column_name, condition.condition_op, |
284 | 101 | condition.condition_values[0]); |
285 | 101 | } |
286 | 105 | } |
287 | 75 | del_pred->set_version(-1); |
288 | | |
289 | 75 | return Status::OK(); |
290 | 75 | } |
291 | | |
292 | | Status DeleteHandler::convert_to_sub_pred_v2(DeletePredicatePB* delete_pred, |
293 | 0 | TabletSchemaSPtr schema) { |
294 | 0 | if (!delete_pred->sub_predicates().empty() && delete_pred->sub_predicates_v2().empty()) { |
295 | 0 | for (const auto& condition_str : delete_pred->sub_predicates()) { |
296 | 0 | auto* sub_pred = delete_pred->add_sub_predicates_v2(); |
297 | 0 | auto condition = parse_condition(condition_str); |
298 | 0 | const auto& column = *DORIS_TRY(schema->column(condition.column_name)); |
299 | 0 | sub_pred->set_column_unique_id(column.unique_id()); |
300 | 0 | sub_pred->set_column_name(condition.column_name); |
301 | 0 | sub_pred->set_op(type_to_op_str(condition.condition_op)); |
302 | 0 | sub_pred->set_cond_value(condition.value_str.front()); |
303 | 0 | } |
304 | 0 | } |
305 | | |
306 | 0 | auto* in_pred_list = delete_pred->mutable_in_predicates(); |
307 | 0 | for (auto& in_pred : *in_pred_list) { |
308 | 0 | const auto& column = *DORIS_TRY(schema->column(in_pred.column_name())); |
309 | 0 | in_pred.set_column_unique_id(column.unique_id()); |
310 | 0 | } |
311 | 0 | return Status::OK(); |
312 | 0 | } |
313 | | |
314 | | bool DeleteHandler::is_condition_value_valid(const TabletColumn& column, |
315 | | const std::string& condition_op, |
316 | 140 | const string& value_str) { |
317 | 140 | if ("IS" == condition_op && ("NULL" == value_str || "NOT NULL" == value_str)) { |
318 | 2 | return true; |
319 | 2 | } |
320 | | |
321 | 138 | FieldType field_type = column.type(); |
322 | 138 | switch (field_type) { |
323 | 11 | case FieldType::OLAP_FIELD_TYPE_TINYINT: |
324 | 11 | return valid_signed_number<int8_t>(value_str); |
325 | 13 | case FieldType::OLAP_FIELD_TYPE_SMALLINT: |
326 | 13 | return valid_signed_number<int16_t>(value_str); |
327 | 54 | case FieldType::OLAP_FIELD_TYPE_INT: |
328 | 54 | return valid_signed_number<int32_t>(value_str); |
329 | 5 | case FieldType::OLAP_FIELD_TYPE_BIGINT: |
330 | 5 | return valid_signed_number<int64_t>(value_str); |
331 | 4 | case FieldType::OLAP_FIELD_TYPE_LARGEINT: |
332 | 4 | return valid_signed_number<int128_t>(value_str); |
333 | 0 | case FieldType::OLAP_FIELD_TYPE_UNSIGNED_TINYINT: |
334 | 0 | return valid_unsigned_number<uint8_t>(value_str); |
335 | 0 | case FieldType::OLAP_FIELD_TYPE_UNSIGNED_SMALLINT: |
336 | 0 | return valid_unsigned_number<uint16_t>(value_str); |
337 | 0 | case FieldType::OLAP_FIELD_TYPE_UNSIGNED_INT: |
338 | 0 | return valid_unsigned_number<uint32_t>(value_str); |
339 | 0 | case FieldType::OLAP_FIELD_TYPE_UNSIGNED_BIGINT: |
340 | 0 | return valid_unsigned_number<uint64_t>(value_str); |
341 | 7 | case FieldType::OLAP_FIELD_TYPE_DECIMAL: |
342 | 7 | return valid_decimal(value_str, column.precision(), column.frac()); |
343 | 0 | case FieldType::OLAP_FIELD_TYPE_DECIMAL32: |
344 | 0 | return valid_decimal(value_str, column.precision(), column.frac()); |
345 | 0 | case FieldType::OLAP_FIELD_TYPE_DECIMAL64: |
346 | 0 | return valid_decimal(value_str, column.precision(), column.frac()); |
347 | 0 | case FieldType::OLAP_FIELD_TYPE_DECIMAL128I: |
348 | 0 | return valid_decimal(value_str, column.precision(), column.frac()); |
349 | 0 | case FieldType::OLAP_FIELD_TYPE_DECIMAL256: |
350 | 0 | return valid_decimal(value_str, column.precision(), column.frac()); |
351 | 3 | case FieldType::OLAP_FIELD_TYPE_CHAR: |
352 | 7 | case FieldType::OLAP_FIELD_TYPE_VARCHAR: |
353 | 7 | return value_str.size() <= column.length(); |
354 | 0 | case FieldType::OLAP_FIELD_TYPE_STRING: |
355 | 0 | return value_str.size() <= config::string_type_length_soft_limit_bytes; |
356 | 5 | case FieldType::OLAP_FIELD_TYPE_DATE: |
357 | 11 | case FieldType::OLAP_FIELD_TYPE_DATETIME: |
358 | 11 | case FieldType::OLAP_FIELD_TYPE_DATEV2: |
359 | 11 | case FieldType::OLAP_FIELD_TYPE_DATETIMEV2: |
360 | 24 | case FieldType::OLAP_FIELD_TYPE_TIMESTAMPTZ: |
361 | 24 | return valid_datetime(value_str, column.frac()); |
362 | 0 | case FieldType::OLAP_FIELD_TYPE_BOOL: |
363 | 0 | return valid_bool(value_str); |
364 | 5 | case FieldType::OLAP_FIELD_TYPE_IPV4: |
365 | 5 | return valid_ipv4(value_str); |
366 | 8 | case FieldType::OLAP_FIELD_TYPE_IPV6: |
367 | 8 | return valid_ipv6(value_str); |
368 | 0 | default: |
369 | 0 | LOG(WARNING) << "unknown field type. [type=" << int(field_type) << "]"; |
370 | 138 | } |
371 | 0 | return false; |
372 | 138 | } |
373 | | |
374 | 135 | Status DeleteHandler::check_condition_valid(const TabletSchema& schema, const TCondition& cond) { |
375 | | // Check whether the column exists |
376 | 135 | int32_t field_index = schema.field_index(cond.column_name); |
377 | 135 | if (field_index < 0) { |
378 | 1 | return Status::Error<ErrorCode::INVALID_ARGUMENT>("field is not existent. [field_index={}]", |
379 | 1 | field_index); |
380 | 1 | } |
381 | | |
382 | | // Delete condition should only applied on key columns or duplicate key table, and |
383 | | // the condition column type should not be float or double. |
384 | 134 | const TabletColumn& column = schema.column(field_index); |
385 | | |
386 | 134 | if (column.type() == FieldType::OLAP_FIELD_TYPE_DOUBLE || |
387 | 134 | column.type() == FieldType::OLAP_FIELD_TYPE_FLOAT) { |
388 | 0 | return Status::Error<ErrorCode::INVALID_ARGUMENT>("data type is float or double."); |
389 | 0 | } |
390 | | |
391 | | // Check operator and operands size are matched. |
392 | 134 | if ("*=" != cond.condition_op && "!*=" != cond.condition_op && |
393 | 134 | cond.condition_values.size() != 1) { |
394 | 0 | return Status::Error<ErrorCode::INVALID_ARGUMENT>("invalid condition value size. [size={}]", |
395 | 0 | cond.condition_values.size()); |
396 | 0 | } |
397 | | |
398 | | // Check each operand is valid |
399 | 140 | for (const auto& condition_value : cond.condition_values) { |
400 | 140 | if (!is_condition_value_valid(column, cond.condition_op, condition_value)) { |
401 | 29 | return Status::Error<ErrorCode::INVALID_ARGUMENT>("invalid condition value. [value={}]", |
402 | 29 | condition_value); |
403 | 29 | } |
404 | 140 | } |
405 | | |
406 | 105 | if (!cond.__isset.column_unique_id) { |
407 | 105 | LOG(WARNING) << "column=" << cond.column_name |
408 | 105 | << " in predicate does not have uid, table id=" << schema.table_id(); |
409 | | // TODO(tsy): make it fail here after FE forbidding hard-link-schema-change |
410 | 105 | return Status::OK(); |
411 | 105 | } |
412 | 0 | if (schema.field_index(cond.column_unique_id) == -1) { |
413 | 0 | const auto& err_msg = |
414 | 0 | fmt::format("column id does not exists in table={}, schema version={},", |
415 | 0 | schema.table_id(), schema.schema_version()); |
416 | 0 | return Status::Error<ErrorCode::INVALID_ARGUMENT>(err_msg); |
417 | 0 | } |
418 | 0 | if (!iequal(schema.column_by_uid(cond.column_unique_id).name(), cond.column_name)) { |
419 | 0 | const auto& err_msg = fmt::format( |
420 | 0 | "colum name={} does not belongs to column uid={}, which " |
421 | 0 | "column name={}, " |
422 | 0 | "delete_cond.column_name ={}", |
423 | 0 | cond.column_name, cond.column_unique_id, |
424 | 0 | schema.column_by_uid(cond.column_unique_id).name(), cond.column_name); |
425 | 0 | return Status::Error<ErrorCode::INVALID_ARGUMENT>(err_msg); |
426 | 0 | } |
427 | | |
428 | 0 | return Status::OK(); |
429 | 0 | } |
430 | | |
431 | | PredicateType DeleteHandler::parse_condition_op(const std::string& op_str, |
432 | 302 | const std::list<std::string>& cond_values) { |
433 | 302 | if (trim(to_lower(op_str)) == "=") { |
434 | 92 | return PredicateType::EQ; |
435 | 210 | } else if (trim(to_lower(op_str)) == "!=") { |
436 | 18 | return PredicateType::NE; |
437 | 192 | } else if (trim(to_lower(op_str)) == ">>") { |
438 | 9 | return PredicateType::GT; |
439 | 183 | } else if (trim(to_lower(op_str)) == "<<") { |
440 | 129 | return PredicateType::LT; |
441 | 129 | } else if (trim(to_lower(op_str)) == ">=") { |
442 | 5 | return PredicateType::GE; |
443 | 49 | } else if (trim(to_lower(op_str)) == "<=") { |
444 | 7 | return PredicateType::LE; |
445 | 42 | } else if (trim(to_lower(op_str)) == "*=") { |
446 | 0 | return cond_values.size() > 1 ? PredicateType::IN_LIST : PredicateType::EQ; |
447 | 42 | } else if (trim(to_lower(op_str)) == "!*=") { |
448 | 0 | return cond_values.size() > 1 ? PredicateType::NOT_IN_LIST : PredicateType::NE; |
449 | 42 | } else if (trim(to_lower(op_str)) == "is") { |
450 | 42 | return to_lower(cond_values.front()) == "null" ? PredicateType::IS_NULL |
451 | 42 | : PredicateType::IS_NOT_NULL; |
452 | 42 | } else { |
453 | 0 | throw Exception(Status::Error<ErrorCode::INVALID_ARGUMENT>( |
454 | 0 | "invalid condition operator. operator={}", op_str)); |
455 | 0 | } |
456 | 0 | return PredicateType::UNKNOWN; |
457 | 302 | } |
458 | | |
459 | | DeleteHandler::ConditionParseResult DeleteHandler::parse_condition( |
460 | 100 | const DeleteSubPredicatePB& sub_cond) { |
461 | 100 | ConditionParseResult res; |
462 | 100 | if (!sub_cond.has_column_name() || !sub_cond.has_op() || !sub_cond.has_cond_value()) { |
463 | 0 | throw Exception(Status::Error<ErrorCode::INVALID_ARGUMENT>( |
464 | 0 | "fail to parse condition. condition={} {} {}", sub_cond.column_name(), |
465 | 0 | sub_cond.op(), sub_cond.cond_value())); |
466 | 0 | } |
467 | 100 | if (sub_cond.has_column_unique_id()) { |
468 | 0 | res.col_unique_id = sub_cond.column_unique_id(); |
469 | 0 | } |
470 | 100 | res.column_name = sub_cond.column_name(); |
471 | 100 | res.value_str.push_back(sub_cond.cond_value()); |
472 | 100 | res.condition_op = parse_condition_op(sub_cond.op(), res.value_str); |
473 | 100 | return res; |
474 | 100 | } |
475 | | |
476 | | // clang-format off |
477 | | // Condition string format, the format is (column_name)(op)(value) |
478 | | // eg: condition_str="c1 = 1597751948193618247 and length(source)<1;\n;\n" |
479 | | // column_name: matches "c1", must include FeNameFormat.java COLUMN_NAME_REGEX |
480 | | // and compactible with any the lagacy |
481 | | // operator: matches "=" |
482 | | // value: matches "1597751948193618247 and length(source)<1;\n;\n" |
483 | | // |
484 | | // For more info, see DeleteHandler::construct_sub_predicates |
485 | | // FIXME(gavin): This is a tricky implementation, it should not be the final resolution, refactor it. |
486 | | const char* const CONDITION_STR_PATTERN = |
487 | | // .----------------- column-name --------------------------. .----------------------- operator ------------------------. .------------ value ----------. |
488 | | R"(([_a-zA-Z@0-9\s/\p{L}][.a-zA-Z0-9_+-/?@#$%^&*"\s,:\p{L}]*)\s*((?:=)|(?:!=)|(?:>>)|(?:<<)|(?:>=)|(?:<=)|(?:\*=)|(?: IS ))\s*('((?:[\s\S]+)?)'|(?:[\s\S]+)?))"; |
489 | | // '----------------- group 1 ------------------------------' '--------------------- group 2 ---------------------------' | '-- group 4--' | |
490 | | // match any of: = != >> << >= <= *= " IS " '----------- group 3 ---------' |
491 | | // match **ANY THING** without(4) |
492 | | // or with(3) single quote |
493 | | // clang-format on |
494 | | RE2 DELETE_HANDLER_REGEX(CONDITION_STR_PATTERN); |
495 | | |
496 | | DeleteHandler::ConditionParseResult DeleteHandler::parse_condition( |
497 | 182 | const std::string& condition_str) { |
498 | 182 | ConditionParseResult res; |
499 | 182 | std::string col_name, op, value, g4; |
500 | | |
501 | 182 | bool matched = RE2::FullMatch(condition_str, DELETE_HANDLER_REGEX, &col_name, &op, &value, |
502 | 182 | &g4); // exact match |
503 | | |
504 | 182 | if (!matched) { |
505 | 0 | throw Exception( |
506 | 0 | Status::InvalidArgument("fail to sub condition. condition={}", condition_str)); |
507 | 0 | } |
508 | | |
509 | 182 | res.column_name = col_name; |
510 | | |
511 | | // match string with single quotes, a = b or a = 'b' |
512 | 182 | if (!g4.empty()) { |
513 | 141 | res.value_str.push_back(g4); |
514 | 141 | } else { |
515 | 41 | res.value_str.push_back(value); |
516 | 41 | } |
517 | 182 | res.condition_op = DeleteHandler::parse_condition_op(op, res.value_str); |
518 | 182 | VLOG_NOTICE << "parsed condition_str: col_name={" << col_name << "} op={" << op << "} val={" |
519 | 48 | << res.value_str.back() << "}"; |
520 | 182 | return res; |
521 | 182 | } |
522 | | |
523 | | template <typename SubPredType> |
524 | | requires(std::is_same_v<SubPredType, DeleteSubPredicatePB> or |
525 | | std::is_same_v<SubPredType, std::string>) |
526 | | Status DeleteHandler::_parse_column_pred(TabletSchemaSPtr complete_schema, |
527 | | TabletSchemaSPtr delete_pred_related_schema, |
528 | | const RepeatedPtrField<SubPredType>& sub_pred_list, |
529 | 169 | DeleteConditions* delete_conditions) { |
530 | 181 | for (const auto& sub_predicate : sub_pred_list) { |
531 | 181 | auto condition = parse_condition(sub_predicate); |
532 | 181 | int32_t col_unique_id = -1; |
533 | 181 | if constexpr (std::is_same_v<SubPredType, DeleteSubPredicatePB>) { |
534 | 100 | if (sub_predicate.has_column_unique_id()) [[likely]] { |
535 | 0 | col_unique_id = sub_predicate.column_unique_id(); |
536 | 0 | } |
537 | 100 | } |
538 | 181 | if (col_unique_id < 0) { |
539 | 181 | const auto& column = |
540 | 181 | *DORIS_TRY(delete_pred_related_schema->column(condition.column_name)); |
541 | 181 | col_unique_id = column.unique_id(); |
542 | 181 | } |
543 | 181 | condition.col_unique_id = col_unique_id; |
544 | 181 | const auto& column = complete_schema->column_by_uid(col_unique_id); |
545 | 181 | uint32_t index = complete_schema->field_index(col_unique_id); |
546 | 181 | std::shared_ptr<ColumnPredicate> predicate; |
547 | 181 | RETURN_IF_ERROR(parse_to_predicate(index, column.name(), column.get_vec_type(), condition, |
548 | 181 | _predicate_arena, predicate)); |
549 | 174 | if (predicate != nullptr) { |
550 | 174 | delete_conditions->column_predicate_vec.push_back(predicate); |
551 | 174 | } |
552 | 174 | } |
553 | 162 | return Status::OK(); |
554 | 169 | } _ZN5doris13DeleteHandler18_parse_column_predINS_20DeleteSubPredicatePBEQoosr3stdE9is_same_vIT_S2_Esr3stdE9is_same_vIS3_NSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEENS_6StatusESt10shared_ptrINS_12TabletSchemaEESD_RKN6google8protobuf16RepeatedPtrFieldIS3_EEPNS_16DeleteConditionsE Line | Count | Source | 529 | 87 | DeleteConditions* delete_conditions) { | 530 | 100 | for (const auto& sub_predicate : sub_pred_list) { | 531 | 100 | auto condition = parse_condition(sub_predicate); | 532 | 100 | int32_t col_unique_id = -1; | 533 | 100 | if constexpr (std::is_same_v<SubPredType, DeleteSubPredicatePB>) { | 534 | 100 | if (sub_predicate.has_column_unique_id()) [[likely]] { | 535 | 0 | col_unique_id = sub_predicate.column_unique_id(); | 536 | 0 | } | 537 | 100 | } | 538 | 100 | if (col_unique_id < 0) { | 539 | 100 | const auto& column = | 540 | 100 | *DORIS_TRY(delete_pred_related_schema->column(condition.column_name)); | 541 | 100 | col_unique_id = column.unique_id(); | 542 | 100 | } | 543 | 100 | condition.col_unique_id = col_unique_id; | 544 | 100 | const auto& column = complete_schema->column_by_uid(col_unique_id); | 545 | 100 | uint32_t index = complete_schema->field_index(col_unique_id); | 546 | 100 | std::shared_ptr<ColumnPredicate> predicate; | 547 | 100 | RETURN_IF_ERROR(parse_to_predicate(index, column.name(), column.get_vec_type(), condition, | 548 | 100 | _predicate_arena, predicate)); | 549 | 100 | if (predicate != nullptr) { | 550 | 100 | delete_conditions->column_predicate_vec.push_back(predicate); | 551 | 100 | } | 552 | 100 | } | 553 | 87 | return Status::OK(); | 554 | 87 | } |
_ZN5doris13DeleteHandler18_parse_column_predINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEQoosr3stdE9is_same_vIT_NS_20DeleteSubPredicatePBEEsr3stdE9is_same_vIS8_S7_EEENS_6StatusESt10shared_ptrINS_12TabletSchemaEESD_RKN6google8protobuf16RepeatedPtrFieldIS8_EEPNS_16DeleteConditionsE Line | Count | Source | 529 | 82 | DeleteConditions* delete_conditions) { | 530 | 82 | for (const auto& sub_predicate : sub_pred_list) { | 531 | 81 | auto condition = parse_condition(sub_predicate); | 532 | 81 | int32_t col_unique_id = -1; | 533 | | if constexpr (std::is_same_v<SubPredType, DeleteSubPredicatePB>) { | 534 | | if (sub_predicate.has_column_unique_id()) [[likely]] { | 535 | | col_unique_id = sub_predicate.column_unique_id(); | 536 | | } | 537 | | } | 538 | 81 | if (col_unique_id < 0) { | 539 | 81 | const auto& column = | 540 | 81 | *DORIS_TRY(delete_pred_related_schema->column(condition.column_name)); | 541 | 81 | col_unique_id = column.unique_id(); | 542 | 81 | } | 543 | 81 | condition.col_unique_id = col_unique_id; | 544 | 81 | const auto& column = complete_schema->column_by_uid(col_unique_id); | 545 | 81 | uint32_t index = complete_schema->field_index(col_unique_id); | 546 | 81 | std::shared_ptr<ColumnPredicate> predicate; | 547 | 81 | RETURN_IF_ERROR(parse_to_predicate(index, column.name(), column.get_vec_type(), condition, | 548 | 81 | _predicate_arena, predicate)); | 549 | 74 | if (predicate != nullptr) { | 550 | 74 | delete_conditions->column_predicate_vec.push_back(predicate); | 551 | 74 | } | 552 | 74 | } | 553 | 75 | return Status::OK(); | 554 | 82 | } |
|
555 | | |
556 | | Status DeleteHandler::init(TabletSchemaSPtr tablet_schema, |
557 | 377 | const std::vector<RowsetMetaSharedPtr>& delete_preds, int64_t version) { |
558 | 377 | DCHECK(!_is_inited) << "reinitialize delete handler."; |
559 | 377 | DCHECK(version >= 0) << "invalid parameters. version=" << version; |
560 | | |
561 | 377 | for (const auto& delete_pred : delete_preds) { |
562 | | // Skip the delete condition with large version |
563 | 169 | if (delete_pred->version().first > version) { |
564 | 0 | continue; |
565 | 0 | } |
566 | | // Need the tablet schema at the delete condition to parse the accurate column |
567 | 169 | const auto& delete_pred_related_schema = delete_pred->tablet_schema(); |
568 | 169 | const auto& delete_condition = delete_pred->delete_predicate(); |
569 | 169 | DeleteConditions temp; |
570 | 169 | temp.filter_version = delete_pred->version().first; |
571 | 169 | if (!delete_condition.sub_predicates_v2().empty()) { |
572 | 87 | RETURN_IF_ERROR(_parse_column_pred(tablet_schema, delete_pred_related_schema, |
573 | 87 | delete_condition.sub_predicates_v2(), &temp)); |
574 | 87 | } else { |
575 | | // make it compatible with the former versions |
576 | 82 | RETURN_IF_ERROR(_parse_column_pred(tablet_schema, delete_pred_related_schema, |
577 | 82 | delete_condition.sub_predicates(), &temp)); |
578 | 82 | } |
579 | 162 | for (const auto& in_predicate : delete_condition.in_predicates()) { |
580 | 2 | ConditionParseResult condition; |
581 | 2 | condition.column_name = in_predicate.column_name(); |
582 | | |
583 | 2 | int32_t col_unique_id = -1; |
584 | 2 | if (in_predicate.has_column_unique_id()) { |
585 | 0 | col_unique_id = in_predicate.column_unique_id(); |
586 | 2 | } else { |
587 | | // if upgrade from version 2.0.x, column_unique_id maybe not set |
588 | 2 | const auto& pre_column = |
589 | 2 | *DORIS_TRY(delete_pred_related_schema->column(condition.column_name)); |
590 | 2 | col_unique_id = pre_column.unique_id(); |
591 | 2 | } |
592 | 2 | if (col_unique_id == -1) { |
593 | 0 | return Status::Error<ErrorCode::DELETE_INVALID_CONDITION>( |
594 | 0 | "cannot get column_unique_id for column {}", condition.column_name); |
595 | 0 | } |
596 | 2 | condition.col_unique_id = col_unique_id; |
597 | | |
598 | 2 | condition.condition_op = |
599 | 2 | in_predicate.is_not_in() ? PredicateType::NOT_IN_LIST : PredicateType::IN_LIST; |
600 | 5 | for (const auto& value : in_predicate.values()) { |
601 | 5 | condition.value_str.push_back(value); |
602 | 5 | } |
603 | 2 | const auto& column = tablet_schema->column_by_uid(col_unique_id); |
604 | 2 | uint32_t index = tablet_schema->field_index(col_unique_id); |
605 | 2 | std::shared_ptr<ColumnPredicate> predicate; |
606 | 2 | RETURN_IF_ERROR(parse_to_in_predicate(index, column.name(), column.get_vec_type(), |
607 | 2 | condition, _predicate_arena, predicate)); |
608 | 2 | temp.column_predicate_vec.push_back(predicate); |
609 | 2 | } |
610 | | |
611 | 162 | _del_conds.emplace_back(std::move(temp)); |
612 | 162 | } |
613 | | |
614 | 370 | _is_inited = true; |
615 | | |
616 | 370 | return Status::OK(); |
617 | 377 | } |
618 | | |
619 | 410 | DeleteHandler::~DeleteHandler() { |
620 | 410 | if (!_is_inited) { |
621 | 40 | return; |
622 | 40 | } |
623 | | |
624 | 370 | _del_conds.clear(); |
625 | 370 | _is_inited = false; |
626 | 370 | } |
627 | | |
628 | | void DeleteHandler::get_delete_conditions_after_version( |
629 | | int64_t version, AndBlockColumnPredicate* and_block_column_predicate_ptr, |
630 | | std::unordered_map<int32_t, std::vector<std::shared_ptr<const ColumnPredicate>>>* |
631 | 1.09k | del_predicates_for_zone_map) const { |
632 | 1.09k | for (const auto& del_cond : _del_conds) { |
633 | 555 | if (del_cond.filter_version > version) { |
634 | | // now, only query support delete column predicate operator |
635 | 406 | if (!del_cond.column_predicate_vec.empty()) { |
636 | 406 | if (del_cond.column_predicate_vec.size() == 1) { |
637 | 406 | auto single_column_block_predicate = SingleColumnBlockPredicate::create_unique( |
638 | 406 | del_cond.column_predicate_vec[0]); |
639 | 406 | and_block_column_predicate_ptr->add_column_predicate( |
640 | 406 | std::move(single_column_block_predicate)); |
641 | 406 | if (del_predicates_for_zone_map->count( |
642 | 406 | del_cond.column_predicate_vec[0]->column_id()) < 1) { |
643 | 406 | del_predicates_for_zone_map->insert( |
644 | 406 | {del_cond.column_predicate_vec[0]->column_id(), |
645 | 406 | std::vector<std::shared_ptr<const ColumnPredicate>> {}}); |
646 | 406 | } |
647 | 406 | (*del_predicates_for_zone_map)[del_cond.column_predicate_vec[0]->column_id()] |
648 | 406 | .push_back(del_cond.column_predicate_vec[0]); |
649 | 406 | } else { |
650 | 0 | auto or_column_predicate = OrBlockColumnPredicate::create_unique(); |
651 | | |
652 | | // build or_column_predicate |
653 | | // when delete from where a = 1 and b = 2, we can not use del_predicates_for_zone_map to filter zone page, |
654 | | // so here do not put predicate to del_predicates_for_zone_map, |
655 | | // refer #17145 for more details. |
656 | | // // TODO: need refactor design and code to use more version delete and more column delete to filter zone page. |
657 | 0 | std::for_each(del_cond.column_predicate_vec.cbegin(), |
658 | 0 | del_cond.column_predicate_vec.cend(), |
659 | 0 | [&or_column_predicate]( |
660 | 0 | const std::shared_ptr<const ColumnPredicate> predicate) { |
661 | 0 | or_column_predicate->add_column_predicate( |
662 | 0 | SingleColumnBlockPredicate::create_unique(predicate)); |
663 | 0 | }); |
664 | 0 | and_block_column_predicate_ptr->add_column_predicate( |
665 | 0 | std::move(or_column_predicate)); |
666 | 0 | } |
667 | 406 | } |
668 | 406 | } |
669 | 555 | } |
670 | 1.09k | } |
671 | | |
672 | | } // namespace doris |