Commit 7eb3c457 authored by heikki@donna.mysql.fi's avatar heikki@donna.mysql.fi

row0sel.c Fixed a typo in the fix to consistent read through a secondary index

parent 8dba7dc0
......@@ -70,7 +70,7 @@ row_sel_sec_rec_is_for_clust_rec(
n = dict_index_get_n_ordering_defined_by_user(sec_index);
for (i = 0; i++; i < n) {
for (i = 0; i < n; i++) {
col = dict_field_get_col(
dict_index_get_nth_field(sec_index, i));
......
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