~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_result.h

  • Committer: Brian Aker
  • Date: 2009-02-07 22:33:25 UTC
  • Revision ID: brian@tangent.org-20090207223325-5ipgldvw1pkghboq
typdef class removal (just... use the name of the class).

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
class select_result :public Sql_alloc {
25
25
protected:
26
26
  Session *session;
27
 
  Select_Lex_UNIT *unit;
 
27
  Select_Lex_Unit *unit;
28
28
public:
29
29
  select_result()
30
30
  {
32
32
  }
33
33
  virtual ~select_result() {};
34
34
  virtual int prepare(List<Item> &,
35
 
                      Select_Lex_UNIT *u)
 
35
                      Select_Lex_Unit *u)
36
36
  {
37
37
    unit= u;
38
38
    return 0;