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/sql_show.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/sql_show.h')
| -rw-r--r-- | sql/sql_show.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/sql_show.h b/sql/sql_show.h index 6373978ef49..a759c8d94f5 100644 --- a/sql/sql_show.h +++ b/sql/sql_show.h @@ -117,11 +117,12 @@ COND *make_cond_for_info_schema(COND *cond, TABLE_LIST *table); ST_SCHEMA_TABLE *find_schema_table(THD *thd, const char* table_name); ST_SCHEMA_TABLE *get_schema_table(enum enum_schema_tables schema_table_idx); int make_schema_select(THD *thd, SELECT_LEX *sel, - enum enum_schema_tables schema_table_idx); + ST_SCHEMA_TABLE *schema_table); int mysql_schema_table(THD *thd, LEX *lex, TABLE_LIST *table_list); bool get_schema_tables_result(JOIN *join, enum enum_schema_table_state executed_place); enum enum_schema_tables get_schema_table_idx(ST_SCHEMA_TABLE *schema_table); +TABLE *create_schema_table(THD *thd, TABLE_LIST *table_list); /* These functions were under INNODB_COMPATIBILITY_HOOKS */ int get_quote_char_for_identifier(THD *thd, const char *name, uint length); |
