~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.cc

  • Committer: Monty Taylor
  • Date: 2009-05-24 18:17:38 UTC
  • mto: This revision was merged to the branch mainline in revision 1039.
  • Revision ID: mordred@inaugust.com-20090524181738-01rwzxpwrqe92erb
Fixed some no-inline warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
987
987
/****************************************************************************
988
988
** General handler functions
989
989
****************************************************************************/
 
990
handler::~handler(void)
 
991
{
 
992
  assert(locked == false);
 
993
  /* TODO: assert(inited == NONE); */
 
994
}
 
995
 
 
996
 
990
997
handler *handler::clone(MEM_ROOT *mem_root)
991
998
{
992
999
  handler *new_handler= get_new_handler(table->s, mem_root, table->s->db_type());