diff options
author | monty@mysql.com <> | 2003-12-14 08:12:07 -0500 |
---|---|---|
committer | monty@mysql.com <> | 2003-12-14 08:12:07 -0500 |
commit | 427ce41c3c29edc5fa357bf342b369e0a0611b98 (patch) | |
tree | 0f5990bf9abb2973ecd5da83d8132c2fab612787 /sql/sql_update.cc | |
parent | d47deebb58804e2323d3861d0cf4d68f5cfea04f (diff) | |
download | mariadb-git-427ce41c3c29edc5fa357bf342b369e0a0611b98.tar.gz |
Fixed bug in last push found by valgrind
Diffstat (limited to 'sql/sql_update.cc')
-rw-r--r-- | sql/sql_update.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_update.cc b/sql/sql_update.cc index 36ceef23740..27b498d350f 100644 --- a/sql/sql_update.cc +++ b/sql/sql_update.cc @@ -440,7 +440,7 @@ multi_update::multi_update(THD *thd_arg, TABLE_LIST *table_list, :all_tables(table_list), update_tables(0), thd(thd_arg), tmp_tables(0), updated(0), found(0), fields(field_list), values(value_list), table_count(0), copy_field(0), handle_duplicates(handle_duplicates_arg), - do_update(1), trans_safe(0) + do_update(1), trans_safe(0), transactional_tables(1) {} |