diff options
Diffstat (limited to 'include/my_base.h')
-rw-r--r-- | include/my_base.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/my_base.h b/include/my_base.h index 5ea3795f715..4e1a573217b 100644 --- a/include/my_base.h +++ b/include/my_base.h @@ -343,9 +343,12 @@ enum ha_base_keytype { #define HA_ERR_NO_CONNECTION 157 /* Could not connect to storage engine */ #define HA_ERR_NULL_IN_SPATIAL 158 /* NULLs are not supported in spatial index */ #define HA_ERR_TABLE_DEF_CHANGED 159 /* The table changed in storage engine */ -#define HA_ERR_NO_PARTITION_FOUND 160 /* There's no partition in table for given value */ +#define HA_ERR_NO_PARTITION_FOUND 160 /* There's no partition in table for + given value */ +#define HA_ERR_RBR_LOGGING_FAILED 161 /* Row-based binlogging of row failed */ + +#define HA_ERR_LAST 161 /* Copy last error no */ -#define HA_ERR_LAST 160 /*Copy last error nr.*/ /* Add error numbers before HA_ERR_LAST and change it accordingly. */ #define HA_ERR_ERRORS (HA_ERR_LAST - HA_ERR_FIRST + 1) |