~eday/drizzle/eday-dev

« back to all changes in this revision

Viewing changes to drizzled/show.h

  • Committer: Eric Day
  • Date: 2010-01-07 20:02:38 UTC
  • mfrom: (971.3.291 staging)
  • Revision ID: eday@oddments.org-20100107200238-uqw8v6kv9pl7nny5
Merged trunk.

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
 
 
57
 
56
58
typedef struct system_status_var STATUS_VAR;
57
59
 
 
60
extern STATUS_VAR global_status_var;
 
61
 
58
62
typedef struct st_lookup_field_values
59
63
{
60
64
  LEX_STRING db_value, table_value;
85
89
void mysqld_list_fields(Session *session,TableList *table, const char *wild);
86
90
int mysqld_dump_create_info(Session *session, TableList *table_list, int fd);
87
91
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);
 
92
bool mysqld_show_create_db(Session *session, const NormalisedDatabaseName &database_name, bool if_not_exists);
89
93
 
90
94
int mysqld_show_status(Session *session);
91
95
int mysqld_show_variables(Session *session,const char *wild);