~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.h

  • Committer: Diego Medina
  • Date: 2009-10-05 04:05:29 UTC
  • mfrom: (1161 staging)
  • mto: This revision was merged to the branch mainline in revision 1178.
  • Revision ID: diego.medina@sun.com-20091005040529-5g1qe9gxzslpgefd
resolved small merge issue

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
struct st_ha_create_information;
41
41
typedef st_ha_create_information HA_CREATE_INFO;
42
42
struct TableList;
43
 
class InfoSchemaTable;
 
43
namespace drizzled
 
44
{
 
45
namespace plugin
 
46
{
 
47
  class InfoSchemaTable;
 
48
}
 
49
}
 
50
 
44
51
 
45
52
typedef struct system_status_var STATUS_VAR;
46
53
 
66
73
int wild_case_compare(const CHARSET_INFO * const cs, 
67
74
                      const char *str,const char *wildstr);
68
75
 
69
 
InfoSchemaTable *find_schema_table(const char* table_name);
70
76
bool make_schema_select(Session *session,  Select_Lex *sel,
71
77
                        const std::string& schema_table_name);
72
78
bool mysql_schema_table(Session *session, LEX *lex, TableList *table_list);
91
97
void init_status_vars();
92
98
void free_status_vars();
93
99
void reset_status_vars();
94
 
void add_infoschema_table(InfoSchemaTable *schema_table);
95
 
void remove_infoschema_table(InfoSchemaTable *table);
96
100
 
97
101
#endif /* DRIZZLE_SERVER_SHOW_H */