diff options
author | unknown <monty@donna.mysql.com> | 2000-11-20 02:57:02 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2000-11-20 02:57:02 +0200 |
commit | 89ee326c1d27f3bee4acba67060a475811ebd842 (patch) | |
tree | d3f52866508b583c2d4549b66887b4b50aa9fe22 /mysys/mf_tempfile.c | |
parent | 5dae19b394e3385c0e48d896fec1174437f2308a (diff) | |
download | mariadb-git-89ee326c1d27f3bee4acba67060a475811ebd842.tar.gz |
Bug fix for NATURAL JOIN, Split manual sections and more statistic variables
Docs/manual.texi:
Split BDB into different sections
Added MySQL developers section
Changed an SQL to a SQL
include/my_sys.h:
More statistic variables
libmysql/libmysql.c:
Added option "interactive-timeout"
mysys/mf_tempfile.c:
More statistic variables
mysys/my_static.c:
More statistic variables
sql-bench/crash-me.sh:
Fixed bug in truncate table test
sql-bench/limits/mysql-3.23.cfg:
Updated to crash-me 1.51
sql-bench/limits/mysql.cfg:
Updated to crash-me 1.51
sql/filesort.cc:
More statistics
sql/mysql_priv.h:
More statistics
sql/mysqld.cc:
More statistics
sql/sql_base.cc:
Fix for NATURAL JOIN
sql/sql_delete.cc:
cleanup + Added logging if one doesn't use index
sql/sql_parse.cc:
Logging if one doesn't use index
sql/sql_select.cc:
Logging if one doesn't use index
sql/sql_update.cc:
cleanup + Added logging if one doesn't use index
sql/structs.h:
Fix for NATURAL JOIN
support-files/my-huge.cnf.sh:
Added interactive-timeout to [mysqlhotcopy]
support-files/my-large.cnf.sh:
Added interactive-timeout to [mysqlhotcopy]
support-files/my-medium.cnf.sh:
Added interactive-timeout to [mysqlhotcopy]
support-files/my-small.cnf.sh:
Added interactive-timeout to [mysqlhotcopy]
Diffstat (limited to 'mysys/mf_tempfile.c')
-rw-r--r-- | mysys/mf_tempfile.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysys/mf_tempfile.c b/mysys/mf_tempfile.c index c3fccda09bf..c9b60c87ef3 100644 --- a/mysys/mf_tempfile.c +++ b/mysys/mf_tempfile.c @@ -170,5 +170,7 @@ File create_temp_file(char *to, const char *dir, const char *prefix, } } #endif + if (file >= 0) + thread_safe_increment(my_tmp_file_created,&THR_LOCK_open); DBUG_RETURN(file); } |