~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/create_schema.cc

  • Committer: Lee Bieber
  • Date: 2011-03-23 23:16:25 UTC
  • mfrom: (2247.1.2 build)
  • Revision ID: kalebral@gmail.com-20110323231625-61k77qbh7n1iu776
Merge Olaf - Use BOOST_FOREACH
Merge Olaf - Remove std::nothrow from new()

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
  drizzled::message::schema::init(schema_message, lex().name.str);
56
56
 
57
57
  bool res = false;
58
 
  std::string path;
59
 
  schema_identifier.getSQLPath(path);
 
58
  std::string path = schema_identifier.getSQLPath();
60
59
 
61
60
  if (unlikely(plugin::EventObserver::beforeCreateDatabase(session(), path)))
62
61
  {