diff options
author | bell@sanja.is.com.ua <> | 2004-11-21 20:08:12 +0200 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2004-11-21 20:08:12 +0200 |
commit | 072d38eb129bcecb1afba5c5efb61bcc21e78fea (patch) | |
tree | 76a673d7a9b20f184988993cc14ce455b1d73f70 /sql/sql_class.h | |
parent | 97a19706581e1cb0fce88fd6ba3ec8ca726a69ff (diff) | |
parent | 21eb2e2eae5387aa01f8e600180a194f1f2d6a37 (diff) | |
download | mariadb-git-072d38eb129bcecb1afba5c5efb61bcc21e78fea.tar.gz |
merge
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index 1d2f3d3f62f..083f90fc93e 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -1650,7 +1650,9 @@ public: class multi_update :public select_result_interceptor { - TABLE_LIST *all_tables, *update_tables, *table_being_updated; + TABLE_LIST *all_tables; /* query/update command tables */ + TABLE_LIST *leaves; /* list of leves of join table tree */ + TABLE_LIST *update_tables, *table_being_updated; THD *thd; TABLE **tmp_tables, *main_table, *table_to_update; TMP_TABLE_PARAM *tmp_table_param; @@ -1663,8 +1665,9 @@ class multi_update :public select_result_interceptor bool do_update, trans_safe, transactional_tables, log_delayed; public: - multi_update(THD *thd_arg, TABLE_LIST *ut, List<Item> *fields, - List<Item> *values, enum_duplicates handle_duplicates); + multi_update(THD *thd_arg, TABLE_LIST *ut, TABLE_LIST *leaves_list, + List<Item> *fields, List<Item> *values, + enum_duplicates handle_duplicates); ~multi_update(); int prepare(List<Item> &list, SELECT_LEX_UNIT *u); bool send_data(List<Item> &items); |