Commit ae83ddef authored by Rich Prohaska's avatar Rich Prohaska

compile when tokudb row format compression types are not defined

parent 355a0bf5
...@@ -6614,9 +6614,11 @@ void ha_tokudb::update_create_info(HA_CREATE_INFO* create_info) { ...@@ -6614,9 +6614,11 @@ void ha_tokudb::update_create_info(HA_CREATE_INFO* create_info) {
// show create table asks us to update this create_info, this makes it // show create table asks us to update this create_info, this makes it
// so we'll always show what compression type we're using // so we'll always show what compression type we're using
create_info->row_type = get_row_type(); create_info->row_type = get_row_type();
#if TOKU_INCLUDE_ROW_TYPE_COMPRESSION
if (create_info->row_type == ROW_TYPE_TOKU_ZLIB && THDVAR(ha_thd(), hide_default_row_format) != 0) { if (create_info->row_type == ROW_TYPE_TOKU_ZLIB && THDVAR(ha_thd(), hide_default_row_format) != 0) {
create_info->row_type = ROW_TYPE_DEFAULT; create_info->row_type = ROW_TYPE_DEFAULT;
} }
#endif
} }
} }
......
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