~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.h

  • Committer: Siddharth Prakash Singh
  • Date: 2010-03-26 17:24:57 UTC
  • mto: This revision was merged to the branch mainline in revision 1425.
  • Revision ID: spsneo@spsneo-laptop-20100326172457-vni09y22ktvvefmn
some more sprintf --> snprintf

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
 
40
40
/* Forward declarations */
41
41
class String;
42
 
class Join;
 
42
class JOIN;
43
43
class Session;
44
44
struct st_ha_create_information;
45
45
typedef st_ha_create_information HA_CREATE_INFO;
46
 
class TableList;
 
46
struct TableList;
47
47
 
48
48
class Table;
49
49
typedef class Item COND;
50
50
 
 
51
extern struct system_status_var global_status_var;
 
52
 
 
53
drizzle_show_var *getFrontOfStatusVars();
 
54
drizzle_show_var *getCommandStatusVars();
 
55
 
 
56
int store_create_info(TableList *table_list, String *packet, bool is_if_not_exists);
 
57
 
51
58
int wild_case_compare(const CHARSET_INFO * const cs, 
52
59
                      const char *str,const char *wildstr);
53
60
 
 
61
bool drizzled_show_create(Session *session, TableList *table_list, bool is_if_not_exists);
 
62
bool mysqld_show_create_db(Session *session, const char *dbname, bool if_not_exists);
 
63
 
 
64
bool mysqld_show_column_types(Session *session);
 
65
void calc_sum_of_all_status(struct system_status_var *to);
 
66
 
 
67
int add_status_vars(drizzle_show_var *list);
 
68
int add_com_status_vars(drizzle_show_var *list);
 
69
void remove_status_vars(drizzle_show_var *list);
 
70
void init_status_vars();
 
71
void free_status_vars();
 
72
void reset_status_vars();
 
73
 
54
74
int get_quote_char_for_identifier();
55
75
 
56
76
} /* namespace drizzled */