diff options
author | Sergei Golubchik <serg@mariadb.org> | 2014-08-25 19:08:01 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2014-10-11 18:53:04 +0200 |
commit | db8af31831beb949dfcf7675b3c6392dc52dc38c (patch) | |
tree | 875eb553866accbb0f05bfe8cbe3a789752d86f2 /sql/table.h | |
parent | 932eaf31e91cf875e336b8d9332682aca03c6e58 (diff) | |
download | mariadb-git-db8af31831beb949dfcf7675b3c6392dc52dc38c.tar.gz |
SHOW and FLUSH for I_S tables.
Extend existing plugins to support
* SHOW QUERY_RESPONSE_TIME
* FLUSH QUERY_RESPONSE_TIME
* SHOW LOCALE
move userstat tables to use the new API instead of
hand-coded syntax
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/table.h b/sql/table.h index bbe4b181339..eca35d6c52c 100644 --- a/sql/table.h +++ b/sql/table.h @@ -1487,8 +1487,8 @@ typedef struct st_schema_table { const char* table_name; ST_FIELD_INFO *fields_info; - /* Create information_schema table */ - TABLE *(*create_table) (THD *thd, TABLE_LIST *table_list); + /* for FLUSH table_name */ + int (*reset_table) (); /* Fill table with data */ int (*fill_table) (THD *thd, TABLE_LIST *tables, COND *cond); /* Handle fileds for old SHOW */ |