From 10f869455fde6d87fb8194a356c029b72d3ba85d Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 2 May 2001 18:05:15 +0300 Subject: 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 --- innobase/row/row0sel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'innobase/row') diff --git a/innobase/row/row0sel.c b/innobase/row/row0sel.c index 8845f9192da..36ecdce545c 100644 --- a/innobase/row/row0sel.c +++ b/innobase/row/row0sel.c @@ -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)); -- cgit v1.2.1