~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/access_method/scan.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:
33
33
class Scan : public AccessMethod
34
34
{
35
35
public:
36
 
  Scan() {}
37
 
 
38
 
  bool getStats(Table *table,
39
 
                JoinTable *join_tab);
40
 
 
 
36
  void getStats(Table&, JoinTable&);
41
37
};
42
38
 
43
39
} /* end namespace optimizer */
44
 
 
45
40
} /* end namespace drizzled */
46