for (Table *table= temporary_tables ; table ; table= table->getNext())
598
602
{
630
634
@retval -1 the table is in use by a outer query
631
635
*/
632
636
633
int Open_tables_state::drop_temporary_table(const drizzled::TableIdentifier &identifier)
637
int Open_tables_state::drop_temporary_table(const drizzled::identifier::Table &identifier)
634
638
{
635
639
Table *table;
636
640
657
661
@param session Thread context
658
662
@param find Table to remove
659
663
660
@note because we risk the chance of deleting the share, we can't assume that it will exist past, this should be modified once we can use a TableSharePtr here.
664
@note because we risk the chance of deleting the share, we can't assume that it will exist past, this should be modified once we can use a TableShare::shared_ptr here.