Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
czpmango committed Nov 23, 2021
1 parent f0ea53d commit d18c01b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/meta/processors/BaseProcessor-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ nebula::cpp2::ErrorCode BaseProcessor<RESP>::ftIndexCheck(
template <typename RESP>
bool BaseProcessor<RESP>::checkIndexExist(const std::vector<cpp2::IndexFieldDef>& fields,
const cpp2::IndexItem& item) {
auto itemFields = item.get_fields();
const auto& itemFields = item.get_fields();
if (fields.size() != itemFields.size()) {
return false;
}
Expand Down

0 comments on commit d18c01b

Please sign in to comment.