diff options
author | unknown <monty@mashka.mysql.fi> | 2003-01-28 20:56:35 +0200 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2003-01-28 20:56:35 +0200 |
commit | 2f24bdab3da1820ef2ed5303e42c19a70d26304f (patch) | |
tree | c69a35bf725afc24c5f992fbb309f51812f58598 /sql/mysql_priv.h | |
parent | ce0233a1391ba7ce44c98ea6cf4585fc39783672 (diff) | |
download | mariadb-git-2f24bdab3da1820ef2ed5303e42c19a70d26304f.tar.gz |
Only write to the error log if --log-error is specified and --console is not specified
(On Windows --log-error is enabled by default)
mysys/my_getopt.c:
Call get_one_option() also for boolean values.
scripts/mysqld_safe.sh:
Add option --log-error
sql/log.cc:
Fix for --log-error
sql/mysql_priv.h:
Fix for --log-error
sql/mysqld.cc:
Fix for --log-error
sql/sql_udf.cc:
Lock the mysql/func table properly
Diffstat (limited to 'sql/mysql_priv.h')
-rw-r--r-- | sql/mysql_priv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mysql_priv.h b/sql/mysql_priv.h index 5d8afbc6149..26ac705a5bd 100644 --- a/sql/mysql_priv.h +++ b/sql/mysql_priv.h @@ -666,7 +666,7 @@ extern uint delay_key_write_options; extern bool opt_endinfo, using_udf_functions, locked_in_memory; extern bool opt_using_transactions, mysql_embedded; extern bool using_update_log, opt_large_files; -extern bool opt_log, opt_update_log, opt_bin_log, opt_slow_log; +extern bool opt_log, opt_update_log, opt_bin_log, opt_slow_log, opt_error_log; extern bool opt_disable_networking, opt_skip_show_db; extern bool volatile abort_loop, shutdown_in_progress, grant_option; extern uint volatile thread_count, thread_running, global_read_lock; |