~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.h

  • Committer: devananda
  • Date: 2009-06-30 14:27:54 UTC
  • mfrom: (1030.2.4 trunk)
  • mto: (1093.1.7 captain)
  • mto: This revision was merged to the branch mainline in revision 1095.
  • Revision ID: devananda.vdv@gmail.com-20090630142754-vm9w374yxkf1pikc
mergeĀ fromĀ lp

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
struct st_ha_create_information;
39
39
typedef st_ha_create_information HA_CREATE_INFO;
40
40
struct TableList;
41
 
struct InfoSchemaTable;
 
41
class InfoSchemaTable;
42
42
 
43
43
typedef struct system_status_var STATUS_VAR;
44
44
 
58
58
bool schema_table_store_record(Session *session, Table *table);
59
59
 
60
60
int get_quote_char_for_identifier();
 
61
int wild_case_compare(const CHARSET_INFO * const cs, 
 
62
                      const char *str,const char *wildstr);
61
63
 
62
64
InfoSchemaTable *find_schema_table(const char* table_name);
63
 
InfoSchemaTable *get_schema_table(enum enum_schema_tables schema_table_idx);
64
65
bool make_schema_select(Session *session,  Select_Lex *sel,
65
 
                       enum enum_schema_tables schema_table_idx);
 
66
                        const std::string& schema_table_name);
66
67
bool mysql_schema_table(Session *session, LEX *lex, TableList *table_list);
67
68
bool get_schema_tables_result(JOIN *join, enum enum_schema_table_state executed_place);
68
 
enum enum_schema_tables get_schema_table_idx(InfoSchemaTable *schema_table);
69
69
 
70
70
bool mysqld_show_open_tables(Session *session,const char *wild);
71
71
bool mysqld_show_logs(Session *session);