Skip to content

Commit

Permalink
Update src/types/redis_bloom_chain.cc
Browse files Browse the repository at this point in the history
Co-authored-by: Twice <twice@apache.org>
  • Loading branch information
zncleon and PragmaTwice authored Sep 13, 2023
1 parent 7299d20 commit f2d5952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/redis_bloom_chain.cc
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ rocksdb::Status BloomChain::MExists(const Slice &user_key, const std::vector<Sli
}

for (size_t i = 0; i < items.size(); ++i) {
rets->at(i) = exists[i] ? 1 : 0;
(*rets)[i] = exists[i] ? 1 : 0;
}

return rocksdb::Status::OK();
Expand Down

0 comments on commit f2d5952

Please sign in to comment.