diff options
author | unknown <heikki@hundin.mysql.fi> | 2003-02-07 00:44:32 +0200 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2003-02-07 00:44:32 +0200 |
commit | 9360578afc99f0becc23efc4a5f356fd403f825c (patch) | |
tree | 3b5dec4c94c4f0cf88b4c1fa90de0c6c966c2916 /innobase/page | |
parent | 879049174d99bf24c5dfd3a37ea13caa45cbae45 (diff) | |
download | mariadb-git-9360578afc99f0becc23efc4a5f356fd403f825c.tar.gz |
page0cur.c:
Sinisas patch to InnoDB ORDER BY DESC bug, push it now so that Jani has it available
innobase/page/page0cur.c:
Sinisas patch to InnoDB ORDER BY DESC bug, push it now so that Jani has it available
Diffstat (limited to 'innobase/page')
-rw-r--r-- | innobase/page/page0cur.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/page/page0cur.c b/innobase/page/page0cur.c index 1ea6e3e3018..2042db80529 100644 --- a/innobase/page/page0cur.c +++ b/innobase/page/page0cur.c @@ -301,7 +301,7 @@ page_cur_search_with_match( /* This means current dfield is not SQL NULL, and the current rec field extends it */ - low = mid; + low_rec = mid_rec; low_matched_fields = cur_matched_fields; low_matched_bytes = cur_matched_bytes; } else { |