~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_insert.cc

  • Committer: Brian Aker
  • Date: 2011-01-11 05:13:54 UTC
  • mto: (2075.2.1 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2076.
  • Revision ID: brian@tangent.org-20110111051354-m8ba2xvtjfldrler
First pass through error correction in SE interface for drop table.

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