Commit bdc4fa6e authored by unknown's avatar unknown

syntax error fixed

parent 2d3e0ac7
...@@ -713,8 +713,9 @@ rec_offs_validate( ...@@ -713,8 +713,9 @@ rec_offs_validate(
} }
} }
if (index) { if (index) {
ulint max_n_fields;
ut_ad((ulint) index == offsets[2]); ut_ad((ulint) index == offsets[2]);
ulint max_n_fields = ut_max( max_n_fields = ut_max(
dict_index_get_n_fields(index), dict_index_get_n_fields(index),
dict_index_get_n_unique_in_tree(index) + 1); dict_index_get_n_unique_in_tree(index) + 1);
if (comp && rec) { if (comp && rec) {
......
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