~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/alter_info.cc

  • Committer: Olaf van der Spek
  • Date: 2011-03-24 00:16:14 UTC
  • mto: This revision was merged to the branch mainline in revision 2251.
  • Revision ID: olafvdspek@gmail.com-20110324001614-wvmgc6eg52oq2321
Remove const_reference and reference from Session

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 * @file Implementation of the AlterInfo class
23
23
 */
24
24
 
25
 
#include "config.h"
26
 
#include "drizzled/alter_info.h"
27
 
#include "drizzled/alter_drop.h"
28
 
#include "drizzled/alter_column.h"
29
 
#include "drizzled/key.h"
30
 
#include "drizzled/create_field.h"
 
25
#include <config.h>
 
26
#include <drizzled/alter_info.h>
 
27
#include <drizzled/alter_column.h>
 
28
#include <drizzled/key.h>
 
29
#include <drizzled/create_field.h>
31
30
 
32
31
namespace drizzled
33
32
{
34
33
 
35
34
AlterInfo::AlterInfo() :
36
35
  flags(),
37
 
  keys_onoff(LEAVE_AS_IS),
38
 
  tablespace_op(NO_TABLESPACE_OP),
39
36
  no_parts(0),
40
 
  build_method(HA_BUILD_DEFAULT),
41
37
  error_if_not_empty(false)
42
38
{}
43
39