Skip to content

Commit

Permalink
fix simple btree node compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravi Nagarjun Akella authored and Ravi Nagarjun Akella committed Aug 2, 2024
1 parent dcab9db commit aa43de4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class HomestoreConan(ConanFile):
name = "homestore"
version = "6.4.34"
version = "6.4.35"

homepage = "https://github.com/eBay/Homestore"
description = "HomeStore Storage Engine"
Expand Down
2 changes: 2 additions & 0 deletions src/include/homestore/btree/detail/simple_node.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ class SimpleNode : public VariantNode< K, V > {

std::string to_dot_keys() const override {
std::string str;
#if 0
std::string snext = this->next_bnode() == empty_bnodeid ? "" : fmt::format("next_node={}", this->next_bnode());
str += fmt::format(R"("{}" [
shape = none,
Expand Down Expand Up @@ -314,6 +315,7 @@ class SimpleNode : public VariantNode< K, V > {
1, this->node_id(), this->link_version(), this->node_gen(), snext);
return str + keys_buf;
}
#endif
return str;
}

Expand Down

0 comments on commit aa43de4

Please sign in to comment.