Loading sql/sql_class.h +5 −3 Original line number Diff line number Diff line Loading @@ -603,12 +603,14 @@ class Unique :public Sql_alloc byte * dup_checking; THD *thd; ha_rows deleted; int num_of_tables, error; uint num_of_tables; int error; thr_lock_type lock_option; bool do_delete; public: multi_delete(TABLE_LIST *dt, thr_lock_type o, uint n) : delete_tables (dt), lock_option(o), deleted(0), num_of_tables(n), error(0) multi_delete(TABLE_LIST *dt, thr_lock_type lock_option_arg, uint n) : delete_tables (dt), deleted(0), num_of_tables(n), error(0), lock_option(lock_option_arg) { thd = current_thd; do_delete = false; } Loading sql/sql_delete.cc +2 −1 Original line number Diff line number Diff line Loading @@ -809,7 +809,8 @@ int multi_delete::do_deletes (bool from_send_error) #ifdef SINISAS_STRIP delete select; #endif if (error = -1) error = 0; if (error == -1) error = 0; #if 0 } #endif Loading Loading
sql/sql_class.h +5 −3 Original line number Diff line number Diff line Loading @@ -603,12 +603,14 @@ class Unique :public Sql_alloc byte * dup_checking; THD *thd; ha_rows deleted; int num_of_tables, error; uint num_of_tables; int error; thr_lock_type lock_option; bool do_delete; public: multi_delete(TABLE_LIST *dt, thr_lock_type o, uint n) : delete_tables (dt), lock_option(o), deleted(0), num_of_tables(n), error(0) multi_delete(TABLE_LIST *dt, thr_lock_type lock_option_arg, uint n) : delete_tables (dt), deleted(0), num_of_tables(n), error(0), lock_option(lock_option_arg) { thd = current_thd; do_delete = false; } Loading
sql/sql_delete.cc +2 −1 Original line number Diff line number Diff line Loading @@ -809,7 +809,8 @@ int multi_delete::do_deletes (bool from_send_error) #ifdef SINISAS_STRIP delete select; #endif if (error = -1) error = 0; if (error == -1) error = 0; #if 0 } #endif Loading