diff options
Diffstat (limited to 'include/my_base.h')
-rw-r--r-- | include/my_base.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/include/my_base.h b/include/my_base.h index 1317639c528..af053369f93 100644 --- a/include/my_base.h +++ b/include/my_base.h @@ -499,7 +499,18 @@ enum ha_base_keytype { #define HA_ERR_FTS_TOO_MANY_WORDS_IN_PHRASE 191 /* Too many words in a phrase */ #define HA_ERR_DECRYPTION_FAILED 192 /* Table encrypted but decypt failed */ -#define HA_ERR_LAST 192 /* Copy of last error nr */ +#define HA_ERR_FK_DEPTH_EXCEEDED 193 /* FK cascade depth exceeded */ +#define HA_MISSING_CREATE_OPTION 194 /* Option Missing during Create */ +#define HA_ERR_SE_OUT_OF_MEMORY 195 /* Out of memory in storage engine */ +#define HA_ERR_TABLE_CORRUPT 196 /* Table/Clustered index is corrupted. */ +#define HA_ERR_QUERY_INTERRUPTED 197 /* The query was interrupted */ +#define HA_ERR_TABLESPACE_MISSING 198 /* Missing Tablespace */ +#define HA_ERR_TABLESPACE_IS_NOT_EMPTY 199 /* Tablespace is not empty */ +#define HA_ERR_WRONG_FILE_NAME 200 /* Invalid Filename */ +#define HA_ERR_NOT_ALLOWED_COMMAND 201 /* Operation is not allowed */ +#define HA_ERR_COMPUTE_FAILED 202 /* Compute generated column value failed */ +#define HA_ERR_INNODB_READ_ONLY 203 /* InnoDB is in read only mode */ +#define HA_ERR_LAST 203 /* Copy of last error nr * */ /* Number of different errors */ #define HA_ERR_ERRORS (HA_ERR_LAST - HA_ERR_FIRST + 1) |