Coverage Report

Created: 2026-03-19 18:02

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