diff options
author | Marc Alff <marc.alff@oracle.com> | 2015-04-08 07:01:39 +0200 |
---|---|---|
committer | Marc Alff <marc.alff@oracle.com> | 2015-04-08 07:01:39 +0200 |
commit | 7285b4c49558e79072907642df63290748e45667 (patch) | |
tree | 18286f9b3eacf07cbacb06d0e7c4e23966f02523 /sql/sql_class.h | |
parent | 45b51146a90479e3f4d74fdf0256acbcbb1b4281 (diff) | |
download | mariadb-git-7285b4c49558e79072907642df63290748e45667.tar.gz |
Bug#20788853 MUTEX ISSUE IN SQL/SQL_SHOW.CC RESULTING IN SIG6. SOURCE LIKELY
FILL_VARIABLES
Prevent mutexes used in SHOW VARIABLES from being locked twice.
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index 22b4eabac13..5a5e8b48754 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -1603,6 +1603,7 @@ public: decremented each time before it returns from the function. */ uint fill_status_recursion_level; + uint fill_variables_recursion_level; /* container for handler's private per-connection data */ Ha_data ha_data[MAX_HA]; |