~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/base.h

  • Committer: Monty Taylor
  • Date: 2008-08-01 22:33:44 UTC
  • mto: (236.1.42 codestyle)
  • mto: This revision was merged to the branch mainline in revision 261.
  • Revision ID: monty@inaugust.com-20080801223344-vzhlflfmtijp1imv
First pass at gettexizing the error messages.

Show diffs side-by-side

added added

removed removed

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