~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Monty Taylor
  • Date: 2010-07-28 18:19:58 UTC
  • mfrom: (1669.1.3 build)
  • Revision ID: mordred@inaugust.com-20100728181958-2bcoqgb19vw0pt3b
Merged in lower case table name fix, charset null fix and null issue in
transaction_log.

Show diffs side-by-side

added added

removed removed

Lines of Context:
742
742
  {
743
743
    if (table->getShare()->getType() == message::Table::TEMPORARY)
744
744
    {
745
 
      if (identifier.compare(table->getShare()->getSchemaName(), table->getShare()->getTableName()))
 
745
      if (identifier.getKey() == table->getShare()->getCacheKey())
746
746
      {
747
747
        return true;
748
748
      }
759
759
  {
760
760
    if (table->getShare()->getType() == message::Table::TEMPORARY)
761
761
    {
762
 
      if (identifier.compare(table->getShare()->getSchemaName(), table->getShare()->getTableName()))
 
762
      if (identifier.getKey() == table->getShare()->getCacheKey())
763
763
      {
764
764
        table_proto.CopyFrom(*(table->getShare()->getTableProto()));
765
765