~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.h

Merged in plugin-slot-reorg patches.

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 InfoSchema;
 
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);
 
76
drizzled::plugin::InfoSchema *find_schema_table(const char* table_name);
70
77
bool make_schema_select(Session *session,  Select_Lex *sel,
71
78
                        const std::string& schema_table_name);
72
79
bool mysql_schema_table(Session *session, LEX *lex, TableList *table_list);
91
98
void init_status_vars();
92
99
void free_status_vars();
93
100
void reset_status_vars();
94
 
void add_infoschema_table(InfoSchemaTable *schema_table);
95
 
void remove_infoschema_table(InfoSchemaTable *table);
96
101
 
97
102
#endif /* DRIZZLE_SERVER_SHOW_H */