diff options
author | unknown <heikki@donna.mysql.fi> | 2001-05-02 18:05:15 +0300 |
---|---|---|
committer | unknown <heikki@donna.mysql.fi> | 2001-05-02 18:05:15 +0300 |
commit | 10f869455fde6d87fb8194a356c029b72d3ba85d (patch) | |
tree | c05c454c7cd4d8a05c6af34b37b446ebff901b73 /innobase | |
parent | a9d2e5dd17fc9b3b7a8db302fdc94712b1f39d82 (diff) | |
download | mariadb-git-10f869455fde6d87fb8194a356c029b72d3ba85d.tar.gz |
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
Diffstat (limited to 'innobase')
-rw-r--r-- | innobase/row/row0sel.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)); |