~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.cc

  • Committer: Brian Aker
  • Date: 2009-11-24 02:06:37 UTC
  • mfrom: (1223.1.7 push)
  • Revision ID: brian@gaz-20091124020637-9gb65vj98x1arydm
MergeĀ forĀ staging.

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
         !strcmp(field_name.str, other.field_name.str);
100
100
}
101
101
 
102
 
Open_tables_state::Open_tables_state(ulong version_arg)
 
102
Open_tables_state::Open_tables_state(uint64_t version_arg)
103
103
  :version(version_arg), backups_available(false)
104
104
{
105
105
  reset_open_tables_state();
169
169
  return (int) session->variables.tx_isolation;
170
170
}
171
171
 
172
 
extern "C"
173
 
void session_inc_row_count(Session *session)
174
 
{
175
 
  session->row_count++;
176
 
}
177
 
 
178
172
Session::Session(plugin::Client *client_arg)
179
173
  :
180
174
  Open_tables_state(refresh_version),