summaryrefslogtreecommitdiff
path: root/sql/sql_update.cc
diff options
context:
space:
mode:
authorbell@sanja.is.com.ua <>2002-09-03 09:50:36 +0300
committerbell@sanja.is.com.ua <>2002-09-03 09:50:36 +0300
commitb07aaeb2956cd93e5cc31568523e0e9fec8e74c0 (patch)
tree80af274b045962ab1f5805301ffc1dfa15a21b96 /sql/sql_update.cc
parent189d1dd630676a2e3be004d27770ae820e81b36b (diff)
downloadmariadb-git-b07aaeb2956cd93e5cc31568523e0e9fec8e74c0.tar.gz
subselect with union
new error handling Item_ref bug fixed
Diffstat (limited to 'sql/sql_update.cc')
-rw-r--r--sql/sql_update.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/sql_update.cc b/sql/sql_update.cc
index 51453f955e8..9ea8f725947 100644
--- a/sql/sql_update.cc
+++ b/sql/sql_update.cc
@@ -642,6 +642,8 @@ bool multi_update::send_data(List<Item> &values)
void multi_update::send_error(uint errcode,const char *err)
{
+
+ //TODO error should be sent at the query processing end
/* First send error what ever it is ... */
::send_error(&thd->net,errcode,err);
@@ -766,6 +768,7 @@ bool multi_update::send_eof()
if (error == -1)
error = 0;
thd->proc_info="end";
+ //TODO error should be sent at the query processing end
if (error)
send_error(error,"An error occured in multi-table update");