mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
74ac5b116f
and columns as suggested by Ken. INNODB_COMPRESSION, INNODB_COMPRESSION_RESET: Rename to INNODB_CMP, INNODB_CMP_RESET, with the following columns: page_size compress_ops compress_ops_ok compress_time uncompress_ops uncompress_time INNODB_COMPRESSION_BUDDY, INNODB_COMPRESSION_BUDDY_RESET: Rename to INNODB_CMPMEM, INNODB_CMPMEM_RESET, with the following columns: page_size pages_used pages_free relocation_ops relocation_time
20 lines
622 B
C
20 lines
622 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;
|
|
extern struct st_mysql_plugin i_s_innodb_cmp;
|
|
extern struct st_mysql_plugin i_s_innodb_cmp_reset;
|
|
extern struct st_mysql_plugin i_s_innodb_cmpmem;
|
|
extern struct st_mysql_plugin i_s_innodb_cmpmem_reset;
|
|
|
|
#endif /* i_s_h */
|