~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_insert.cc

  • Committer: Brian Aker
  • Date: 2010-10-25 21:20:33 UTC
  • mto: This revision was merged to the branch mainline in revision 1879.
  • Revision ID: brian@tangent.org-20101025212033-9b6ll0yaibrba5p0
Stick to static cast.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1603
1603
 
1604
1604
        if (create_table->table)
1605
1605
        {
1606
 
          table::Concurrent *concurrent_table= dynamic_cast<table::Concurrent *>(create_table->table);
 
1606
          table::Concurrent *concurrent_table= static_cast<table::Concurrent *>(create_table->table);
1607
1607
 
1608
1608
          if (concurrent_table->reopen_name_locked_table(create_table, session))
1609
1609
          {