diff --git a/conanfile.py b/conanfile.py index fd824630f..e9f91d434 100644 --- a/conanfile.py +++ b/conanfile.py @@ -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" diff --git a/src/include/homestore/btree/detail/simple_node.hpp b/src/include/homestore/btree/detail/simple_node.hpp index 85318c9b9..6c038df7f 100644 --- a/src/include/homestore/btree/detail/simple_node.hpp +++ b/src/include/homestore/btree/detail/simple_node.hpp @@ -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, @@ -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; }