~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Brian Aker
  • Date: 2010-06-20 01:19:18 UTC
  • mto: (1627.2.6 build)
  • mto: This revision was merged to the branch mainline in revision 1629.
  • Revision ID: brian@gir-2.local-20100620011918-42bp2e5zr22alin6
Modify TableIdentifier to be const

Show diffs side-by-side

added added

removed removed

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