Commit d909ccb6 authored by unknown's avatar unknown

ha_innobase.cc Changed the error code HA_ERR_KEY_NOT_FOUND to...

ha_innobase.cc	Changed the error code HA_ERR_KEY_NOT_FOUND to HA_ERR_END_OF_INDEX in index_first to eliminate an error message


sql/ha_innobase.cc:
  Changed the error code HA_ERR_KEY_NOT_FOUND to HA_ERR_END_OF_INDEX in index_first to eliminate an error message
parent 5744a635
...@@ -1868,7 +1868,7 @@ corresponding row to buf. */ ...@@ -1868,7 +1868,7 @@ corresponding row to buf. */
int int
ha_innobase::index_first( ha_innobase::index_first(
/*=====================*/ /*=====================*/
/* out: 0, HA_ERR_KEY_NOT_FOUND, /* out: 0, HA_ERR_END_OF_FILE,
or error code */ or error code */
mysql_byte* buf) /* in/out: buffer for the row */ mysql_byte* buf) /* in/out: buffer for the row */
{ {
...@@ -1879,6 +1879,12 @@ ha_innobase::index_first( ...@@ -1879,6 +1879,12 @@ ha_innobase::index_first(
error = index_read(buf, NULL, 0, HA_READ_AFTER_KEY); error = index_read(buf, NULL, 0, HA_READ_AFTER_KEY);
/* MySQL does not seem to allow this to return HA_ERR_KEY_NOT_FOUND */
if (error == HA_ERR_KEY_NOT_FOUND) {
error = HA_ERR_END_OF_FILE;
}
DBUG_RETURN(error); DBUG_RETURN(error);
} }
......
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