Commit 836cacbc authored by unknown's avatar unknown

row0sel.c Fix a bug in consistent read through secondary key


innobase/row/row0sel.c:
  Fix a bug in consistent read through secondary key
parent b187dda8
......@@ -2700,8 +2700,10 @@ row_search_for_mysql(
goto next_rec;
}
rec = clust_rec;
if (prebuilt->need_to_access_clustered) {
rec = clust_rec;
}
}
/* We found a qualifying row */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment