~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • 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:
521
521
    Both of the following container points in session will be converted to an API.
522
522
  */
523
523
 
 
524
private:
524
525
  /* container for handler's private per-connection data */
525
526
  Ha_data ha_data[MAX_HA];
 
527
public:
 
528
  void **getEngineData(const drizzled::plugin::StorageEngine *engine);
 
529
  Ha_trx_info *getEngineInfo(const drizzled::plugin::StorageEngine *engine,
 
530
                             size_t index= 0);
 
531
 
526
532
 
527
533
  /* container for replication data */
528
534
  void *replication_data;