~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Brian Aker
  • Date: 2011-10-19 19:30:54 UTC
  • mto: This revision was merged to the branch mainline in revision 2444.
  • Revision ID: brian@tangent.org-20111019193054-pxnb4hflrmbfhmbm
Fix level_t to be more inline with syslog

Show diffs side-by-side

added added

removed removed

Lines of Context:
3723
3723
    table= field->getTable();
3724
3724
 
3725
3725
    if (field == table->next_number_field)
 
3726
    {
3726
3727
      table->auto_increment_field_not_null= true;
 
3728
    }
3727
3729
 
3728
3730
    if (value->save_in_field(field, 0) < 0)
3729
3731
    {
3754
3756
void kill_drizzle(void)
3755
3757
{
3756
3758
  pthread_kill(signal_thread, SIGTERM);
3757
 
  shutdown_in_progress= 1;                      // Safety if kill didn't work
 
3759
  shutdown_in_progress= true;                   // Safety if kill didn't work
3758
3760
}
3759
3761
 
3760
3762
} /* namespace drizzled */