~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/create_schema.h

  • Committer: Brian Aker
  • Date: 2010-12-07 09:12:12 UTC
  • mto: This revision was merged to the branch mainline in revision 1985.
  • Revision ID: brian@tangent.org-20101207091212-1m0w20tck6z7632m
This is a fix for bug lp:686197

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
class CreateSchema : public Statement
36
36
{
37
 
  bool check(const SchemaIdentifier &identifier);
38
 
 
39
37
public:
40
 
  CreateSchema(Session *in_session) :
41
 
    Statement(in_session),
42
 
    is_if_not_exists(false)
 
38
  CreateSchema(Session *in_session)
 
39
    :
 
40
      Statement(in_session),
 
41
      is_if_not_exists(false)
43
42
  {
44
43
    schema_message.set_creation_timestamp(time(NULL));
45
44
    schema_message.set_update_timestamp(time(NULL));