~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/transaction_services.h

  • 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:
292
292
   * @param[in] schema message::Schema message describing new schema
293
293
   */
294
294
  void createSchema(Session *in_session, const message::Schema &schema);
 
295
 
295
296
  /**
296
297
   * Creates a DropSchema Statement GPB message and adds it
297
298
   * to the Session's active Transaction GPB message for pushing
300
301
   * @param[in] in_session Pointer to the Session which issued the statement
301
302
   * @param[in] schema_name message::Schema message describing new schema
302
303
   */
303
 
  void dropSchema(Session *in_session, const std::string &schema_name);
 
304
  void dropSchema(Session *in_session, SchemaIdentifier::const_reference identifier);
 
305
 
304
306
  /**
305
307
   * Creates a CreateTable Statement GPB message and adds it
306
308
   * to the Session's active Transaction GPB message for pushing