~mdcallag/+junk/5.1-map

« back to all changes in this revision

Viewing changes to sql/rpl_constants.h

  • Committer: msvensson at pilot
  • Date: 2007-04-24 09:11:45 UTC
  • mfrom: (2469.1.106)
  • Revision ID: sp1r-msvensson@pilot.blaudden-20070424091145-10463
Merge pilot.blaudden:/home/msvensson/mysql/my51-m-mysql_upgrade
into  pilot.blaudden:/home/msvensson/mysql/mysql-5.1-maint

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 */