~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/connection_id.cc

  • Committer: Brian Aker
  • Date: 2009-05-15 07:39:56 UTC
  • mto: This revision was merged to the branch mainline in revision 1021.
  • Revision ID: brian@gaz-20090515073956-zs68vor7hdg9zkyk
Remove thread_specific_used

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
{
34
34
  if (Item_int_func::fix_fields(session, ref))
35
35
    return true;
36
 
  session->thread_specific_used= true;
 
36
 
37
37
  value= session->variables.pseudo_thread_id;
 
38
 
38
39
  return false;
39
40
}
40
41