~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.cc

  • Committer: Brian Aker
  • Date: 2009-08-15 00:59:30 UTC
  • mfrom: (1115.1.7 merge)
  • Revision ID: brian@gaz-20090815005930-q47yenjrq1esiwsz
Merge of Trond + Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
1983
1983
  return discard_or_import_tablespace(discard);
1984
1984
}
1985
1985
 
1986
 
 
1987
 
/**
1988
 
  Prepare for alter: public interface.
1989
 
 
1990
 
  Called to prepare an *online* ALTER.
1991
 
 
1992
 
  @sa handler::prepare_for_alter()
1993
 
*/
1994
 
 
1995
 
void
1996
 
handler::ha_prepare_for_alter()
1997
 
{
1998
 
  mark_trx_read_write();
1999
 
 
2000
 
  prepare_for_alter();
2001
 
}
2002
 
 
2003
1986
/**
2004
1987
  Drop table in the engine: public interface.
2005
1988