~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/handler/replication_dictionary.cc

  • Committer: Mark Atwood
  • Date: 2011-05-02 23:26:54 UTC
  • mfrom: (2290.1.9 server_uuid_repl)
  • Revision ID: me@mark.atwood.name-20110502232654-hd1ufzm7o4mtrutf
mergeĀ lp:~skinny.moey/drizzle/server_uuid_repl

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
  add_field("TRANSACTION_SEGMENT_ID", plugin::TableFunction::NUMBER, 0, false);
80
80
  add_field("COMMIT_ID", plugin::TableFunction::NUMBER, 0, false);
81
81
  add_field("END_TIMESTAMP", plugin::TableFunction::NUMBER, 0, false);
 
82
  add_field("ORIGINATING_SERVER_UUID", plugin::TableFunction::STRING, 36, false);
 
83
  add_field("ORIGINATING_COMMIT_ID", plugin::TableFunction::NUMBER, 0, false);
82
84
  add_field("TRANSACTION_MESSAGE_STRING", plugin::TableFunction::STRING, transaction_message_threshold, false);
83
85
  add_field("TRANSACTION_LENGTH", plugin::TableFunction::NUMBER, 0, false);
84
86
}
110
112
  push(static_cast<uint64_t>(ret.commit_id));
111
113
 
112
114
  push(static_cast<uint64_t>(ret.end_timestamp));
 
115
 
 
116
  push(ret.originating_server_uuid);
 
117
 
 
118
  push(static_cast<uint64_t>(ret.originating_commit_id));
113
119
  
114
120
  /* Message in viewable format */
115
121
  bool result= message.ParseFromArray(ret.message, ret.message_length);