diff options
author | unknown <igor@rurik.mysql.com> | 2003-12-12 13:14:59 -0800 |
---|---|---|
committer | unknown <igor@rurik.mysql.com> | 2003-12-12 13:14:59 -0800 |
commit | 0a79eedb5d6dfb24640b49288b9fdb003c6b00b2 (patch) | |
tree | c73f2fa42aee245f5de9dbf9b9628c76fa1cc4db /sql/sql_class.h | |
parent | b196f0305527a393781601c0f9e5669375b584c5 (diff) | |
download | mariadb-git-0a79eedb5d6dfb24640b49288b9fdb003c6b00b2.tar.gz |
sql_delete.cc, sql_update.cc, sql_class.h:
Simplification of the previous fix for multi-update/delete.
sql/sql_class.h:
Simplification of the previous fix for multi-update/delete.
sql/sql_update.cc:
Simplification of the previous fix for multi-update/delete.
sql/sql_delete.cc:
Simplification of the previous fix for multi-update/delete.
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index c487e212e24..0d0e0d7fbc5 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -844,11 +844,10 @@ class multi_delete : public select_result TABLE_LIST *delete_tables, *table_being_deleted; Unique **tempfiles; THD *thd; - ha_rows deleted; + ha_rows deleted, found; uint num_of_tables; int error; bool do_delete, transactional_tables, log_delayed, normal_tables; - bool tempfiles_inited; public: multi_delete(THD *thd, TABLE_LIST *dt, uint num_of_tables); @@ -876,7 +875,6 @@ class multi_update : public select_result Copy_field *copy_field; enum enum_duplicates handle_duplicates; bool do_update, trans_safe, transactional_tables, log_delayed; - bool tmp_tables_inited; public: multi_update(THD *thd_arg, TABLE_LIST *ut, List<Item> *fields, |