1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Moved state_map copying to THD::THD().

This commit is contained in:
jcole@tetra.spaceapes.com
2001-03-14 01:18:16 -06:00
parent 555430819d
commit 1b9ce04050
3 changed files with 5 additions and 5 deletions

View File

@ -133,6 +133,10 @@ THD::THD():user_time(0),fatal_error(0),last_insert_id_used(0),
}
#endif
// copy global state map into thread
for(int x=0; x < 256; x++)
state_map[x] = global_state_map[x];
#ifdef __WIN__
real_id = 0 ;
#endif