Commit ab98a101 authored by marko's avatar marko

branches/innodb+: btr_page_get_father_node_ptr(): Add TODO comments about

accessing a freed record on a compressed page.
parent 3283c6e9
...@@ -609,6 +609,9 @@ btr_page_get_father_node_ptr( ...@@ -609,6 +609,9 @@ btr_page_get_father_node_ptr(
The first record from the free list can be used to find the The first record from the free list can be used to find the
father node. */ father node. */
user_rec = page_header_get_ptr(page, PAGE_FREE); user_rec = page_header_get_ptr(page, PAGE_FREE);
/* TODO: make sure that delete buffering never zeroes out
the data bytes. TODO: make sure that empty pages are
never recompressed. */
ut_a(user_rec); ut_a(user_rec);
} else { } else {
user_rec = btr_cur_get_rec(cursor); user_rec = btr_cur_get_rec(cursor);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment