diff options
author | holyfoot@deer.(none) <> | 2005-12-15 16:20:56 +0400 |
---|---|---|
committer | holyfoot@deer.(none) <> | 2005-12-15 16:20:56 +0400 |
commit | dec0720a80fc4f72a067c2916b119321b4e87a9d (patch) | |
tree | 781d8529af90da18115fb0a92cb5ea0f38f6dc72 /include | |
parent | 55e7f4503e60183d84f199edb2550c5b88f79dcb (diff) | |
download | mariadb-git-dec0720a80fc4f72a067c2916b119321b4e87a9d.tar.gz |
bug #15524 (partitioning range/list violation error message is insufficient)
Diffstat (limited to 'include')
-rw-r--r-- | include/my_base.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/my_base.h b/include/my_base.h index c688591e1d5..5ea3795f715 100644 --- a/include/my_base.h +++ b/include/my_base.h @@ -343,8 +343,9 @@ 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_LAST 159 /*Copy last error nr.*/ +#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) |