~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/info_schema_table.cc

  • Committer: Eric Day
  • Date: 2009-10-31 21:53:33 UTC
  • mfrom: (1200 staging)
  • mto: This revision was merged to the branch mainline in revision 1202.
  • Revision ID: eday@oddments.org-20091031215333-j94bjoanwmi68p6f
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
123
123
 
124
124
}
125
125
 
 
126
void plugin::InfoSchemaTable::getTableNames(set<string>& tables_names)
 
127
{
 
128
  for (vector<plugin::InfoSchemaTable *>::iterator iter= all_schema_tables.begin();
 
129
       iter != all_schema_tables.end();
 
130
       iter++)
 
131
  {
 
132
    if ((*iter)->isHidden() == false)
 
133
      tables_names.insert((*iter)->getTableName().c_str());
 
134
  }
 
135
}
126
136
 
127
137
int plugin::InfoSchemaTable::addTableToList(Session *session,
128
138
                                     vector<LEX_STRING*> &files,