~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/serialize/binary_log.proto

  • Committer: Monty Taylor
  • Date: 2009-01-09 07:02:24 UTC
  • mto: (779.1.2 devel)
  • mto: This revision was merged to the branch mainline in revision 784.
  • Revision ID: mordred@inaugust.com-20090109070224-prwl5p52mfql3zfw
Split out readline.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
package BinaryLog;
2
 
option optimize_for = SPEED;
3
2
 
4
3
// Design goals:
5
4
 
31
30
  // Assignments to variables that are part of the query
32
31
  message Variable {
33
32
    required string name = 1;
34
 
    required string val = 2;
 
33
    required string value = 2;
35
34
    // Character set?
36
35
  }
37
36