Commit 95e1c074 authored by unknown's avatar unknown

Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-4.0

into gw.mysql.r18.ru:/usr/home/ram/work/4.0.b5733


sql/records.cc:
  Auto merged
parents 4d93bb95 dc3f3ce6
...@@ -50,3 +50,14 @@ select count(*) from t1; ...@@ -50,3 +50,14 @@ select count(*) from t1;
count(*) count(*)
0 0
drop table t1; drop table t1;
create table t1 (a int not null auto_increment primary key, b char(32));
insert into t1 (b) values ('apple'), ('apple');
select * from t1;
a b
1 apple
2 apple
delete t1 from t1, t1 as t2 where t1.b = t2.b and t1.a > t2.a;
select * from t1;
a b
1 apple
drop table t1;
...@@ -61,3 +61,13 @@ select count(*) from t1; ...@@ -61,3 +61,13 @@ select count(*) from t1;
drop table t1; drop table t1;
#
# Bug #5733: Table handler error with self-join multi-table DELETE
#
create table t1 (a int not null auto_increment primary key, b char(32));
insert into t1 (b) values ('apple'), ('apple');
select * from t1;
delete t1 from t1, t1 as t2 where t1.b = t2.b and t1.a > t2.a;
select * from t1;
drop table t1;
...@@ -131,17 +131,26 @@ void end_read_record(READ_RECORD *info) ...@@ -131,17 +131,26 @@ void end_read_record(READ_RECORD *info)
static int rr_quick(READ_RECORD *info) static int rr_quick(READ_RECORD *info)
{ {
int tmp=info->select->quick->get_next(); int tmp;
if (tmp) while ((tmp= info->select->quick->get_next()))
{ {
if (tmp == HA_ERR_END_OF_FILE) if (info->thd->killed)
tmp= -1;
else
{ {
if (info->print_error) my_error(ER_SERVER_SHUTDOWN, MYF(0));
info->file->print_error(tmp,MYF(0)); return 1;
if (tmp < 0) // Fix negative BDB errno }
tmp=1; if (tmp != HA_ERR_RECORD_DELETED)
{
if (tmp == HA_ERR_END_OF_FILE)
tmp= -1;
else
{
if (info->print_error)
info->file->print_error(tmp,MYF(0));
if (tmp < 0) // Fix negative BDB errno
tmp=1;
}
break;
} }
} }
return tmp; return tmp;
......
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