diff options
author | heikki@donna.mysql.fi <> | 2001-05-02 18:05:15 +0300 |
---|---|---|
committer | heikki@donna.mysql.fi <> | 2001-05-02 18:05:15 +0300 |
commit | 7eb3c45757391026d7ea692398af31a4424a5966 (patch) | |
tree | c05c454c7cd4d8a05c6af34b37b446ebff901b73 /innobase | |
parent | 8dba7dc06ae965a74d4db8e18d2ce23134bb2c8f (diff) | |
download | mariadb-git-7eb3c45757391026d7ea692398af31a4424a5966.tar.gz |
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)); |