~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_insert.cc

  • Committer: Lee Bieber
  • Date: 2011-01-12 04:30:24 UTC
  • mfrom: (2075.1.3 build)
  • Revision ID: kalebral@gmail.com-20110112043024-zgws6jzd54oym9um
Merge Brian - fix bug 527084 - DROP TABLE: getTableDefiniton returns EEXIST but doDropTable returns ENOENT leads to SIGSEGV
Merge Shrews - fix bug 686781 - Transaction message segmenting does not work in all cases 
Merge Stewart - fix bug 376299: sum_distinct-big test fails after resetting max_heap_table_size

Show diffs side-by-side

added added

removed removed

Lines of Context:
1606
1606
 
1607
1607
          if (concurrent_table->reopen_name_locked_table(create_table, session))
1608
1608
          {
1609
 
            plugin::StorageEngine::dropTable(*session, identifier);
 
1609
            (void)plugin::StorageEngine::dropTable(*session, identifier);
1610
1610
          }
1611
1611
          else
1612
1612
          {
1615
1615
        }
1616
1616
        else
1617
1617
        {
1618
 
          plugin::StorageEngine::dropTable(*session, identifier);
 
1618
          (void)plugin::StorageEngine::dropTable(*session, identifier);
1619
1619
        }
1620
1620
      }
1621
1621
      else