~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Mark Atwood
  • Date: 2011-06-25 15:38:53 UTC
  • mfrom: (2318.6.78 refactor16)
  • Revision ID: me@mark.atwood.name-20110625153853-za5fjiwd3z0aykdd
mergeĀ lp:~olafvdspek/drizzle/refactor16

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
class Const : public AccessMethod
34
34
{
35
35
public:
36
 
  Const() {}
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