~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/info_schema.h

  • Committer: Brian Aker
  • Date: 2009-06-30 00:17:07 UTC
  • mfrom: (1079.2.9 info-schema-plugin)
  • Revision ID: brian@gaz-20090630001707-33byyr838fb60u9m
MergeĀ PadraigĀ 

Show diffs side-by-side

added added

removed removed

Lines of Context:
221
221
                        COND *cond);
222
222
};
223
223
 
224
 
class KeyColUsageISMethods : public InfoSchemaMethods
225
 
{
226
 
public:
227
 
  virtual int processTable(Session *session, TableList *tables,
228
 
                           Table *table, bool res, LEX_STRING *db_name,
229
 
                           LEX_STRING *table_name) const;
230
 
};
231
 
 
232
224
class OpenTablesISMethods : public InfoSchemaMethods
233
225
{
234
226
public:
237
229
                        COND *cond);
238
230
};
239
231
 
240
 
class PluginsISMethods : public InfoSchemaMethods
241
 
{
242
 
public:
243
 
  virtual int fillTable(Session *session, 
244
 
                        TableList *tables,
245
 
                        COND *cond);
246
 
};
247
 
 
248
 
class RefConstraintsISMethods : public InfoSchemaMethods
249
 
{
250
 
public:
251
 
  virtual int processTable(Session *session, TableList *tables,
252
 
                           Table *table, bool res, LEX_STRING *db_name,
253
 
                           LEX_STRING *table_name) const;
254
 
};
255
 
 
256
232
class SchemataISMethods : public InfoSchemaMethods
257
233
{
258
234
public:
278
254
                           LEX_STRING *table_name) const;
279
255
};
280
256
 
281
 
class TabConstraintsISMethods : public InfoSchemaMethods
282
 
{
283
 
public:
284
 
  virtual int processTable(Session *session, TableList *tables,
285
 
                           Table *table, bool res, LEX_STRING *db_name,
286
 
                           LEX_STRING *table_name) const;
287
 
};
288
 
 
289
257
class TabNamesISMethods : public InfoSchemaMethods
290
258
{
291
259
public: