summaryrefslogtreecommitdiff
path: root/include/my_base.h
diff options
context:
space:
mode:
authorholyfoot@deer.(none) <>2006-02-17 10:52:32 +0400
committerholyfoot@deer.(none) <>2006-02-17 10:52:32 +0400
commit053d90a2349964e977ccb2a8aecfd339695fa38d (patch)
treee1075b7c3e3c1d0a91edf078cf69906180661d4c /include/my_base.h
parenta9cda1edd321228d2e39938bd08c6ac2a75b1bd0 (diff)
downloadmariadb-git-053d90a2349964e977ccb2a8aecfd339695fa38d.tar.gz
WL#2645 (CHECK TABLE FOR UPGRADE)
necessary implementation in the server mysql_upgrade script added
Diffstat (limited to 'include/my_base.h')
-rw-r--r--include/my_base.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/my_base.h b/include/my_base.h
index 77cd60fda92..c82ecd06627 100644
--- a/include/my_base.h
+++ b/include/my_base.h
@@ -346,8 +346,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_TABLE_NEEDS_UPGRADE 160 /* The table changed in storage engine */
-#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)