Skip to content

Commit 7b694e4

Browse files
committed
format
1 parent 56eb95a commit 7b694e4

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

be/test/vec/exprs/vexpr_evalute_inverted_index_test.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,7 @@ TEST(TExprInvertedIndexTest, test_expr_evaluate_inverted_index) {
168168
doris::RowDescriptor row_desc;
169169
EXPECT_TRUE(in_expr->prepare(&state, row_desc, &expr_ctx).ok());
170170
EXPECT_TRUE(in_expr->evaluate_inverted_index(&expr_ctx, 100).ok());
171-
EXPECT_FALSE(expr_ctx.get_index_context()->has_index_result_for_expr(
172-
in_expr.get()));
171+
EXPECT_FALSE(expr_ctx.get_index_context()->has_index_result_for_expr(in_expr.get()));
173172
EXPECT_TRUE(expr_ctx.get_index_context()->_index_result_bitmap.empty());
174173
EXPECT_TRUE(expr_ctx.get_index_context()->_expr_index_status.empty());
175174
}

be/test/vec/exprs/vsearch_expr_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ std::shared_ptr<IndexExecContext> make_inverted_context(
9797
std::vector<std::unique_ptr<segment_v2::IndexIterator>>& index_iterators,
9898
std::vector<IndexFieldNameAndTypePair>& storage_types,
9999
std::unordered_map<ColumnId, std::unordered_map<const VExpr*, bool>>& status_map) {
100-
return std::make_shared<IndexExecContext>(col_ids, index_iterators, storage_types,
101-
status_map, nullptr);
100+
return std::make_shared<IndexExecContext>(col_ids, index_iterators, storage_types, status_map,
101+
nullptr);
102102
}
103103

104104
} // namespace

0 commit comments

Comments
 (0)