~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/data_dictionary_schema.cc

Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
156
156
 
157
157
  push(entry.getOffset());
158
158
  push(entry.getTypeAsString());
159
 
  push(entry.getLengthInBytes());
 
159
  push(static_cast<uint64_t>(entry.getLengthInBytes()));
160
160
 
161
161
  it++;
162
162
 
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