~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.h

  • Committer: Brian Aker
  • Date: 2011-01-22 07:12:16 UTC
  • mfrom: (2096.1.16 alter-table)
  • Revision ID: brian@tangent.org-20110122071216-j0e8bwecb1cqefm9
Merge in work for parser cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
 
54
54
int get_quote_char_for_identifier();
55
55
 
 
56
namespace show {
 
57
 
 
58
bool buildColumns(Session *session, const char *schema_ident, Table_ident *table_ident);
 
59
bool buildCreateSchema(Session *session, LEX_STRING &ident);
 
60
bool buildCreateTable(Session *session, Table_ident *ident);
 
61
bool buildDescribe(Session *session, Table_ident *ident);
 
62
bool buildErrors(Session *session);
 
63
bool buildIndex(Session *session, const char *schema_ident, Table_ident *table_ident);
 
64
bool buildProcesslist(Session *session);
 
65
bool buildScemas(Session *session);
 
66
bool buildStatus(Session *session, const drizzled::sql_var_t is_global);
 
67
bool buildTableStatus(Session *session, const char *ident);
 
68
bool buildTables(Session *session, const char *ident);
 
69
bool buildTemporaryTables(Session *session);
 
70
bool buildVariables(Session *session, const drizzled::sql_var_t is_global);
 
71
bool buildWarnings(Session *session);
 
72
 
 
73
} // namespace show
 
74
 
56
75
} /* namespace drizzled */
57
76
 
58
77
#endif /* DRIZZLED_SHOW_H */