~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_show.h

  • Committer: Monty Taylor
  • Date: 2008-10-20 08:48:34 UTC
  • mfrom: (520.1.22 drizzle)
  • Revision ID: monty@inaugust.com-20081020084834-xpb3w01vkcp55o02
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
/* Forward declarations */
24
24
class String;
25
 
class THD;
 
25
class Session;
26
26
struct st_ha_create_information;
27
27
typedef st_ha_create_information HA_CREATE_INFO;
28
28
struct TableList;
33
33
  FIND_FILES_DIR
34
34
};
35
35
 
36
 
find_files_result find_files(THD *thd, List<LEX_STRING> *files, const char *db,
 
36
find_files_result find_files(Session *session, List<LEX_STRING> *files, const char *db,
37
37
                             const char *path, const char *wild, bool dir);
38
38
 
39
39
 
40
 
int store_create_info(THD *thd, TableList *table_list, String *packet,
 
40
int store_create_info(Session *session, TableList *table_list, String *packet,
41
41
                      HA_CREATE_INFO  *create_info_arg);
42
 
bool store_db_create_info(THD *thd, const char *dbname, String *buffer,
 
42
bool store_db_create_info(Session *session, const char *dbname, String *buffer,
43
43
                          HA_CREATE_INFO *create_info);
44
 
bool schema_table_store_record(THD *thd, Table *table);
 
44
bool schema_table_store_record(Session *session, Table *table);
45
45
 
46
46
#endif /* SQL_SHOW_H */