~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-11-26 04:33:51 UTC
  • mto: (1228.4.1 push)
  • mto: This revision was merged to the branch mainline in revision 1234.
  • Revision ID: osullivan.padraig@gmail.com-20091126043351-2ebmuyzrbifxat0q
Removed all remnants of schema_table from the TableList class. This cleans up a bunch of code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
} LOOKUP_FIELD_VALUES;
62
62
 
63
63
bool calc_lookup_values_from_cond(Session *session, COND *cond, TableList *table,
64
 
                                  LOOKUP_FIELD_VALUES *lookup_field_vals);
 
64
                                  LOOKUP_FIELD_VALUES *lookup_field_vals,
 
65
                                  drizzled::plugin::InfoSchemaTable *schema_table);
65
66
bool get_lookup_field_values(Session *session, COND *cond, TableList *tables,
66
 
                             LOOKUP_FIELD_VALUES *lookup_field_values);
 
67
                             LOOKUP_FIELD_VALUES *lookup_field_values,
 
68
                             drizzled::plugin::InfoSchemaTable *schema_table);
67
69
int make_db_list(Session *session, std::vector<LEX_STRING*> &files,
68
70
                 LOOKUP_FIELD_VALUES *lookup_field_vals, bool *with_i_schema);
69
71
SHOW_VAR *getFrontOfStatusVars();