diff options
author | unknown <igor@rurik.mysql.com> | 2003-12-11 14:55:48 -0800 |
---|---|---|
committer | unknown <igor@rurik.mysql.com> | 2003-12-11 14:55:48 -0800 |
commit | 9570d010d571d62a9cbdc9674606b1f154b4dead (patch) | |
tree | 27bbc53533e288c5402000d6358fe6b91ed1eb32 /sql/sql_class.h | |
parent | 28b1f63aa7f6ed40d68c932cfe33420c12c7347d (diff) | |
download | mariadb-git-9570d010d571d62a9cbdc9674606b1f154b4dead.tar.gz |
Many files:
Fixed a bug causing a crash for multi-update/multi-delete
with impossible where (bug #1860).
sql/sql_class.h:
Fixed a bug causing a crash for multi-update/multi-delete
with impossible where (bug #1860).
sql/sql_delete.cc:
Fixed a bug causing a crash for multi-update/multi-delete
with impossible where (bug #1860).
sql/sql_update.cc:
Fixed a bug causing a crash for multi-update/multi-delete
with impossible where (bug #1860).
mysql-test/t/multi_update.test:
Fixed a bug causing a crash for multi-update/multi-delete
with impossible where (bug #1860).
mysql-test/r/multi_update.result:
Fixed a bug causing a crash for multi-update/multi-delete
with impossible where (bug #1860).
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index 9287a0c8c79..c487e212e24 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -848,6 +848,8 @@ class multi_delete : public select_result 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); ~multi_delete(); @@ -874,6 +876,7 @@ 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, |