~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.cc

  • 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:
381
381
  }
382
382
}
383
383
 
384
 
void Session::get_xid(DrizzleXid *xid)
 
384
void Session::get_xid(DrizzleXid *xid) const
385
385
{
386
386
  *xid = *(DrizzleXid *) &transaction.xid_state.xid;
387
387
}
1954
1954
  return variables.storage_engine ? variables.storage_engine : global_system_variables.storage_engine;
1955
1955
}
1956
1956
 
1957
 
enum_tx_isolation Session::getTxIsolation()
 
1957
enum_tx_isolation Session::getTxIsolation() const
1958
1958
{
1959
1959
  return (enum_tx_isolation)variables.tx_isolation;
1960
1960
}