~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/alter_schema.h

Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#ifndef DRIZZLED_STATEMENT_ALTER_SCHEMA_H
22
 
#define DRIZZLED_STATEMENT_ALTER_SCHEMA_H
 
21
#pragma once
23
22
 
24
23
#include <drizzled/statement/create_schema.h>
25
24
 
33
32
class AlterSchema : public CreateSchema
34
33
{
35
34
public:
36
 
  AlterSchema(Session *in_session)
37
 
    :
38
 
      CreateSchema(in_session)
39
 
  { 
 
35
  AlterSchema(Session *in_session) :
 
36
    CreateSchema(in_session)
 
37
  {
 
38
    set_command(SQLCOM_ALTER_DB);
40
39
  }
41
40
 
42
41
  bool execute();
46
45
 
47
46
} /* namespace drizzled */
48
47
 
49
 
#endif /* DRIZZLED_STATEMENT_ALTER_SCHEMA_H */