~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Olaf van der Spek
  • Date: 2011-08-12 16:41:20 UTC
  • mto: This revision was merged to the branch mainline in revision 2398.
  • Revision ID: olafvdspek@gmail.com-20110812164120-uu21idtt9a9sa92e
cppcheck

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>&);