summaryrefslogtreecommitdiff
path: root/innobase
diff options
context:
space:
mode:
authorheikki@donna.mysql.fi <>2001-06-07 17:32:02 +0300
committerheikki@donna.mysql.fi <>2001-06-07 17:32:02 +0300
commit624c57e26e575a5e2c579291d3cf6a7e1c22c173 (patch)
tree8c140dc94516c92852040c1612c2785960923b87 /innobase
parentb79da88808a4e96cacb6e959f3d1410769035db7 (diff)
downloadmariadb-git-624c57e26e575a5e2c579291d3cf6a7e1c22c173.tar.gz
page0cur.ic Fix a bug in insert buffer and multiversioning
manual.texi Changed innodb_unix_file_flush_method to innodb_flush_method in the manual
Diffstat (limited to 'innobase')
-rw-r--r--innobase/include/page0cur.ic4
1 files changed, 2 insertions, 2 deletions
diff --git a/innobase/include/page0cur.ic b/innobase/include/page0cur.ic
index 4313036adaf..39f8ab11513 100644
--- a/innobase/include/page0cur.ic
+++ b/innobase/include/page0cur.ic
@@ -171,10 +171,10 @@ page_cur_search(
ut_ad(dtuple_check_typed(tuple));
page_cur_search_with_match(page, tuple, mode,
- &low_matched_fields,
- &low_matched_bytes,
&up_matched_fields,
&up_matched_bytes,
+ &low_matched_fields,
+ &low_matched_bytes,
cursor);
return(low_matched_fields);
}