Skip to content

Commit

Permalink
fix formate
Browse files Browse the repository at this point in the history
  • Loading branch information
amorynan committed Oct 16, 2024
1 parent 9724e91 commit c0d725b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions be/src/vec/functions/array/function_array_index.h
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ class FunctionArrayIndex : public IFunction {
std::unique_ptr<InvertedIndexQueryParamFactory> query_param = nullptr;
RETURN_IF_ERROR(InvertedIndexQueryParamFactory::create_query_value(param_type, &param_value,
query_param));
RETURN_IF_ERROR(iter->read_from_inverted_index(data_type_with_name.first,
query_param->get_value(),
segment_v2::InvertedIndexQueryType::EQUAL_QUERY, num_rows, roaring));
RETURN_IF_ERROR(iter->read_from_inverted_index(
data_type_with_name.first, query_param->get_value(),
segment_v2::InvertedIndexQueryType::EQUAL_QUERY, num_rows, roaring));
// here debug for check array_contains function really filter rows by inverted index correctly
DBUG_EXECUTE_IF("array_func.array_contains", {
auto result_bitmap = DebugPoints::instance()->get_debug_param_or_default<int32_t>(
Expand Down

0 comments on commit c0d725b

Please sign in to comment.