~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/access_method/system.h

  • Committer: Olaf van der Spek
  • Date: 2011-06-25 13:36:24 UTC
  • mto: This revision was merged to the branch mainline in revision 2349.
  • Revision ID: olafvdspek@gmail.com-20110625133624-hzy2ordecn161qco
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
class System : public AccessMethod
32
32
{
33
33
public:
34
 
  System() {}
35
 
 
36
 
  bool getStats(Table *table,
37
 
                JoinTable *join_tab);
38
 
 
 
34
  void getStats(Table&, JoinTable&);
39
35
};
40
36
 
41
37
} /* end namespace optimizer */
42
 
 
43
38
} /* end namespace drizzled */
44
39