summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorunknown <jimw@rama.(none)>2006-07-11 17:29:36 -0700
committerunknown <jimw@rama.(none)>2006-07-11 17:29:36 -0700
commit417757dbd0dfb437cc188573e941d9be05773169 (patch)
tree98fbc0094a16c08cb98699754449eadfd0723390 /include
parent86084994647577eb544eeb2435c6ab9cb6dd6301 (diff)
parent60cb997c4aabdc5ce67a5427a6bf33397348f6fd (diff)
downloadmariadb-git-417757dbd0dfb437cc188573e941d9be05773169.tar.gz
Merge bk-internal:/home/bk/mysql-5.0-engines
into rama.(none):/home/jimw/my/mysql-5.0-17766
Diffstat (limited to 'include')
-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 076eed9998f..e5744fd1621 100644
--- a/include/my_base.h
+++ b/include/my_base.h
@@ -347,8 +347,9 @@ enum ha_base_keytype {
#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_TABLE_READONLY 161 /* The table is not writable */
-#define HA_ERR_LAST 160 /*Copy last error nr.*/
+#define HA_ERR_LAST 161 /*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)