~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Brian Aker
  • Date: 2011-01-16 19:48:25 UTC
  • mto: (2088.1.3 merge)
  • mto: This revision was merged to the branch mainline in revision 2089.
  • Revision ID: brian@gir-3-20110116194825-vf4j6eowqyg5p214
Merge in schema identifier.

Show diffs side-by-side

added added

removed removed

Lines of Context:
517
517
}
518
518
 
519
519
 
520
 
void Open_tables_state::doGetTableNames(const SchemaIdentifier &schema_identifier,
 
520
void Open_tables_state::doGetTableNames(const identifier::Schema &schema_identifier,
521
521
                                        std::set<std::string>& set_of_names)
522
522
{
523
523
  for (Table *table= getTemporaryTables() ; table ; table= table->getNext())
530
530
}
531
531
 
532
532
void Open_tables_state::doGetTableNames(CachedDirectory &,
533
 
                                        const SchemaIdentifier &schema_identifier,
 
533
                                        const identifier::Schema &schema_identifier,
534
534
                                        std::set<std::string> &set_of_names)
535
535
{
536
536
  doGetTableNames(schema_identifier, set_of_names);
537
537
}
538
538
 
539
 
void Open_tables_state::doGetTableIdentifiers(const SchemaIdentifier &schema_identifier,
 
539
void Open_tables_state::doGetTableIdentifiers(const identifier::Schema &schema_identifier,
540
540
                                              TableIdentifier::vector &set_of_identifiers)
541
541
{
542
542
  for (Table *table= getTemporaryTables() ; table ; table= table->getNext())
551
551
}
552
552
 
553
553
void Open_tables_state::doGetTableIdentifiers(CachedDirectory &,
554
 
                                              const SchemaIdentifier &schema_identifier,
 
554
                                              const identifier::Schema &schema_identifier,
555
555
                                              TableIdentifier::vector &set_of_identifiers)
556
556
{
557
557
  doGetTableIdentifiers(schema_identifier, set_of_identifiers);