~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/base.h

  • Committer: Monty Taylor
  • Date: 2008-08-02 01:24:51 UTC
  • mfrom: (202.3.14 gettextize)
  • mto: This revision was merged to the branch mainline in revision 261.
  • Revision ID: monty@inaugust.com-20080802012451-nmql6eujc8wc8ogh
Merged in gettextize changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
409
409
#define HA_ERR_TABLESPACE_EXIST   171
410
410
#define HA_ERR_CORRUPT_EVENT      172    /* The event was corrupt, leading to
411
411
                                            illegal data being read */
412
 
#define HA_ERR_NEW_FILE           172    /* New file format */
413
 
#define HA_ERR_ROWS_EVENT_APPLY   173    /* The event could not be processed
 
412
#define HA_ERR_NEW_FILE           173    /* New file format */
 
413
#define HA_ERR_ROWS_EVENT_APPLY   174    /* The event could not be processed
414
414
                                            no other hanlder error happened */
415
 
#define HA_ERR_INITIALIZATION     174    /* Error during initialization */
416
 
#define HA_ERR_FILE_TOO_SHORT     175    /* File too short */
417
 
#define HA_ERR_WRONG_CRC          176    /* Wrong CRC on page */
418
 
#define HA_ERR_LOCK_OR_ACTIVE_TRANSACTION 177
419
 
#define HA_ERR_NO_SUCH_TABLESPACE 178
420
 
#define HA_ERR_TABLESPACE_NOT_EMPTY 179
421
 
#define HA_ERR_LAST               179    /* Copy of last error nr */
 
415
#define HA_ERR_INITIALIZATION     175    /* Error during initialization */
 
416
#define HA_ERR_FILE_TOO_SHORT     176    /* File too short */
 
417
#define HA_ERR_WRONG_CRC          177    /* Wrong CRC on page */
 
418
#define HA_ERR_LOCK_OR_ACTIVE_TRANSACTION 178
 
419
#define HA_ERR_NO_SUCH_TABLESPACE 179
 
420
#define HA_ERR_TABLESPACE_NOT_EMPTY 180
 
421
#define HA_ERR_LAST               180    /* Copy of last error nr */
422
422
 
423
423
/* Number of different errors */
424
424
#define HA_ERR_ERRORS            (HA_ERR_LAST - HA_ERR_FIRST + 1)