~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/index_parts.cc

  • Committer: Siddharth Prakash Singh
  • Date: 2010-03-26 19:25:23 UTC
  • mfrom: (1410 drizzle)
  • mto: This revision was merged to the branch mainline in revision 1425.
  • Revision ID: spsneo@spsneo-laptop-20100326192523-ibjlbt1p692vobtj
merging with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
  index_part_iterator(0),
47
47
  is_index_part_primed(false)
48
48
{
49
 
  Session *session= current_session;
50
 
  drizzled::statement::Select *select= static_cast<statement::Select *>(session->lex->statement);
51
 
 
52
 
  setSchemaPredicate(select->getShowSchema());
53
 
  setTablePredicate(select->getShowTable());
54
49
}
55
50
 
56
51