~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.h

  • Committer: Stewart Smith
  • Date: 2009-07-09 01:35:10 UTC
  • mto: (1095.1.3 merge)
  • mto: This revision was merged to the branch mainline in revision 1096.
  • Revision ID: stewart@flamingspork.com-20090709013510-ucci2fdb191chi0l
fix SHOW CREATE DATABASE for default collation. Move database metadata reading code around to be a bit more sane.

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
                 LOOKUP_FIELD_VALUES *lookup_field_vals, bool *with_i_schema);
68
68
 
69
69
int store_create_info(TableList *table_list, String *packet, HA_CREATE_INFO  *create_info_arg);
70
 
bool store_db_create_info(const char *dbname, String *buffer, HA_CREATE_INFO *create_info);
 
70
 
71
71
bool schema_table_store_record(Session *session, Table *table);
72
72
 
73
73
int get_quote_char_for_identifier();
85
85
void mysqld_list_fields(Session *session,TableList *table, const char *wild);
86
86
int mysqld_dump_create_info(Session *session, TableList *table_list, int fd);
87
87
bool drizzled_show_create(Session *session, TableList *table_list);
88
 
bool mysqld_show_create_db(Session *session, char *dbname, HA_CREATE_INFO *create);
 
88
bool mysqld_show_create_db(Session *session, char *dbname, bool if_not_exists);
89
89
 
90
90
int mysqld_show_status(Session *session);
91
91
int mysqld_show_variables(Session *session,const char *wild);