~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.h

Big merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
class Table;
53
53
typedef class Item COND;
54
54
 
55
 
typedef drizzle_show_var SHOW_VAR;
 
55
class NormalisedDatabaseName;
 
56
 
56
57
typedef struct system_status_var STATUS_VAR;
57
58
 
58
59
typedef struct st_lookup_field_values
85
86
void mysqld_list_fields(Session *session,TableList *table, const char *wild);
86
87
int mysqld_dump_create_info(Session *session, TableList *table_list, int fd);
87
88
bool drizzled_show_create(Session *session, TableList *table_list, bool is_if_not_exists);
88
 
bool mysqld_show_create_db(Session *session, char *dbname, bool if_not_exists);
 
89
bool mysqld_show_create_db(Session *session, const NormalisedDatabaseName &database_name, bool if_not_exists);
89
90
 
90
91
int mysqld_show_status(Session *session);
91
92
int mysqld_show_variables(Session *session,const char *wild);