diff options
author | Nirbhay Choubey <nirbhay@skysql.com> | 2014-04-08 10:36:34 -0400 |
---|---|---|
committer | Nirbhay Choubey <nirbhay@skysql.com> | 2014-04-08 10:36:34 -0400 |
commit | 421326310168e2b0a83eddcf9520336e1d58ea42 (patch) | |
tree | 9ec49ac74c451cf03581a619eb92a7afae1c5eef /sql/mdl.h | |
parent | 9d2e90f379654fb65c0eab006213d772302bcff7 (diff) | |
parent | 41a2ca5c16636c12d5c2adce70ec7ddb7a2fc711 (diff) | |
download | mariadb-git-421326310168e2b0a83eddcf9520336e1d58ea42.tar.gz |
Merging mariadb-10.0.10.
* bzr merge -rtag:mariadb-10.0.10 maria/10.0.
Diffstat (limited to 'sql/mdl.h')
-rw-r--r-- | sql/mdl.h | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/sql/mdl.h b/sql/mdl.h index 13c098e26d8..1601d5a2634 100644 --- a/sql/mdl.h +++ b/sql/mdl.h @@ -519,17 +519,7 @@ public: virtual bool inspect_edge(MDL_context *dest) = 0; virtual ~MDL_wait_for_graph_visitor(); - MDL_wait_for_graph_visitor() :m_lock_open_count(0) {} -public: - /** - XXX, hack: During deadlock search, we may need to - inspect TABLE_SHAREs and acquire LOCK_open. Since - LOCK_open is not a recursive mutex, count here how many - times we "took" it (but only take and release once). - Not using a native recursive mutex or rwlock in 5.5 for - LOCK_open since it has significant performance impacts. - */ - uint m_lock_open_count; + MDL_wait_for_graph_visitor() {} }; /** @@ -996,10 +986,6 @@ extern "C" unsigned long thd_get_thread_id(const MYSQL_THD thd); */ extern "C" int thd_is_connected(MYSQL_THD thd); -#ifndef DBUG_OFF -extern mysql_mutex_t LOCK_open; -#endif - /* Start-up parameter for the maximum size of the unused MDL_lock objects cache |