~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/handler/i_s.h

  • Committer: Brian Aker
  • Date: 2009-11-30 19:13:19 UTC
  • mfrom: (1225.1.39 figure)
  • Revision ID: brian@gaz-20091130191319-zyt51fidacic3brf
Merge Padraig

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
{
31
31
public:
32
32
  virtual int fillTable(Session *session,
33
 
                        TableList *tables);
 
33
                        Table *table,
 
34
                        drizzled::plugin::InfoSchemaTable *schema_table);
34
35
};
35
36
 
36
37
class LocksISMethods : public drizzled::plugin::InfoSchemaMethods
37
38
{
38
39
public:
39
40
  virtual int fillTable(Session *session,
40
 
                        TableList *tables);
 
41
                        Table *table,
 
42
                        drizzled::plugin::InfoSchemaTable *schema_table);
41
43
};
42
44
 
43
45
class CmpISMethods : public drizzled::plugin::InfoSchemaMethods
44
46
{
45
47
public:
46
48
  virtual int fillTable(Session *session,
47
 
                        TableList *tables);
 
49
                        Table *table,
 
50
                        drizzled::plugin::InfoSchemaTable *schema_table);
48
51
};
49
52
 
50
53
class CmpResetISMethods : public drizzled::plugin::InfoSchemaMethods
51
54
{
52
55
public:
53
56
  virtual int fillTable(Session *session,
54
 
                        TableList *tables);
 
57
                        Table *table,
 
58
                        drizzled::plugin::InfoSchemaTable *schema_table);
55
59
};
56
60
 
57
61
class CmpmemISMethods : public drizzled::plugin::InfoSchemaMethods
58
62
{
59
63
public:
60
64
  virtual int fillTable(Session *session,
61
 
                        TableList *tables);
 
65
                        Table *table,
 
66
                        drizzled::plugin::InfoSchemaTable *schema_table);
62
67
};
63
68
 
64
69
class CmpmemResetISMethods : public drizzled::plugin::InfoSchemaMethods
65
70
{
66
71
public:
67
72
  virtual int fillTable(Session *session,
68
 
                        TableList *tables);
 
73
                        Table *table,
 
74
                        drizzled::plugin::InfoSchemaTable *schema_table);
69
75
};
70
76
 
71
77
int i_s_common_deinit(drizzled::plugin::Registry &registry);