diff options
author | unknown <jani@rhols221.adsl.netsonic.fi> | 2004-01-14 04:58:37 +0200 |
---|---|---|
committer | unknown <jani@rhols221.adsl.netsonic.fi> | 2004-01-14 04:58:37 +0200 |
commit | 7eea262321ed50eba83fa3369c9071f48a1e4757 (patch) | |
tree | 073ae6869c6c4398cc8f0ca203208a182a0dd736 /include/mysys_err.h | |
parent | 38a87d0eea0559101c683907db267d5cc1c7ef04 (diff) | |
download | mariadb-git-7eea262321ed50eba83fa3369c9071f48a1e4757.tar.gz |
- Added missing documentation to some mysql.cc options.
- Fixed Bug#2346
- Fixed Bug#2378
- Fixed bug in pager (no Bug#ID (?))
- Added support for new special situations option type, GET_DISABLED.
See handling of --debug in mysql.cc. compiled wihtout debugging, as an
example.
client/mysql.cc:
- Added missing documentation to some options.
- Fixed a bug in pager (no Bug#ID found (?)), but reported on internals list
with subject "[PATCH] Fix pager problems in mysql client"
- Fixed Bug#2346, "unique prefix is enough" option behaviour can be confusing with --debug
include/my_getopt.h:
Added new option type, GET_DISABLED.
include/mysys_err.h:
New exit code for my_getopt.
mysys/my_getopt.c:
- Added handling for GET_DISABLED option type (Fix for Bug#2346)
- Fixed Bug#2378, "Problem with option abbreviation"
Diffstat (limited to 'include/mysys_err.h')
-rw-r--r-- | include/mysys_err.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mysys_err.h b/include/mysys_err.h index 0ee89e91ee4..230be5f4720 100644 --- a/include/mysys_err.h +++ b/include/mysys_err.h @@ -68,6 +68,7 @@ extern const char * NEAR globerrs[]; /* my_error_messages is here */ #define EXIT_UNKNOWN_SUFFIX 9 #define EXIT_NO_PTR_TO_VARIABLE 10 #define EXIT_CANNOT_CONNECT_TO_SERVICE 11 +#define EXIT_OPTION_DISABLED 12 #ifdef __cplusplus |