~linuxjedi/drizzle/elliott-password-bugs

« back to all changes in this revision

Viewing changes to drizzled/message/event.proto

  • Committer: lbieber at stabletransit
  • Date: 2010-10-11 17:56:42 UTC
  • mfrom: (1838.1.2 build)
  • Revision ID: lbieber@drizzle-build-n02.wc1.dfw1.stabletransit.com-20101011175642-mmdeyo76k2kdjmt3
Merge Shrews - Fix bug 656971: Replication stream should send server events 
Merge Andrew - Fix bug 655954: Drizzledump conversion of '0000-00-00' date values to NULL can be problematic on NOT NULL columns

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  Represents events on the server
 
3
*/
 
4
package drizzled.message;
 
5
option optimize_for = SPEED;
 
6
 
 
7
option java_package = "org.drizzle.messages";
 
8
option java_outer_classname = "EventMessage";
 
9
 
 
10
 
 
11
/*
 
12
 * An Event message can represent any Drizzle related action that
 
13
 * a replication stream reader may be interested in, such as starting
 
14
 * up or shutting down Drizzle.
 
15
 */
 
16
message Event
 
17
{
 
18
  enum Type
 
19
  {
 
20
    STARTUP = 0;         /* Drizzle startup */
 
21
    SHUTDOWN = 1;        /* Normal Drizzle shutdown */
 
22
  }
 
23
 
 
24
  required Type type = 1;
 
25
}