| // Licensed to the Apache Software Foundation (ASF) under one |
| // or more contributor license agreements. See the NOTICE file |
| // distributed with this work for additional information |
| // regarding copyright ownership. The ASF licenses this file |
| // to you under the Apache License, Version 2.0 (the |
| // "License"); you may not use this file except in compliance |
| // with the License. You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, |
| // software distributed under the License is distributed on an |
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| // KIND, either express or implied. See the License for the |
| // specific language governing permissions and limitations |
| // under the License. |
| |
| #include "olap/match_predicate.h" |
| |
| #include <roaring/roaring.hh> |
| |
| #include "exec/olap_utils.h" |
| #include "olap/field.h" |
| #include "olap/inverted_index_parser.h" |
| #include "olap/olap_common.h" |
| #include "olap/rowset/segment_v2/inverted_index_cache.h" |
| #include "olap/rowset/segment_v2/inverted_index_reader.h" |
| #include "olap/schema.h" |
| #include "olap/types.h" |
| #include "olap/utils.h" |
| #include "vec/common/string_ref.h" |
| |
| namespace doris { |
| |
| MatchPredicate::MatchPredicate(uint32_t column_id, const std::string& value, MatchType match_type) |
| : ColumnPredicate(column_id), _value(value), _match_type(match_type) {} |
| |
| PredicateType MatchPredicate::type() const { |
| return PredicateType::MATCH; |
| } |
| |
| Status MatchPredicate::evaluate(const Schema& schema, InvertedIndexIterator* iterator, |
| uint32_t num_rows, roaring::Roaring* bitmap) const { |
| if (iterator == nullptr) { |
| return Status::OK(); |
| } |
| if (_skip_evaluate(iterator)) { |
| return Status::Error<ErrorCode::INVERTED_INDEX_EVALUATE_SKIPPED>( |
| "match predicate evaluate skipped."); |
| } |
| auto column_desc = schema.column(_column_id); |
| roaring::Roaring roaring; |
| auto inverted_index_query_type = _to_inverted_index_query_type(_match_type); |
| |
| if (is_string_type(column_desc->type()) || |
| (column_desc->type() == FieldType::OLAP_FIELD_TYPE_ARRAY && |
| is_string_type(column_desc->get_sub_field(0)->type_info()->type()))) { |
| StringRef match_value; |
| int32_t length = _value.length(); |
| char* buffer = const_cast<char*>(_value.c_str()); |
| match_value.replace(buffer, length); //is it safe? |
| RETURN_IF_ERROR(iterator->read_from_inverted_index( |
| column_desc->name(), &match_value, inverted_index_query_type, num_rows, &roaring)); |
| } else if (column_desc->type() == FieldType::OLAP_FIELD_TYPE_ARRAY && |
| is_numeric_type(column_desc->get_sub_field(0)->type_info()->type())) { |
| char buf[column_desc->get_sub_field(0)->type_info()->size()]; |
| column_desc->get_sub_field(0)->from_string(buf, _value); |
| RETURN_IF_ERROR(iterator->read_from_inverted_index( |
| column_desc->name(), buf, inverted_index_query_type, num_rows, &roaring, true)); |
| } |
| |
| // mask out null_bitmap, since NULL cmp VALUE will produce NULL |
| // and be treated as false in WHERE |
| // keep it after query, since query will try to read null_bitmap and put it to cache |
| InvertedIndexQueryCacheHandle null_bitmap_cache_handle; |
| RETURN_IF_ERROR(iterator->read_null_bitmap(&null_bitmap_cache_handle)); |
| std::shared_ptr<roaring::Roaring> null_bitmap = null_bitmap_cache_handle.get_bitmap(); |
| if (null_bitmap) { |
| *bitmap -= *null_bitmap; |
| } |
| |
| *bitmap &= roaring; |
| return Status::OK(); |
| } |
| |
| InvertedIndexQueryType MatchPredicate::_to_inverted_index_query_type(MatchType match_type) const { |
| auto ret = InvertedIndexQueryType::UNKNOWN_QUERY; |
| switch (match_type) { |
| case MatchType::MATCH_ANY: |
| ret = InvertedIndexQueryType::MATCH_ANY_QUERY; |
| break; |
| case MatchType::MATCH_ALL: |
| ret = InvertedIndexQueryType::MATCH_ALL_QUERY; |
| break; |
| case MatchType::MATCH_PHRASE: |
| ret = InvertedIndexQueryType::MATCH_PHRASE_QUERY; |
| break; |
| case MatchType::MATCH_PHRASE_PREFIX: |
| ret = InvertedIndexQueryType::MATCH_PHRASE_PREFIX_QUERY; |
| break; |
| case MatchType::MATCH_REGEXP: |
| ret = InvertedIndexQueryType::MATCH_REGEXP_QUERY; |
| break; |
| default: |
| DCHECK(false); |
| } |
| return ret; |
| } |
| |
| bool MatchPredicate::_skip_evaluate(InvertedIndexIterator* iterator) const { |
| if ((_match_type == MatchType::MATCH_PHRASE || _match_type == MatchType::MATCH_PHRASE_PREFIX) && |
| iterator->get_inverted_index_reader_type() == InvertedIndexReaderType::FULLTEXT && |
| get_parser_phrase_support_string_from_properties(iterator->get_index_properties()) == |
| INVERTED_INDEX_PARSER_FALSE) { |
| return true; |
| } |
| return false; |
| } |
| |
| } // namespace doris |