~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_show.h

  • Committer: Monty Taylor
  • Date: 2008-09-16 00:00:48 UTC
  • mto: This revision was merged to the branch mainline in revision 391.
  • Revision ID: monty@inaugust.com-20080916000048-3rvrv3gv9l0ad3gs
Fixed copyright headers in drizzled/

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
/* Forward declarations */
24
24
class String;
25
 
class Session;
 
25
class THD;
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(Session *session, List<LEX_STRING> *files, const char *db,
 
36
find_files_result find_files(THD *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(Session *session, TableList *table_list, String *packet,
 
40
int store_create_info(THD *thd, TableList *table_list, String *packet,
41
41
                      HA_CREATE_INFO  *create_info_arg);
42
 
bool store_db_create_info(Session *session, const char *dbname, String *buffer,
 
42
bool store_db_create_info(THD *thd, const char *dbname, String *buffer,
43
43
                          HA_CREATE_INFO *create_info);
44
 
bool schema_table_store_record(Session *session, Table *table);
45
 
 
46
 
int get_quote_char_for_identifier(Session *session, const char *name,
47
 
                                  uint32_t length);
 
44
bool schema_table_store_record(THD *thd, Table *table);
48
45
 
49
46
#endif /* SQL_SHOW_H */