diff options
author | Jimmy Yang <jimmy.yang@oracle.com> | 2010-05-25 18:44:33 -0700 |
---|---|---|
committer | Jimmy Yang <jimmy.yang@oracle.com> | 2010-05-25 18:44:33 -0700 |
commit | 60d4288272f540971ebc929a74118bcc1313e980 (patch) | |
tree | 54d2fd9cdef475dd2487f9d00495e5580c93e63d /storage/innobase/handler/i_s.h | |
parent | a80c59c7fc8bf6b6514342609695dda8dff2035c (diff) | |
download | mariadb-git-60d4288272f540971ebc929a74118bcc1313e980.tar.gz |
Check in the support for Information Schema System Table Views. Users
can now view the content of InnoDB System Tables through following
information schema tables:
information_schema.INNODB_SYS_TABLES
information_schema.INNODB_SYS_INDEXES
information_schema.INNODB_SYS_COUMNS
information_schema.INNODB_SYS_FIELDS
information_schema.INNODB_SYS_FOREIGN
information_schema.INNODB_SYS_FOREIGN_COLS
information_schema.INNODB_SYS_TABLESTATS
rb://330 Approved by Marko
Diffstat (limited to 'storage/innobase/handler/i_s.h')
-rw-r--r-- | storage/innobase/handler/i_s.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/storage/innobase/handler/i_s.h b/storage/innobase/handler/i_s.h index 402c88bbedb..69f5ed9dad8 100644 --- a/storage/innobase/handler/i_s.h +++ b/storage/innobase/handler/i_s.h @@ -33,5 +33,12 @@ 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; +extern struct st_mysql_plugin i_s_innodb_sys_tables; +extern struct st_mysql_plugin i_s_innodb_sys_tablestats; +extern struct st_mysql_plugin i_s_innodb_sys_indexes; +extern struct st_mysql_plugin i_s_innodb_sys_columns; +extern struct st_mysql_plugin i_s_innodb_sys_fields; +extern struct st_mysql_plugin i_s_innodb_sys_foreign; +extern struct st_mysql_plugin i_s_innodb_sys_foreign_cols; #endif /* i_s_h */ |