~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/index_parts.cc

  • Committer: Eric Day
  • Date: 2010-03-25 19:28:37 UTC
  • mfrom: (1405 staging)
  • mto: This revision was merged to the branch mainline in revision 1409.
  • Revision ID: eday@oddments.org-20100325192837-4exmacbrywjovsqp
Merged trunk, rsolved conflicts.

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