~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/show_warnings.h

Merged in latest plugin-slot-reorg.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2009 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2009 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
23
23
 
24
24
#include <drizzled/statement.h>
25
25
 
 
26
class Session;
 
27
 
26
28
namespace drizzled
27
29
{
28
 
 
29
 
class Session;
30
 
 
31
30
namespace statement
32
31
{
33
32
 
34
33
class ShowWarnings : public Statement
35
34
{
36
35
public:
37
 
  ShowWarnings(Session *in_session) :
38
 
    Statement(in_session)
39
 
  {
40
 
    getSession()->getLex()->sql_command= SQLCOM_SHOW_WARNS;
41
 
  }
 
36
  ShowWarnings(Session *in_session)
 
37
    :
 
38
      Statement(in_session, SQLCOM_SHOW_WARNS)
 
39
  {}
42
40
 
43
41
  bool execute();
44
42
};
45
43
 
46
 
} /* namespace statement */
 
44
} /* end namespace statement */
47
45
 
48
 
} /* namespace drizzled */
 
46
} /* end namespace drizzled */
49
47
 
50
48
#endif /* DRIZZLED_STATEMENT_SHOW_WARNINGS_H */