~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/show_dictionary/show_temporary_tables.cc

  • Committer: Brian Aker
  • Date: 2010-06-08 03:11:02 UTC
  • Revision ID: brian@gaz-20100608031102-q2bxaoxcrqgblirb
REmove current_session for heap, show temp

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
}
37
37
 
38
38
ShowTemporaryTables::Generator::Generator(Field **arg) :
39
 
  plugin::TableFunction::Generator(arg)
 
39
  plugin::TableFunction::Generator(arg),
 
40
  session(getSession())
40
41
{
41
 
  session= current_session;
42
 
  table= session->temporary_tables;
 
42
  table= session.temporary_tables;
43
43
}
44
44
 
45
45
bool ShowTemporaryTables::Generator::populate()