Commit 1b52ef61 authored by marko's avatar marko

branches/zip: ha_node_t: Enclose the field buf_block_t* block inside

#ifdef UNIV_DEBUG.  This should have been done in r1014.
parent 5f11ccfd
...@@ -158,7 +158,9 @@ ha_print_info( ...@@ -158,7 +158,9 @@ ha_print_info(
typedef struct ha_node_struct ha_node_t; typedef struct ha_node_struct ha_node_t;
struct ha_node_struct { struct ha_node_struct {
ha_node_t* next; /* next chain node or NULL if none */ ha_node_t* next; /* next chain node or NULL if none */
#ifdef UNIV_DEBUG
buf_block_t* block; /* buffer block containing the data, or NULL */ buf_block_t* block; /* buffer block containing the data, or NULL */
#endif /* UNIV_DEBUG */
void* data; /* pointer to the data */ void* data; /* pointer to the data */
ulint fold; /* fold value for the data */ ulint fold; /* fold value for the data */
}; };
......
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