~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/db0err.h

  • Committer: Monty Taylor
  • Date: 2010-11-25 01:53:19 UTC
  • mto: (1953.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1955.
  • Revision ID: mordred@inaugust.com-20101125015319-ia85msn25uemopgc
Re-enabled -Wformat and then cleaned up the carnage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
 
30
30
enum db_err {
31
 
        DB_SUCCESS_LOCKED_REC = 9,      /*!< like DB_SUCCESS, but a new
32
 
                                        explicit record lock was created */
33
31
        DB_SUCCESS = 10,
34
32
 
35
33
        /* The following are error codes */
95
93
        DB_PRIMARY_KEY_IS_NULL,         /* a column in the PRIMARY KEY
96
94
                                        was found to be NULL */
97
95
 
98
 
        DB_STATS_DO_NOT_EXIST,          /* an operation that requires the
99
 
                                        persistent storage, used for recording
100
 
                                        table and index statistics, was
101
 
                                        requested but this storage does not
102
 
                                        exist itself or the stats for a given
103
 
                                        table do not exist */
104
 
        DB_FOREIGN_EXCEED_MAX_CASCADE,  /* Foreign key constraint related
105
 
                                        cascading delete/update exceeds
106
 
                                        maximum allowed depth */
107
 
 
108
96
        /* The following are partial failure codes */
109
97
        DB_FAIL = 1000,
110
98
        DB_OVERFLOW,