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

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

parent 8dba7dc0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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));