~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Monty Taylor
  • Date: 2010-06-20 03:22:53 UTC
  • mfrom: (1618.1.1 drizzle)
  • mto: This revision was merged to the branch mainline in revision 1629.
  • Revision ID: mordred@inaugust.com-20100620032253-dyee0nb0195lnakd
Merged in constification of TableIdentifier from Brian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
644
644
  doGetTableIdentifiers(schema_identifier, set_of_identifiers);
645
645
}
646
646
 
647
 
bool Session::doDoesTableExist(TableIdentifier &identifier)
 
647
bool Session::doDoesTableExist(const TableIdentifier &identifier)
648
648
{
649
649
  for (Table *table= temporary_tables ; table ; table= table->getNext())
650
650
  {
660
660
  return false;
661
661
}
662
662
 
663
 
int Session::doGetTableDefinition(TableIdentifier &identifier,
 
663
int Session::doGetTableDefinition(const TableIdentifier &identifier,
664
664
                                  message::Table &table_proto)
665
665
{
666
666
  for (Table *table= temporary_tables ; table ; table= table->getNext())