~jaypipes/drizzle/split-xa-resource-manager

« back to all changes in this revision

Viewing changes to plugin/info_schema/open_tables.h

  • Committer: Jay Pipes
  • Date: 2010-02-06 01:51:20 UTC
  • mfrom: (1273.1.10 build)
  • Revision ID: jpipes@serialcoder-20100206015120-as4vb638inbzrb59
Merge trunk changes and resolve conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include "drizzled/plugin/info_schema_table.h"
25
25
 
26
26
/**
27
 
 * @class OpenTablesISMethods
 
27
 * @class Opendrizzled::TablesISMethods
28
28
 * @brief
29
29
 *   Class which implements any methods that the OPEN_TABLES
30
30
 *   I_S table needs besides the default methods
32
32
class OpenTablesISMethods : public drizzled::plugin::InfoSchemaMethods
33
33
{
34
34
public:
35
 
  virtual int fillTable(Session *session,
36
 
                        Table *table,
 
35
  virtual int fillTable(drizzled::Session *session,
 
36
                        drizzled::Table *table,
37
37
                        drizzled::plugin::InfoSchemaTable *schema_table);
38
38
};
39
39