~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/serialize/binlog_writer.cc

Changed two proto files so that we can stop skipping warnings on protobuf code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
  {
63
63
    BinaryLog::Query::Variable *var= message->add_variable();
64
64
    var->set_name(ii->first);
65
 
    var->set_value(ii->second);
 
65
    var->set_val(ii->second);
66
66
  }
67
67
 
68
68
  BinaryLog::Event event(BinaryLog::Event::QUERY, message);