diff options
Diffstat (limited to 'ext/mysql/libmysql/mysys_err.h')
-rw-r--r-- | ext/mysql/libmysql/mysys_err.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/mysql/libmysql/mysys_err.h b/ext/mysql/libmysql/mysys_err.h index 8fb9041922..066162cf48 100644 --- a/ext/mysql/libmysql/mysys_err.h +++ b/ext/mysql/libmysql/mysys_err.h @@ -8,7 +8,7 @@ extern "C" { #endif #define GLOB 0 /* Error maps */ -#define GLOBERRS 23 /* Max number of error messages in map's */ +#define GLOBERRS 24 /* Max number of error messages in map's */ #define EE(X) globerrs[ X ] /* Defines to add error to right map */ extern const char * NEAR globerrs[]; /* my_error_messages is here */ @@ -36,6 +36,7 @@ extern const char * NEAR globerrs[]; /* my_error_messages is here */ #define EE_DISK_FULL 20 #define EE_CANT_MKDIR 21 #define EE_UNKNOWN_CHARSET 22 +#define EE_OUT_OF_FILERESOURCES 23 #ifdef __cplusplus } |