~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/transaction_services.cc

  • Committer: Brian Aker
  • Date: 2011-01-04 02:03:24 UTC
  • Revision ID: brian@tangent.org-20110104020324-043om9xrux4obl96
Fix additional member of trans services to handle identifier.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2034
2034
 
2035
2035
}
2036
2036
 
2037
 
void TransactionServices::dropSchema(Session *in_session, const string &schema_name)
 
2037
void TransactionServices::dropSchema(Session *in_session, SchemaIdentifier::const_reference identifier)
2038
2038
{
2039
2039
  ReplicationServices &replication_services= ReplicationServices::singleton();
2040
2040
  if (! replication_services.isActive())
2051
2051
   */
2052
2052
  message::DropSchemaStatement *drop_schema_statement= statement->mutable_drop_schema_statement();
2053
2053
 
2054
 
  drop_schema_statement->set_schema_name(schema_name);
 
2054
  drop_schema_statement->set_schema_name(identifier.getSchemaName());
2055
2055
 
2056
2056
  finalizeStatementMessage(*statement, in_session);
2057
2057