Skip to content

Commit a998ffa

Browse files
authored
Hotfix: remove duplicate row in b_plus_tree_printer (#845)
Remove duplicate row in b_plus_tree_printer graphic
1 parent f72a58b commit a998ffa

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/include/storage/index/b_plus_tree_debug.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -174,11 +174,6 @@ void BPLUSTREE_TYPE::ToGraph(page_id_t page_id, const BPlusTreePage *page, std::
174174
out << "<TD>" << leaf->KeyAt(i) << "</TD>\n";
175175
}
176176
out << "</TR>";
177-
out << "<TR>";
178-
for (int i = 0; i < leaf->GetSize(); i++) {
179-
out << "<TD>" << leaf->KeyAt(i) << "</TD>\n";
180-
}
181-
out << "</TR>";
182177
// Print table end
183178
out << "</TABLE>>];\n";
184179
// Print Leaf node link if there is a next page

0 commit comments

Comments
 (0)