diff options
author | monty@donna.mysql.com <> | 2000-09-14 02:39:07 +0300 |
---|---|---|
committer | monty@donna.mysql.com <> | 2000-09-14 02:39:07 +0300 |
commit | b581f17be222af50b399242353fd6df31b6b05d5 (patch) | |
tree | 47d3199e561726437875c3247556ac5797525366 /extra | |
parent | 7e543b4d4b67b7108d72bf1f1a8b22f99937c886 (diff) | |
download | mariadb-git-b581f17be222af50b399242353fd6df31b6b05d5.tar.gz |
Fixes for MERGE TABLES and HEAP tables
Diffstat (limited to 'extra')
-rw-r--r-- | extra/perror.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/extra/perror.c b/extra/perror.c index b6d32d50868..6f2fbd864b6 100644 --- a/extra/perror.c +++ b/extra/perror.c @@ -17,7 +17,7 @@ /* Return error-text for system error messages and nisam messages */ -#define PERROR_VERSION "2.2" +#define PERROR_VERSION "2.3" #include <global.h> #include <my_sys.h> @@ -59,9 +59,11 @@ static HA_ERRORS ha_errlist[]= { 136,"No more room in index file" }, { 137,"No more records (read after end of file)" }, { 138,"Unsupported extension used for table" }, - { 139,"Too big row (>= 24 M)"}, + { 139,"Too big row (>= 16 M)"}, { 140,"Wrong create options"}, - { 141,"Dupplicate unique on write or update"}, + { 141,"Duplicate unique on write or update"}, + { 142,"Unknown character set used"}, + { 143,"Conflicting table definition between MERGE and mapped table"}, { 0,NullS }, }; |