Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
151 changes: 0 additions & 151 deletions be/src/olap/match_predicate.cpp

This file was deleted.

90 changes: 0 additions & 90 deletions be/src/olap/match_predicate.h

This file was deleted.

4 changes: 0 additions & 4 deletions be/src/olap/predicate_creator.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
#include "olap/column_predicate.h"
#include "olap/comparison_predicate.h"
#include "olap/in_list_predicate.h"
#include "olap/match_predicate.h"
#include "olap/null_predicate.h"
#include "olap/tablet_schema.h"
#include "runtime/define_primitive_type.h"
Expand Down Expand Up @@ -295,9 +294,6 @@ inline ColumnPredicate* parse_to_predicate(const TabletColumn& column, uint32_t
if (to_lower(condition.condition_op) == "is") {
return new NullPredicate(index, to_lower(condition.condition_values[0]) == "null",
opposite);
} else if (is_match_condition(condition.condition_op)) {
return new MatchPredicate(index, condition.condition_values[0],
to_match_type(condition.condition_op));
}

if ((condition.condition_op == "*=" || condition.condition_op == "!*=") &&
Expand Down
1 change: 0 additions & 1 deletion be/src/olap/rowset/segment_v2/segment_iterator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
#include "olap/id_manager.h"
#include "olap/iterators.h"
#include "olap/like_column_predicate.h"
#include "olap/match_predicate.h"
#include "olap/olap_common.h"
#include "olap/primary_key_index.h"
#include "olap/rowset/segment_v2/bitmap_index_reader.h"
Expand Down
Loading