~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.cc

  • Committer: Brian Aker
  • Date: 2010-11-08 05:00:04 UTC
  • mto: (1921.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 1916.
  • Revision ID: brian@tangent.org-20101108050004-l50ikx9zdtcq1e5a
First pass through the global lock refactor merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
170
170
  first_successful_insert_id_in_prev_stmt(0),
171
171
  first_successful_insert_id_in_cur_stmt(0),
172
172
  limit_found_rows(0),
173
 
  global_read_lock(0),
 
173
  _global_read_lock(NONE),
174
174
  some_tables_deleted(false),
175
175
  no_errors(false),
176
176
  password(false),
358
358
  close_temporary_tables();
359
359
 
360
360
  if (global_read_lock)
361
 
    unlock_global_read_lock(this);
 
361
  {
 
362
    unlockGlobalReadLock();
 
363
  }
362
364
 
363
365
  cleanup_done= true;
364
366
}