~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Monty Taylor
  • Date: 2009-03-24 17:44:41 UTC
  • mto: (960.5.2 mordred)
  • mto: This revision was merged to the branch mainline in revision 964.
  • Revision ID: mordred@inaugust.com-20090324174441-nmsq0gwjlgf7f0mt
Changed handlerton to StorageEngine.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1387
1387
 
1388
1388
void close_temporary(Table *table, bool free_share, bool delete_table)
1389
1389
{
1390
 
  handlerton *table_type= table->s->db_type();
 
1390
  StorageEngine *table_type= table->s->db_type();
1391
1391
 
1392
1392
  free_io_cache(table);
1393
1393
  table->closefrm(false);
1534
1534
    close_temporary_table(session, table, 1, 1);
1535
1535
  else
1536
1536
  {
1537
 
    handlerton *table_type= table->s->db_type();
 
1537
    StorageEngine *table_type= table->s->db_type();
1538
1538
    pthread_mutex_lock(&LOCK_open);
1539
1539
    /*
1540
1540
      unlink_open_table() also tells threads waiting for refresh or close
3573
3573
}
3574
3574
 
3575
3575
 
3576
 
bool rm_temporary_table(handlerton *base, char *path)
 
3576
bool rm_temporary_table(StorageEngine *base, char *path)
3577
3577
{
3578
3578
  bool error=0;
3579
3579
  handler *file;