~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement.h

  • Committer: lbieber
  • Date: 2010-01-21 18:21:39 UTC
  • mto: This revision was merged to the branch mainline in revision 1277.
  • Revision ID: lbieber@orisndriz08-20100121182139-h549us3gsysyyl0e
clean up japanese tests, remove tests that no longer apply.  In test-run.pl change mysql_version_id to drizzle_version_id

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include <drizzled/sql_base.h>
28
28
#include <drizzled/show.h>
29
29
 
30
 
namespace drizzled
31
 
{
32
 
 
33
30
class Session;
34
31
class TableList;
35
32
class Item;
36
33
 
 
34
namespace drizzled
 
35
{
37
36
namespace statement
38
37
{
39
38
 
58
57
   */
59
58
  virtual bool execute()= 0;
60
59
 
61
 
  Session *getSession()
62
 
  {
63
 
    return session;
64
 
  }
65
 
 
66
60
protected:
67
61
 
68
62
  /**
71
65
  Session *session;
72
66
};
73
67
 
74
 
} /* namespace statement */
 
68
} /* end namespace statement */
75
69
 
76
 
} /* namespace drizzled */
 
70
} /* end namespace drizzled */
77
71
 
78
72
#endif /* DRIZZLED_STATEMENT_H */