diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-03-12 20:18:16 -0700 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-03-12 20:18:16 -0700 |
commit | 49e73e6f2069f021600d39c964babfcf4e165297 (patch) | |
tree | eae6ce17036177571f150abef4027475b6aaaedd /sql/sql_parse.cc | |
parent | 0d70b929833aeee50535343fde6ab77a15c24083 (diff) | |
parent | a4c63857aa511cfa6b086cd0c83333eac7804572 (diff) | |
download | mariadb-git-49e73e6f2069f021600d39c964babfcf4e165297.tar.gz |
Merge work:/home/bk/mysql
into mysql.sashanet.com:/home/sasha/src/bk/mysql
Docs/manual.texi:
Auto merged
sql/sql_parse.cc:
Auto merged
sql/sql_class.h:
Auto merged
Diffstat (limited to 'sql/sql_parse.cc')
-rw-r--r-- | sql/sql_parse.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index 1884a8825ba..6ddb3b45864 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -512,6 +512,10 @@ pthread_handler_decl(handle_one_connection,arg) return 0; } + // copy global state map into thread + for(int x=0; x < 256; x++) + thd->state_map[x] = global_state_map[x]; + do { int error; |