~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/alter_info.cc

  • Committer: pcrews
  • Date: 2011-05-24 17:36:24 UTC
  • mfrom: (1099.4.232 drizzle)
  • Revision ID: pcrews@lucid32-20110524173624-mwr1bvq6fa1r01ao
Updated translations + 2011.05.18 tarball tag

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