Below is the list of changes that have just been committed into a local
5.1 repository of kostja. When kostja does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet@stripped, 2008-01-16 16:44:07+03:00, kostja@dipika.(none) +1 -0
A minor cleanup.
sql/sql_insert.cc@stripped, 2008-01-16 16:44:04+03:00, kostja@dipika.(none) +0 -1
Remove a redundant call to my_error() -- in case of out of memory, the error
is reported already by operator new (Delayed_inserts inherits from ilink).
diff -Nrup a/sql/sql_insert.cc b/sql/sql_insert.cc
--- a/sql/sql_insert.cc 2007-12-14 16:01:11 +03:00
+++ b/sql/sql_insert.cc 2008-01-16 16:44:04 +03:00
@@ -1862,7 +1862,6 @@ bool delayed_get_table(THD *thd, TABLE_L
{
if (!(di= new Delayed_insert()))
{
- my_error(ER_OUTOFMEMORY,MYF(0),sizeof(Delayed_insert));
thd->fatal_error();
goto end_create;
}