~drizzle-trunk/drizzle/jenkins-Drizzle-Builder-220

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

  • Committer: Continuous Integration
  • Date: 2013-03-07 03:15:07 UTC
  • mfrom: (2630.1.7 create-tmp-table)
  • Revision ID: ci@drizzle.org-20130307031507-bqgrashrp5m3fw8x
Merge lp:~stewart/drizzle/misc-cleanups Build: jenkins-Drizzle-Builder-175

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
# endif
31
31
#endif
32
32
 
 
33
#include <drizzled/common_fwd.h>
33
34
#include <drizzled/base.h>
34
35
#include <drizzled/definitions.h>
35
 
#include <drizzled/structs.h>
36
36
#include <drizzled/util/data_ref.h>
 
37
#include <drizzled/message/table.h>
37
38
 
38
39
namespace drizzled {
39
40
 
85
86
struct KEY_CREATE_INFO
86
87
{
87
88
  KEY_CREATE_INFO() :
88
 
    algorithm(HA_KEY_ALG_UNDEF),
 
89
    algorithm(drizzled::message::Table::Index::UNKNOWN_INDEX),
89
90
    block_size(0)
90
91
  {
91
92
  }
92
93
 
93
 
  ha_key_alg algorithm;
 
94
  drizzled::message::Table::Index::IndexType algorithm;
94
95
  uint32_t block_size;
95
96
  str_ref comment;
96
97
};