~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: devananda
  • Date: 2009-06-30 14:27:54 UTC
  • mfrom: (1030.2.4 trunk)
  • mto: (1093.1.7 captain)
  • mto: This revision was merged to the branch mainline in revision 1095.
  • Revision ID: devananda.vdv@gmail.com-20090630142754-vm9w374yxkf1pikc
mergeĀ fromĀ lp

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#ifndef i_s_h
26
26
#define i_s_h
27
27
 
 
28
class TrxISMethods : public InfoSchemaMethods
 
29
{
 
30
public:
 
31
  virtual int fillTable(Session *session,
 
32
                        TableList *tables,
 
33
                        COND *cond);
 
34
};
 
35
 
 
36
class LocksISMethods : public InfoSchemaMethods
 
37
{
 
38
public:
 
39
  virtual int fillTable(Session *session,
 
40
                        TableList *tables,
 
41
                        COND *cond);
 
42
};
 
43
 
 
44
class CmpISMethods : public InfoSchemaMethods
 
45
{
 
46
public:
 
47
  virtual int fillTable(Session *session,
 
48
                        TableList *tables,
 
49
                        COND *cond);
 
50
};
 
51
 
 
52
class CmpResetISMethods : public InfoSchemaMethods
 
53
{
 
54
public:
 
55
  virtual int fillTable(Session *session,
 
56
                        TableList *tables,
 
57
                        COND *cond);
 
58
};
 
59
 
 
60
class CmpmemISMethods : public InfoSchemaMethods
 
61
{
 
62
public:
 
63
  virtual int fillTable(Session *session,
 
64
                        TableList *tables,
 
65
                        COND *cond);
 
66
};
 
67
 
 
68
class CmpmemResetISMethods : public InfoSchemaMethods
 
69
{
 
70
public:
 
71
  virtual int fillTable(Session *session,
 
72
                        TableList *tables,
 
73
                        COND *cond);
 
74
};
 
75
 
28
76
int i_s_common_deinit(PluginRegistry &registry);
29
77
 
30
78
int innodb_locks_init();