~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/rpl_constants.h

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef RPL_CONSTANTS_H
 
2
#define RPL_CONSTANTS_H
 
3
 
 
4
/**
 
5
   Enumeration of the incidents that can occur for the server.
 
6
 */
 
7
enum Incident {
 
8
  /** No incident */
 
9
  INCIDENT_NONE,
 
10
 
 
11
  /** There are possibly lost events in the replication stream */
 
12
  INCIDENT_LOST_EVENTS,
 
13
 
 
14
  /** Shall be last event of the enumeration */
 
15
  INCIDENT_COUNT
 
16
};
 
17
 
 
18
#endif /* RPL_CONSTANTS_H */