summaryrefslogtreecommitdiff
path: root/sql/sql_show.h
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2013-04-07 17:11:19 +0200
committerSergei Golubchik <sergii@pisem.net>2013-04-07 17:11:19 +0200
commit8980e67693c8f011200bc3924f5a8fc914aecc51 (patch)
treea5197cf5e0a9306f9956abc570dba0b45cb1e3d1 /sql/sql_show.h
parent69ba585a1e8a0ea52c3bced2a40311d75009e5d0 (diff)
downloadmariadb-git-8980e67693c8f011200bc3924f5a8fc914aecc51.tar.gz
* use Dynamic_array<> instead of List<> for the list of found tables in sql_show.cc
* make find_files static
Diffstat (limited to 'sql/sql_show.h')
-rw-r--r--sql/sql_show.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/sql/sql_show.h b/sql/sql_show.h
index 09e0a80fd4f..ec4d6a2b7c9 100644
--- a/sql/sql_show.h
+++ b/sql/sql_show.h
@@ -34,12 +34,6 @@ typedef struct st_schema_table ST_SCHEMA_TABLE;
struct TABLE;
typedef struct system_status_var STATUS_VAR;
-enum find_files_result {
- FIND_FILES_OK,
- FIND_FILES_OOM,
- FIND_FILES_DIR
-};
-
/* Used by handlers to store things in schema tables */
#define IS_FILES_FILE_ID 0
#define IS_FILES_FILE_NAME 1
@@ -80,9 +74,6 @@ enum find_files_result {
#define IS_FILES_STATUS 36
#define IS_FILES_EXTRA 37
-find_files_result find_files(THD *thd, List<LEX_STRING> *files, const char *db,
- const char *path, const char *wild, bool dir);
-
int store_create_info(THD *thd, TABLE_LIST *table_list, String *packet,
HA_CREATE_INFO *create_info_arg, bool show_database);
int view_store_create_info(THD *thd, TABLE_LIST *table, String *buff);