~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/transaction_services.h

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include <drizzled/atomics.h>
29
29
#include <drizzled/message/transaction.pb.h>
30
30
#include <drizzled/identifier/table.h>
31
 
#include <drizzled/identifier/schema.h>
32
31
#include <drizzled/message/schema.h>
33
32
#include <drizzled/session.h>
34
33
 
35
 
#include <drizzled/visibility.h>
 
34
#include "drizzled/visibility.h"
36
35
 
37
36
namespace drizzled
38
37
{
144
143
   * @param[in] identifier Identifier for the schema to drop
145
144
   */
146
145
  void dropSchema(Session::reference session,
147
 
                  identifier::Schema::const_reference identifier,
148
 
                  message::schema::const_reference schema);
 
146
                  identifier::Schema::const_reference identifier);
149
147
 
150
148
  /**
151
149
   * Creates an AlterSchema Statement GPB message and adds it
157
155
   * @param[in] new_schema New schema definition
158
156
   */
159
157
  void alterSchema(Session::reference session,
160
 
                   const message::Schema &old_schema,
 
158
                   const message::schema::shared_ptr &old_schema,
161
159
                   const message::Schema &new_schema);
162
160
 
163
161
  /**
180
178
   * @param[in] if_exists Did the user specify an IF EXISTS clause?
181
179
   */
182
180
  void dropTable(Session::reference session,
183
 
                 identifier::Table::const_reference identifier,
184
 
                 message::table::const_reference table,
 
181
                 const identifier::Table &table,
185
182
                 bool if_exists);
186
183
 
187
184
  /**