Commit 10f86945 authored by unknown's avatar unknown

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


innobase/row/row0sel.c:
  Fixed a typo in the fix to consistent read through a secondary index
parent a9d2e5dd
......@@ -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