~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/data_dictionary_schema.cc

  • Committer: Brian Aker
  • Date: 2010-02-18 17:24:08 UTC
  • mto: (1273.19.13 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1304.
  • Revision ID: brian@gaz-20100218172408-l224655n3lf4h6nd
Revert OSX fix, requiring more cast.

Show diffs side-by-side

added added

removed removed

Lines of Context:
199
199
 
200
200
  push(entry.getOffset());
201
201
  push(entry.getTransactionId());
202
 
  push(entry.getServerId());
 
202
  push(static_cast<uint64_t>(entry.getServerId()));
203
203
  push(entry.getStartTimestamp());
204
204
  push(entry.getEndTimestamp());
205
 
  push(entry.getNumStatements());
206
 
  push(entry.getChecksum());
 
205
  push(static_cast<uint64_t>(entry.getNumStatements()));
 
206
  push(static_cast<uint64_t>(entry.getChecksum()));
207
207
 
208
208
  it++;
209
209