~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_delete.cc

  • Committer: Brian Aker
  • Date: 2009-10-07 21:45:49 UTC
  • Revision ID: brian@gaz-20091007214549-nsf3usp3ppqeo1xq
Update to delete table to centralize the replication logic.

Show diffs side-by-side

added added

removed removed

Lines of Context:
460
460
        TRUNCATE must always be statement-based binlogged (not row-based) so
461
461
        we don't test current_stmt_binlog_row_based.
462
462
      */
463
 
      write_bin_log(session, true, session->query, session->query_length);
 
463
      write_bin_log(session, session->query, session->query_length);
464
464
      session->my_ok();         // This should return record count
465
465
    }
466
466
    pthread_mutex_lock(&LOCK_open); /* For truncate delete from hash when finished */