summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <dlenev@mockturtle.local>2007-03-15 14:31:34 +0300
committerunknown <dlenev@mockturtle.local>2007-03-15 14:31:34 +0300
commit39333ba7f205950ce161c051f5487be76674e39e (patch)
tree282dd259cf678001165c0186a6772636977f1a40
parenteddf23e057e2b28ac9cc559beed884e84f5874a5 (diff)
parentdb1d2f64d1b7f54b652a9c0b7778716a46599ec9 (diff)
downloadmariadb-git-39333ba7f205950ce161c051f5487be76674e39e.tar.gz
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
into mockturtle.local:/home/dlenev/src/mysql-4.1-merge
-rw-r--r--sql/mysqld.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc
index 0efc1339467..20f20a0a86b 100644
--- a/sql/mysqld.cc
+++ b/sql/mysqld.cc
@@ -1572,6 +1572,12 @@ void end_thread(THD *thd, bool put_in_cache)
thd=thread_cache.get();
thd->real_id=pthread_self();
(void) thd->store_globals();
+ /*
+ THD::mysys_var::abort is associated with physical thread rather
+ than with THD object. So we need to reset this flag before using
+ this thread for handling of new THD object/connection.
+ */
+ thd->mysys_var->abort= 0;
thd->thr_create_time= time(NULL);
threads.append(thd);
pthread_mutex_unlock(&LOCK_thread_count);