Commit 908d6cc 1 parent b0d661d commit 908d6cc Copy full SHA for 908d6cc
File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ class VExpr {
120
120
121
121
// execute current expr with inverted index to filter block. Given a roaring bitmap of match rows
122
122
virtual Status evaluate_inverted_index (VExprContext* context, uint32_t segment_num_rows) {
123
- return Status::NotSupported ( " Not supported execute_with_inverted_index " );
123
+ return Status::OK ( );
124
124
}
125
125
126
126
Status _evaluate_inverted_index (VExprContext* context, const FunctionBasePtr& function,
Original file line number Diff line number Diff line change @@ -195,8 +195,7 @@ class IFunctionBase {
195
195
const std::vector<vectorized::IndexFieldNameAndTypePair>& data_type_with_names,
196
196
std::vector<segment_v2::InvertedIndexIterator*> iterators, uint32_t num_rows,
197
197
segment_v2::InvertedIndexResultBitmap& bitmap_result) const {
198
- return Status::NotSupported (" evaluate_inverted_index is not supported in function: " ,
199
- get_name ());
198
+ return Status::OK ();
200
199
}
201
200
202
201
// / Do cleaning work when function is finished, i.e., release state variables in the
You can’t perform that action at this time.
0 commit comments