diff options
author | unknown <guilhem@gbichot3.local> | 2006-08-01 12:23:02 +0200 |
---|---|---|
committer | unknown <guilhem@gbichot3.local> | 2006-08-01 12:23:02 +0200 |
commit | 2457ca1cb572e900126df151cafda181cab649a5 (patch) | |
tree | 090c53e52f5898481025f0c8f0846bd08550a4b5 /sql/sql_insert.cc | |
parent | 9cb377f9bed34fbbf5db46c991a6deeffcac37e8 (diff) | |
download | mariadb-git-2457ca1cb572e900126df151cafda181cab649a5.tar.gz |
I had forgotten to delete an already disabled line of C++ code.
sql/sql_insert.cc:
I had forgotten to delete this line (it was already disabled using //;
this line was not needed because we do the empty() every time
we write to the binlog (in MYSQL_LOG::write());
t/binlog_stm_binlog.test already tests that the empty() indeed happens
for INSERT DELAYED.
Diffstat (limited to 'sql/sql_insert.cc')
-rw-r--r-- | sql/sql_insert.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sql/sql_insert.cc b/sql/sql_insert.cc index 25ed03c4051..6ea9246636e 100644 --- a/sql/sql_insert.cc +++ b/sql/sql_insert.cc @@ -2086,8 +2086,6 @@ bool delayed_insert::handle_inserts(void) thd.start_time=row->start_time; thd.query_start_used=row->query_start_used; - /* for the binlog, forget auto_increment ids generated by previous rows */ -// thd.auto_inc_intervals_in_cur_stmt_for_binlog.empty(); thd.first_successful_insert_id_in_prev_stmt= row->first_successful_insert_id_in_prev_stmt; thd.stmt_depends_on_first_successful_insert_id_in_prev_stmt= |