~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.h

Renamed plugin::InfoSchema to plugin::InfoSchemaTable as per Jay.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
{
45
45
namespace plugin
46
46
{
47
 
  class InfoSchema;
 
47
  class InfoSchemaTable;
48
48
}
49
49
}
50
50
 
73
73
int wild_case_compare(const CHARSET_INFO * const cs, 
74
74
                      const char *str,const char *wildstr);
75
75
 
76
 
drizzled::plugin::InfoSchema *find_schema_table(const char* table_name);
 
76
drizzled::plugin::InfoSchemaTable *find_schema_table(const char* table_name);
77
77
bool make_schema_select(Session *session,  Select_Lex *sel,
78
78
                        const std::string& schema_table_name);
79
79
bool mysql_schema_table(Session *session, LEX *lex, TableList *table_list);