~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/show_warnings.h

  • Committer: Brian Aker
  • Date: 2011-01-25 07:24:41 UTC
  • mfrom: (2104.3.14 alter-table)
  • Revision ID: brian@tangent.org-20110125072441-gf9f14lkxjhvvku9
MergeĀ inĀ alter/parser

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
class ShowWarnings : public Statement
35
35
{
36
36
public:
37
 
  ShowWarnings(Session *in_session)
38
 
    :
39
 
      Statement(in_session)
40
 
  {}
 
37
  ShowWarnings(Session *in_session) :
 
38
    Statement(in_session)
 
39
  {
 
40
    getSession()->getLex()->sql_command= SQLCOM_SHOW_WARNS;
 
41
  }
41
42
 
42
43
  bool execute();
43
44
};