~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Mark Atwood
  • Date: 2011-08-13 14:57:16 UTC
  • mfrom: (2385.3.6 rf)
  • Revision ID: me@mark.atwood.name-20110813145716-u4om752lt4gdpfc7
mergeĀ lp:~olafvdspek/drizzle/refactor6

Show diffs side-by-side

added added

removed removed

Lines of Context:
199
199
  }
200
200
 
201
201
  drizzle_system_variables& variables; /**< Mutable local variables local to the session */
202
 
  enum_tx_isolation getTxIsolation();
 
202
  enum_tx_isolation getTxIsolation() const;
203
203
  system_status_var& status_var;
204
204
 
205
205
  THR_LOCK_INFO lock_info; /**< Locking information for this session */
1107
1107
    pointer to plugin::StorageEngine
1108
1108
  */
1109
1109
  plugin::StorageEngine *getDefaultStorageEngine();
1110
 
  void get_xid(DrizzleXid *xid); // Innodb only
 
1110
  void get_xid(DrizzleXid *xid) const; // Innodb only
1111
1111
 
1112
1112
  table::Singular& getInstanceTable();
1113
1113
  table::Singular& getInstanceTable(std::list<CreateField>&);