~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/create_schema.h

  • Committer: Monty Taylor
  • Date: 2009-12-08 22:43:58 UTC
  • mfrom: (1240.1.5 build)
  • mto: (1240.1.6 build)
  • mto: This revision was merged to the branch mainline in revision 1241.
  • Revision ID: mordred@inaugust.com-20091208224358-u1pazjsnn4n932cu
MergedĀ upĀ build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#define DRIZZLED_STATEMENT_CREATE_SCHEMA_H
23
23
 
24
24
#include <drizzled/statement.h>
 
25
#include <drizzled/message/schema.pb.h>
25
26
 
26
27
class Session;
27
28
 
38
39
      Statement(in_session),
39
40
      is_if_not_exists(false)
40
41
  {
41
 
    memset(&create_info, 0, sizeof(create_info));
42
42
  }
43
43
 
44
44
  bool execute();
45
45
  bool is_if_not_exists;
46
 
  HA_CREATE_INFO create_info;
 
46
  drizzled::message::Schema schema_message;
47
47
};
48
48
 
49
49
} /* end namespace statement */