~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Brian Aker
  • Date: 2010-10-25 23:36:21 UTC
  • mto: This revision was merged to the branch mainline in revision 1879.
  • Revision ID: brian@tangent.org-20101025233621-cyh9te7mijw0al2r
Additional dynamic_cast removal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
847
847
      *prev= list->getNext();
848
848
 
849
849
      /* Close table. */
850
 
      remove_table(dynamic_cast<table::Concurrent *>(list));
 
850
      remove_table(static_cast<table::Concurrent *>(list));
851
851
    }
852
852
    else
853
853
    {
1475
1475
    next= table->getNext();
1476
1476
 
1477
1477
    my_error(ER_CANT_REOPEN_TABLE, MYF(0), table->getAlias());
1478
 
    remove_table(dynamic_cast<table::Concurrent *>(table));
 
1478
    remove_table(static_cast<table::Concurrent *>(table));
1479
1479
    error= 1;
1480
1480
  }
1481
1481
  *prev=0;