~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.h

  • Committer: Andrew Hutchings
  • Date: 2011-02-07 17:20:59 UTC
  • mfrom: (2148 staging)
  • mto: (2148.2.3 build)
  • mto: This revision was merged to the branch mainline in revision 2149.
  • Revision ID: andrew@linuxjedi.co.uk-20110207172059-dyeahrgzrlincoe3
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
bool buildCreateSchema(Session *session, LEX_STRING &ident);
62
62
bool buildCreateTable(Session *session, Table_ident *ident);
63
63
bool buildDescribe(Session *session, Table_ident *ident);
64
 
bool buildErrors(Session *session);
65
64
bool buildIndex(Session *session, const char *schema_ident, Table_ident *table_ident);
66
65
bool buildProcesslist(Session *session);
67
66
bool buildScemas(Session *session);
71
70
bool buildTables(Session *session, const char *ident);
72
71
bool buildTemporaryTables(Session *session);
73
72
bool buildVariables(Session *session, const drizzled::sql_var_t is_global);
74
 
bool buildWarnings(Session *session);
 
73
 
 
74
void buildErrors(Session *session);
 
75
void buildWarnings(Session *session);
 
76
 
 
77
void buildSelectWarning(Session *session);
 
78
void buildSelectError(Session *session);
75
79
 
76
80
} // namespace show
77
81