~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_show.h

  • Committer: Brian Aker
  • Date: 2008-10-20 03:40:03 UTC
  • mto: (492.3.21 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 530.
  • Revision ID: brian@tangent.org-20081020034003-t2dcnl0ayr2ymm8k
THD -> Session rename

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 *thd, 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 *thd, 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 *thd, 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 *thd, Table *table);
45
45
 
46
46
#endif /* SQL_SHOW_H */