~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-20 19:20:57 UTC
  • mto: This revision was merged to the branch mainline in revision 2016.
  • Revision ID: brian@tangent.org-20101220192057-1ch4b9uo008d8rje
Merge in additional fixes for sign, plus alter table, plus TIME on
processlist.

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
 
37
39
public:
38
 
  CreateSchema(Session *in_session)
39
 
    :
40
 
      Statement(in_session),
41
 
      is_if_not_exists(false)
 
40
  CreateSchema(Session *in_session) :
 
41
    Statement(in_session),
 
42
    is_if_not_exists(false)
42
43
  {
43
44
    schema_message.set_creation_timestamp(time(NULL));
44
45
    schema_message.set_update_timestamp(time(NULL));