~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/schema.h

  • Committer: Brian Aker
  • Date: 2011-02-14 17:05:06 UTC
  • mto: (2170.1.1 alter-table)
  • mto: This revision was merged to the branch mainline in revision 2172.
  • Revision ID: brian@tangent.org-20110214170506-a5tm2g8hssjirfm6
Finalize interface for schema.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
namespace schema {
29
29
 
30
 
bool create(Session *session, const message::Schema &schema_message, const bool is_if_not_exists);
31
 
bool alter(Session *session, const message::Schema &schema_message, const message::schema::shared_ptr &original_schema);
32
 
bool drop(Session *session, identifier::Schema &identifier, const bool if_exists);
33
 
bool change(Session *session, identifier::Schema &identifier);
 
30
bool create(Session &session, const message::Schema &schema_message, const bool is_if_not_exists);
 
31
bool alter(Session &session, const message::Schema &schema_message, const message::Schema &original_schema);
 
32
bool drop(Session &session, identifier::Schema &identifier, const bool if_exists);
 
33
bool change(Session &session, identifier::Schema &identifier);
 
34
bool check(Session &session, identifier::Schema &schema);
34
35
 
35
36
}
36
37