diff options
author | mikef@nslinux.bedford.progress.com <> | 2001-05-29 09:29:08 -0400 |
---|---|---|
committer | mikef@nslinux.bedford.progress.com <> | 2001-05-29 09:29:08 -0400 |
commit | ceac5f9227b7ec196161feaf4e93b610946f20d9 (patch) | |
tree | 4f346bd1140daed312c2399909b0061ca3c6155d /include | |
parent | c4beb8321f8393a8b62246592b4b752eb97f09d3 (diff) | |
download | mariadb-git-ceac5f9227b7ec196161feaf4e93b610946f20d9.tar.gz |
Pushing all the Gemini changes above the table handler.
Diffstat (limited to 'include')
-rw-r--r-- | include/my_base.h | 1 | ||||
-rw-r--r-- | include/mysqld_error.h | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/my_base.h b/include/my_base.h index aee9f7af3f1..bb2e4128195 100644 --- a/include/my_base.h +++ b/include/my_base.h @@ -213,6 +213,7 @@ enum ha_base_keytype { #define HA_ERR_CRASHED_ON_USAGE 145 /* Table must be repaired */ #define HA_ERR_LOCK_WAIT_TIMEOUT 146 #define HA_ERR_LOCK_TABLE_FULL 147 +#define HA_ERR_READ_ONLY_TRANSACTION 148 /* Updates not allowed */ /* Other constants */ diff --git a/include/mysqld_error.h b/include/mysqld_error.h index 4f46c40ff49..e412f95a8e4 100644 --- a/include/mysqld_error.h +++ b/include/mysqld_error.h @@ -205,4 +205,7 @@ #define ER_SLAVE_THREAD 1202 #define ER_TOO_MANY_USER_CONNECTIONS 1203 #define ER_SET_CONSTANTS_ONLY 1204 -#define ER_ERROR_MESSAGES 205 +#define ER_LOCK_WAIT_TIMEOUT 1205 +#define ER_LOCK_TABLE_FULL 1206 +#define ER_READ_ONLY_TRANSACTION 1207 +#define ER_ERROR_MESSAGES 208 |