diff options
author | Alexander Barkov <bar@mariadb.com> | 2019-07-06 11:09:06 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.com> | 2019-07-09 06:27:40 +0400 |
commit | a179de04025443032745ee811a97d8da7afe8996 (patch) | |
tree | 67e9f02933828933c4d411d2b0a13aa855268d4e /sql/sql_show.h | |
parent | aca29bb75408b22b53708d7007111ead0f0b5906 (diff) | |
download | mariadb-git-a179de04025443032745ee811a97d8da7afe8996.tar.gz |
MDEV-19991 Turn I_S tables GEOMETRY_COLUMNS and SPATIAL_REF_SYS into a plugin
Diffstat (limited to 'sql/sql_show.h')
-rw-r--r-- | sql/sql_show.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/sql_show.h b/sql/sql_show.h index bc566bffad0..fc3024c5a8b 100644 --- a/sql/sql_show.h +++ b/sql/sql_show.h @@ -76,6 +76,10 @@ typedef struct system_status_var STATUS_VAR; #define IS_FILES_EXTRA 37 typedef enum { WITHOUT_DB_NAME, WITH_DB_NAME } enum_with_db_name; + +int get_all_tables(THD *thd, TABLE_LIST *tables, COND *cond); +bool optimize_for_get_all_tables(THD *thd, TABLE_LIST *tables, COND *cond); + int show_create_table(THD *thd, TABLE_LIST *table_list, String *packet, Table_specification_st *create_info_arg, enum_with_db_name with_db_name); |