~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/log_event.cc

  • Committer: Brian Aker
  • Date: 2008-07-12 14:15:55 UTC
  • Revision ID: brian@tangent.org-20080712141555-n3xn56jc1io3b01v
Random cleanup. Dead partition tests, pass operator in sql_plugin, mtr based
NDB. Removed dead system thread kill tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1633
1633
 
1634
1634
  if (killed_status_arg == THD::KILLED_NO_VALUE)
1635
1635
    killed_status_arg= thd_arg->killed;
 
1636
 
1636
1637
  error_code=
1637
1638
    (killed_status_arg == THD::NOT_KILLED) ?
1638
1639
    (thd_arg->is_error() ? thd_arg->main_da.sql_errno() : 0) :
1639
 
    ((thd_arg->system_thread & SYSTEM_THREAD_DELAYED_INSERT) ? 0 :
1640
 
     thd_arg->killed_errno());
 
1640
    (thd_arg->killed_errno());
1641
1641
  
1642
1642
  time(&end_time);
1643
1643
  exec_time = (ulong) (end_time  - thd_arg->start_time);