diff options
author | monty@mashka.mysql.fi <> | 2003-02-07 16:38:37 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-02-07 16:38:37 +0200 |
commit | b14b246d3893fca96d77ddf19d5a8d49e7cfa1bf (patch) | |
tree | e5a5f635842a20157ef2ed69775c40aad98631f7 /innobase | |
parent | 25de9c19b2b76ff56bfa69b99033b14262f974ff (diff) | |
parent | f68914addb4a59927cbc47c8d3a2431b5b180770 (diff) | |
download | mariadb-git-b14b246d3893fca96d77ddf19d5a8d49e7cfa1bf.tar.gz |
Merge with 4.0 to get fix for MIN/MAX
Diffstat (limited to 'innobase')
-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 { |