~tsarev/percona-server/5.1.59-porting-bad

« back to all changes in this revision

Viewing changes to patches/innodb_admin_command_base.patch

  • Committer: Oleg Tsarev
  • Date: 2011-10-03 01:42:57 UTC
  • mfrom: (282.1.15 docs-5.1)
  • Revision ID: oleg.tsarev@percona.com-20111003014257-38rdd66qcg2gzkp7
port

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
+++ b/storage/innodb_plugin/handler/ha_innodb.cc
10
10
@@ -11604,6 +11604,7 @@
11
11
 i_s_innodb_cmpmem_reset,
12
 
 i_s_innodb_table_stats,
13
 
 i_s_innodb_index_stats,
14
12
+i_s_innodb_admin_command,
15
13
 i_s_innodb_patches
16
14
 mysql_declare_plugin_end;
17
15
 
18
16
--- a/storage/innodb_plugin/handler/i_s.cc
19
17
+++ b/storage/innodb_plugin/handler/i_s.cc
20
 
@@ -2947,3 +2947,139 @@
21
 
        STRUCT_FLD(system_vars, NULL),
 
18
@@ -2602,3 +2602,139 @@
 
19
        /* void* */
22
20
        STRUCT_FLD(__reserved1, NULL)
23
21
 };
24
22
+
159
157
+};
160
158
--- a/storage/innodb_plugin/handler/i_s.h
161
159
+++ b/storage/innodb_plugin/handler/i_s.h
162
 
@@ -40,5 +40,6 @@
 
160
@@ -38,5 +38,6 @@
 
161
 extern struct st_mysql_plugin  i_s_innodb_cmpmem_reset;
 
162
 extern struct st_mysql_plugin  i_s_innodb_patches;
163
163
 extern struct st_mysql_plugin  i_s_innodb_rseg;
164
 
 extern struct st_mysql_plugin  i_s_innodb_table_stats;
165
 
 extern struct st_mysql_plugin  i_s_innodb_index_stats;
166
164
+extern struct st_mysql_plugin  i_s_innodb_admin_command;
167
165
 
168
166
 #endif /* i_s_h */
169
167
--- a/storage/innodb_plugin/handler/innodb_patch_info.h
170
168
+++ b/storage/innodb_plugin/handler/innodb_patch_info.h
171
 
@@ -38,5 +38,6 @@
172
 
 {"innodb_stats","Additional features about InnoDB statistics/optimizer","","http://www.percona.com/docs/wiki/percona-xtradb"},
 
169
@@ -37,5 +37,6 @@
 
170
 {"innodb_split_buf_pool_mutex","More fix of buffer_pool mutex","Spliting buf_pool_mutex and optimizing based on innodb_opt_lru_count","http://www.percona.com/docs/wiki/percona-xtradb"},
173
171
 {"innodb_recovery_patches","Bugfixes and adjustments about recovery process","","http://www.percona.com/docs/wiki/percona-xtradb"},
174
172
 {"innodb_purge_thread","Enable to use purge devoted thread","","http://www.percona.com/docs/wiki/percona-xtradb"},
175
173
+{"innodb_admin_command_base","XtraDB specific command interface through i_s","","http://www.percona.com/docs/wiki/percona-xtradb"},