Commit 49cd74f1 authored by unknown's avatar unknown

Merge work:/my/mysql into tik.mysql.fi:/home/my/mysql


Docs/manual.texi:
  Auto merged
parents f6939dfa 4a3c8e4e
...@@ -45672,7 +45672,7 @@ users use this code as the rest of the code and because of this we are ...@@ -45672,7 +45672,7 @@ users use this code as the rest of the code and because of this we are
not yet 100% confident in this code. not yet 100% confident in this code.
@menu @menu
* News-3.23.41:: * News-3.23.41:: Changes in release 3.23.41
* News-3.23.40:: Changes in release 3.23.40 * News-3.23.40:: Changes in release 3.23.40
* News-3.23.39:: Changes in release 3.23.39 * News-3.23.39:: Changes in release 3.23.39
* News-3.23.38:: Changes in release 3.23.38 * News-3.23.38:: Changes in release 3.23.38
...@@ -45723,6 +45723,9 @@ not yet 100% confident in this code. ...@@ -45723,6 +45723,9 @@ not yet 100% confident in this code.
@item @item
Fixed optimizing bug in @code{ORDER BY} where some @code{ORDER BY} parts Fixed optimizing bug in @code{ORDER BY} where some @code{ORDER BY} parts
where wrongly removed. where wrongly removed.
@item
Fixed bug in @code{SELECT DISTINCT ... HAVING} that casued error message
@code{Can't find record in '#...}
@end itemize @end itemize
@node News-3.23.40, News-3.23.39, News-3.23.41, News-3.23.x @node News-3.23.40, News-3.23.39, News-3.23.41, News-3.23.x
...@@ -5425,6 +5425,7 @@ static int remove_dup_with_compare(THD *thd, TABLE *table, Field **first_field, ...@@ -5425,6 +5425,7 @@ static int remove_dup_with_compare(THD *thd, TABLE *table, Field **first_field,
{ {
if ((error=file->delete_row(record))) if ((error=file->delete_row(record)))
goto err; goto err;
error=file->rnd_next(record);
continue; continue;
} }
if (copy_blobs(first_field)) if (copy_blobs(first_field))
......
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