~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/info_schema/info_schema_methods.h

  • Committer: Brian Aker
  • Date: 2009-07-23 00:02:03 UTC
  • mfrom: (1093.1.25 captain)
  • Revision ID: brian@gaz-20090723000203-kkrx4udjiiwy869o
Mege Jay

Show diffs side-by-side

added added

removed removed

Lines of Context:
192
192
};
193
193
 
194
194
/**
 
195
 * @class StatusISMethods
 
196
 * @brief
 
197
 *   Class which implements any methods that the STATUS
 
198
 *   I_S table needs besides the default methods
 
199
 */
 
200
class StatusISMethods : public InfoSchemaMethods
 
201
{
 
202
public:
 
203
  virtual int fillTable(Session *session, 
 
204
                        TableList *tables,
 
205
                        COND *cond);
 
206
};
 
207
 
 
208
/**
195
209
 * @class TabConstraintsISMethods
196
210
 * @brief
197
211
 *   Class which implements any methods that the TABLE_CONSTRAINTS
231
245
  virtual int oldFormat(Session *session, InfoSchemaTable *schema_table) const;
232
246
};
233
247
 
 
248
/**
 
249
 * @class VariablesISMethods
 
250
 * @brief
 
251
 *   Class which implements any methods that the VARIABLES
 
252
 *   I_S table needs besides the default methods
 
253
 */
 
254
class VariablesISMethods : public InfoSchemaMethods
 
255
{
 
256
public:
 
257
  virtual int fillTable(Session *session, 
 
258
                        TableList *tables,
 
259
                        COND *cond);
 
260
};
 
261
 
234
262
#endif /* DRIZZLE_INFO_SCHEMA_METHODS_H */