Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PragmaTwice committed Aug 11, 2023
1 parent 7cb1038 commit 14a9692
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/common/db_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
#include <memory>

#include "fmt/ostream.h"
#include "fmt/std.h"
#include "rocksdb/db.h"
#include "rocksdb/iterator.h"
#include "rocksdb/utilities/backup_engine.h"
Expand Down
2 changes: 1 addition & 1 deletion tests/cppunit/compact_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ TEST(Compact, Filter) {
auto iter = new_iterator("metadata");
for (iter->SeekToFirst(); iter->Valid(); iter->Next()) {
auto [user_key, user_ns] = ExtractNamespaceKey(iter->key(), storage->IsSlotIdEncoded());
EXPECT_EQ(user_key, live_hash_key);
EXPECT_EQ(user_key.ToString(), live_hash_key);
}

iter = new_iterator("subkey");
Expand Down

0 comments on commit 14a9692

Please sign in to comment.