Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake/dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ FetchContent_Declare(glog
# seeds its glog/liburing discovery variables before making it available.
FetchContent_Declare(brpc
GIT_REPOSITORY https://github.com/eloqdata/brpc.git
GIT_TAG 02c3f2de6a79b3d4828a3f75b04096f06be929c5
GIT_TAG 34e0e01d5a528bc9fc91a8abe32b701313791a4b
GIT_PROGRESS TRUE)

# Catch2 (tests only)
Expand Down
7 changes: 6 additions & 1 deletion include/eloqstore_module.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ class EloqStoreModule : public eloq::EloqModule
}
~EloqStoreModule() = default;

eloq::ModuleType Type() const override
{
return eloq::ModuleType::kEloqStore;
}

void ExtThdStart(int thd_id) override;
void ExtThdEnd(int thd_id) override;
void Process(int thd_id) override;
Expand All @@ -28,4 +33,4 @@ class EloqStoreModule : public eloq::EloqModule
};

} // namespace eloqstore
#endif
#endif
Loading