diff options
author | unknown <geert@kriem.kemuri.org> | 2005-04-05 15:30:17 +0200 |
---|---|---|
committer | unknown <geert@kriem.kemuri.org> | 2005-04-05 15:30:17 +0200 |
commit | 72139ac31563d0b3229cf8a91a399fdda632a78c (patch) | |
tree | 2ddf0aa4a0285b0169dc2a67dfa5db0654c4f71f /client/client_priv.h | |
parent | b7faf5c0c9143febdcf3d6ad475788ee0eeda77d (diff) | |
download | mariadb-git-72139ac31563d0b3229cf8a91a399fdda632a78c.tar.gz |
Adding --show-warnings option for the mysql command line tool so warnings,
if any, are shown after execution of a statement in both batch and
interactive mode.
In interactive mode \w means show the warnings and \W means don't
show the warnings.
client/client_priv.h:
Adding OPT_SHOW_WARNINGS for the --show-warnings switch for the mysql
command line tool.
client/mysql.cc:
Adding --show-warnings option so warnings, if any, are shown after
execution of a statement in both batch and interactive mode.
In interactive mode \w means show the warnings and \W means don't
show the warnings.
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'client/client_priv.h')
-rw-r--r-- | client/client_priv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/client_priv.h b/client/client_priv.h index 95f4d105156..892a9185ffa 100644 --- a/client/client_priv.h +++ b/client/client_priv.h @@ -50,4 +50,5 @@ enum options_client ,OPT_NDBCLUSTER,OPT_NDB_CONNECTSTRING #endif ,OPT_IGNORE_TABLE + ,OPT_SHOW_WARNINGS }; |