mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 22:34:18 +01:00
da66c9dd40
INNODB_ZIP and INNODB_ZIP_RESET from ha_innodb.cc to i_s.cc. plugin_author, END_OF_ST_FIELD_INFO, i_s_info: New common constants. trx_i_s_common_deinit(): Renamed to i_s_common_deinit().
18 lines
518 B
C
18 lines
518 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_zip;
|
|
extern struct st_mysql_plugin i_s_innodb_zip_reset;
|
|
|
|
#endif /* i_s_h */
|