summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRamil Kalimullin <ramil@mysql.com>2010-12-09 12:59:12 +0300
committerRamil Kalimullin <ramil@mysql.com>2010-12-09 12:59:12 +0300
commitcc1288349f7af7937d30921d80d761889e88e9b6 (patch)
treeafa353259bdf6aa7951d57c746491dee1af40052 /include
parenta9d18aaf3e6274ef016d76b0e0264494570864aa (diff)
downloadmariadb-git-cc1288349f7af7937d30921d80d761889e88e9b6.tar.gz
Fix for bug#48451: my_seek and my_tell ignore MY_WME flag
my_seek() and my_tell() functions now honour MY_WME flag.
Diffstat (limited to 'include')
-rw-r--r--include/mysys_err.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/mysys_err.h b/include/mysys_err.h
index 6294b37f773..a902c178772 100644
--- a/include/mysys_err.h
+++ b/include/mysys_err.h
@@ -64,7 +64,8 @@ extern const char * NEAR globerrs[]; /* my_error_messages is here */
#define EE_FILE_NOT_CLOSED 30
#define EE_CHANGE_OWNERSHIP 31
#define EE_CHANGE_PERMISSIONS 32
-#define EE_ERROR_LAST 32 /* Copy last error nr */
+#define EE_CANT_SEEK 33
+#define EE_ERROR_LAST 33 /* Copy last error nr */
/* Add error numbers before EE_ERROR_LAST and change it accordingly. */
/* exit codes for all MySQL programs */