diff options
author | bell@sanja.is.com.ua <> | 2002-09-03 09:50:36 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2002-09-03 09:50:36 +0300 |
commit | b07aaeb2956cd93e5cc31568523e0e9fec8e74c0 (patch) | |
tree | 80af274b045962ab1f5805301ffc1dfa15a21b96 /sql/sql_update.cc | |
parent | 189d1dd630676a2e3be004d27770ae820e81b36b (diff) | |
download | mariadb-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.cc | 3 |
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"); |