summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorunknown <acurtis/antony@xiphis.org/ltantony.xiphis.org>2006-07-21 10:14:25 -0700
committerunknown <acurtis/antony@xiphis.org/ltantony.xiphis.org>2006-07-21 10:14:25 -0700
commita7ba5b75a604ca7955fba507b5e457fb40a086a8 (patch)
treeab27bbc9961f4691505892a79e0b2b1b39a5cfe7 /include
parent93eef69dd517557255c4947b3d99f9fb0967fb5e (diff)
parent9378fc627ecaf22d47bfd0de1c192953c96d5159 (diff)
downloadmariadb-git-a7ba5b75a604ca7955fba507b5e457fb40a086a8.tar.gz
Merge bk://anubis/mysql-5.0-engines
into xiphis.org:/home/antony/work2/merge/mysql-5.0 sql/handler.cc: Auto merged
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 05ba38e77eb..d8a0e15ccbe 100644
--- a/include/my_base.h
+++ b/include/my_base.h
@@ -356,8 +356,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)