~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_show.h

  • Committer: Stewart Smith
  • Date: 2008-09-15 07:13:59 UTC
  • mfrom: (383.1.21 drizzle)
  • mto: This revision was merged to the branch mainline in revision 408.
  • Revision ID: stewart@flamingspork.com-20080915071359-f8bznznyaiqrtqxa
merged

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
class THD;
22
22
struct st_ha_create_information;
23
23
typedef st_ha_create_information HA_CREATE_INFO;
24
 
struct TABLE_LIST;
 
24
struct TableList;
25
25
 
26
26
enum find_files_result {
27
27
  FIND_FILES_OK,
33
33
                             const char *path, const char *wild, bool dir);
34
34
 
35
35
 
36
 
int store_create_info(THD *thd, TABLE_LIST *table_list, String *packet,
 
36
int store_create_info(THD *thd, TableList *table_list, String *packet,
37
37
                      HA_CREATE_INFO  *create_info_arg);
38
38
bool store_db_create_info(THD *thd, const char *dbname, String *buffer,
39
39
                          HA_CREATE_INFO *create_info);
40
 
bool schema_table_store_record(THD *thd, TABLE *table);
 
40
bool schema_table_store_record(THD *thd, Table *table);
41
41
 
42
42
#endif /* SQL_SHOW_H */