~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/handler/ha_innodb.cc

  • Committer: Monty Taylor
  • Date: 2009-12-08 22:24:26 UTC
  • mto: (1241.9.9 out-of-tree)
  • mto: This revision was merged to the branch mainline in revision 1250.
  • Revision ID: mordred@inaugust.com-20091208222426-rtv7e9vrvw5g8h1s
Removed some casts- also removed a few c-interface functions and made them actual methods on session. Also made the ha_data private. (fancy that)

Show diffs side-by-side

added added

removed removed

Lines of Context:
748
748
/*=======*/
749
749
        Session*        session)        /*!< in: Drizzle Session */
750
750
{
751
 
        return(*(trx_t**) session_ha_data(session, innodb_engine_ptr));
 
751
        return *(trx_t**) session->getEngineData(innodb_engine_ptr);
752
752
}
753
753
 
754
754
/********************************************************************//**