~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_class.h

  • Committer: Monty Taylor
  • Date: 2008-10-13 09:29:43 UTC
  • mfrom: (509 drizzle)
  • mto: (509.1.4 codestyle)
  • mto: This revision was merged to the branch mainline in revision 511.
  • Revision ID: monty@inaugust.com-20081013092943-rwvx4a6d85b5l2dh
MergedĀ inĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1400
1400
    it returned an error on master, and this is OK on the slave.
1401
1401
  */
1402
1402
  bool       is_slave_error;
1403
 
  bool       bootstrap, cleanup_done;
 
1403
  bool       cleanup_done;
1404
1404
  
1405
1405
  /**  is set if some thread specific value(s) used in a statement. */
1406
1406
  bool       thread_specific_used;
1407
1407
  bool       charset_is_system_charset, charset_is_collation_connection;
1408
1408
  bool       charset_is_character_set_filesystem;
1409
 
  bool       enable_slow_log;   /* enable slow log for current statement */
1410
1409
  bool       abort_on_warning;
1411
1410
  bool       got_warning;       /* Set on call to push_warning() */
1412
1411
  bool       no_warnings_for_error; /* no warnings on call to my_error() */
1521
1520
    safe_mutex_assert_owner(mutex);
1522
1521
    mysys_var->current_mutex = mutex;
1523
1522
    mysys_var->current_cond = cond;
1524
 
    thd_proc_info(this, msg);
 
1523
    this->set_proc_info(msg);
1525
1524
    return old_msg;
1526
1525
  }
1527
1526
  inline void exit_cond(const char* old_msg)
1536
1535
    pthread_mutex_lock(&mysys_var->mutex);
1537
1536
    mysys_var->current_mutex = 0;
1538
1537
    mysys_var->current_cond = 0;
1539
 
    thd_proc_info(this, old_msg);
 
1538
    this->set_proc_info(old_msg);
1540
1539
    pthread_mutex_unlock(&mysys_var->mutex);
1541
1540
  }
1542
1541
  inline time_t query_start() { query_start_used=1; return start_time; }