diff options
author | serg@janus.mylan <> | 2007-02-21 11:36:23 +0100 |
---|---|---|
committer | serg@janus.mylan <> | 2007-02-21 11:36:23 +0100 |
commit | 689eed7406fbf305b8a3120ad2094fe4ee4e5a0b (patch) | |
tree | 8baa0ee731a4b567ed44cf3227cdb9a926354ef6 /include/my_base.h | |
parent | 4a8c734fb1581d7d06240b6a270e81c7121f08b0 (diff) | |
parent | 3dafdf7de257f6a24c489eff9dd7416ad54c7d26 (diff) | |
download | mariadb-git-689eed7406fbf305b8a3120ad2094fe4ee4e5a0b.tar.gz |
Merge bk-internal.mysql.com:/home/bk/mysql-5.1
into janus.mylan:/usr/home/serg/Abk/mysql-5.1
Diffstat (limited to 'include/my_base.h')
-rw-r--r-- | include/my_base.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/my_base.h b/include/my_base.h index 26d513ba2a7..3aa280d825a 100644 --- a/include/my_base.h +++ b/include/my_base.h @@ -385,9 +385,10 @@ enum ha_base_keytype { #define HA_ERR_TABLE_NEEDS_UPGRADE 164 /* The table changed in storage engine */ #define HA_ERR_TABLE_READONLY 165 /* The table is not writable */ -#define HA_ERR_AUTOINC_READ_FAILED 166/* Failed to get the next autoinc value */ -#define HA_ERR_AUTOINC_ERANGE 167 /* Failed to set the row autoinc value */ -#define HA_ERR_LAST 167 /*Copy last error nr.*/ +#define HA_ERR_AUTOINC_READ_FAILED 166 /* Failed to get next autoinc value */ +#define HA_ERR_AUTOINC_ERANGE 167 /* Failed to set row autoinc value */ +#define HA_ERR_GENERIC 168 /* Generic error */ +#define HA_ERR_LAST 168 /*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) @@ -468,6 +469,7 @@ typedef struct st_key_range { const byte *key; uint length; + ulonglong keypart_map; enum ha_rkey_function flag; } key_range; |