diff options
author | unknown <monty@mashka.mysql.fi> | 2002-08-24 02:08:10 +0300 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2002-08-24 02:08:10 +0300 |
commit | c216222b5a13aae392abc35849a6887a6aa48b1d (patch) | |
tree | b6f240b448658aa070696e59191554c4475198e0 /sql/log.cc | |
parent | a0c16f907ecce4a0489fd7cd7189144259de8c43 (diff) | |
download | mariadb-git-c216222b5a13aae392abc35849a6887a6aa48b1d.tar.gz |
Removed wrong mutex lock (hangup in kill on HPUX)
all free_defaults() on exit in mysql.cc; Should fix problem with SSL
Docs/manual.texi:
Added information about --skip-innodb
client/mysql.cc:
Call free_defaults() on exit
client/mysqladmin.c:
Call free_defaults() on exit
client/mysqlimport.c:
Call free_defaults() on exit
mysql-test/r/rpl000016.result:
Added testing of temporary tables with binary log rotation
mysql-test/t/rpl000016.test:
Added testing of temporary tables with binary log rotation
sql/log.cc:
Remove not used variable
sql/sql_class.h:
Removed wrong mutex lock (hangup in kill on HPUX)
Diffstat (limited to 'sql/log.cc')
-rw-r--r-- | sql/log.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/log.cc b/sql/log.cc index 55bcc80c166..9194d3f7c07 100644 --- a/sql/log.cc +++ b/sql/log.cc @@ -33,7 +33,6 @@ MYSQL_LOG mysql_log,mysql_update_log,mysql_slow_log,mysql_bin_log; extern I_List<i_string> binlog_do_db, binlog_ignore_db; -extern ulong max_binlog_size; static bool test_if_number(const char *str, long *res, bool allow_wildcards); |