~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.h

  • Committer: Stewart Smith
  • Date: 2010-02-26 05:33:19 UTC
  • mfrom: (1283.13.5)
  • mto: (1283.11.6)
  • mto: This revision was merged to the branch mainline in revision 1449.
  • Revision ID: stewart@flamingspork.com-20100226053319-6dnlmghm0vq320ch
Merged embedded-innodb-init into embedded-innodb-dump-datadict-func.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
  bool wild_db_value, wild_table_value;
63
63
} LOOKUP_FIELD_VALUES;
64
64
 
65
 
bool calc_lookup_values_from_cond(Session *session, COND *cond, TableList *table,
66
 
                                  LOOKUP_FIELD_VALUES *lookup_field_vals,
67
 
                                  plugin::InfoSchemaTable *schema_table);
68
 
bool get_lookup_field_values(Session *session, COND *cond, TableList *tables,
69
 
                             LOOKUP_FIELD_VALUES *lookup_field_values,
70
 
                             plugin::InfoSchemaTable *schema_table);
71
 
int make_db_list(Session *session, std::vector<LEX_STRING*> &files,
72
 
                 LOOKUP_FIELD_VALUES *lookup_field_vals, bool *with_i_schema);
73
65
drizzle_show_var *getFrontOfStatusVars();
74
66
drizzle_show_var *getCommandStatusVars();
75
67
 
76
68
int store_create_info(TableList *table_list, String *packet, bool is_if_not_exists);
77
69
 
78
 
int get_quote_char_for_identifier();
79
70
int wild_case_compare(const CHARSET_INFO * const cs, 
80
71
                      const char *str,const char *wildstr);
81
72
 
82
 
bool make_schema_select(Session *session,  Select_Lex *sel,
83
 
                        const std::string& schema_table_name);
84
 
 
85
 
bool mysqld_show_open_tables(Session *session,const char *wild);
86
 
void mysqld_list_fields(Session *session,TableList *table, const char *wild);
87
 
int mysqld_dump_create_info(Session *session, TableList *table_list, int fd);
88
73
bool drizzled_show_create(Session *session, TableList *table_list, bool is_if_not_exists);
89
 
bool mysqld_show_create_db(Session *session, char *dbname, bool if_not_exists);
 
74
bool mysqld_show_create_db(Session *session, const char *dbname, bool if_not_exists);
90
75
 
91
76
bool mysqld_show_column_types(Session *session);
92
77
void calc_sum_of_all_status(struct system_status_var *to);
98
83
void free_status_vars();
99
84
void reset_status_vars();
100
85
 
 
86
int get_quote_char_for_identifier();
 
87
 
101
88
} /* namespace drizzled */
102
89
 
103
90
#endif /* DRIZZLED_SHOW_H */