~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to drizzled/show.h

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-10-02 14:17:48 UTC
  • mfrom: (1.1.1 upstream)
  • mto: (2.1.17 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20101002141748-m6vbfbfjhrw1153e
Tags: 2010.09.1802-1
* New upstream release.
* Removed pid-file argument hack.
* Updated GPL-2 address to be new address.
* Directly copy in drizzledump.1 since debian doesn't have sphinx 1.0 yet.
* Link to jquery from libjs-jquery. Add it as a depend.
* Add drizzled.8 symlink to the install files.

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;
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
51
int store_create_info(TableList *table_list, String *packet, bool is_if_not_exists);
57
52
 
58
53
int wild_case_compare(const CHARSET_INFO * const cs, 
59
54
                      const char *str,const char *wildstr);
60
55
 
61
56
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);
 
57
bool mysqld_show_create_db(Session &session, SchemaIdentifier &, bool if_not_exists);
63
58
 
64
59
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
60
 
74
61
int get_quote_char_for_identifier();
75
62