~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/alter_schema.h

  • Committer: Brian Aker
  • Date: 2009-09-24 06:23:51 UTC
  • mfrom: (1128.2.12 merge)
  • Revision ID: brian@gaz-20090924062351-nuf8tv8ftg7oc9ad
Merge of Lex -> Statement refactoring

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_STATEMENT_ALTER_SCHEMA_H
22
22
#define DRIZZLED_STATEMENT_ALTER_SCHEMA_H
23
23
 
24
 
#include <drizzled/statement.h>
 
24
#include <drizzled/statement/create_schema.h>
25
25
 
26
26
class Session;
27
27
 
30
30
namespace statement
31
31
{
32
32
 
33
 
class AlterSchema : public Statement
 
33
class AlterSchema : public CreateSchema
34
34
{
35
35
public:
36
36
  AlterSchema(Session *in_session)
37
37
    :
38
 
      Statement(in_session, SQLCOM_ALTER_DB)
39
 
  {}
 
38
      CreateSchema(in_session)
 
39
  { }
40
40
 
41
41
  bool execute();
42
42
};