mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 22:12:30 +01:00
69a2345cbb
innodb_lock_waits. See https://svn.innodb.com/innobase/InformationSchema/TransactionsAndLocks for design notes. Things that need to be resolved before this goes live: * MySQL must add thd_get_thread_id() function to their code http://bugs.mysql.com/30930 * Allocate memory from mem_heap instead of using mem_alloc() * Copy table name and index name into the cache because they may be freed later which will result in referencing freed memory Approved by: Marko
16 lines
420 B
C
16 lines
420 B
C
/******************************************************
|
|
InnoDB INFORMATION SCHEMA tables interface to MySQL.
|
|
|
|
(c) 2007 Innobase Oy
|
|
|
|
Created July 18, 2007 Vasil Dimov
|
|
*******************************************************/
|
|
|
|
#ifndef i_s_h
|
|
#define i_s_h
|
|
|
|
extern struct st_mysql_plugin i_s_innodb_trx;
|
|
extern struct st_mysql_plugin i_s_innodb_locks;
|
|
extern struct st_mysql_plugin i_s_innodb_lock_waits;
|
|
|
|
#endif /* i_s_h */
|