~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

  • Committer: Brian Aker
  • Date: 2011-09-26 15:02:54 UTC
  • mto: This revision was merged to the branch mainline in revision 2427.
  • Revision ID: brian@tangent.org-20110926150254-zpi0gifzexj2crdt
Wrap thread specfic

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
#include <drizzled/base.h>
34
34
#include <drizzled/definitions.h>
 
35
#include <drizzled/lex_string.h>
35
36
#include <drizzled/structs.h>
36
 
#include <drizzled/util/data_ref.h>
37
37
 
38
38
namespace drizzled {
39
39
 
82
82
} HA_ALTER_INFO;
83
83
 
84
84
 
85
 
struct KEY_CREATE_INFO
 
85
typedef struct key_create_information_st
86
86
{
87
 
  KEY_CREATE_INFO() :
88
 
    algorithm(HA_KEY_ALG_UNDEF),
89
 
    block_size(0)
90
 
  {
91
 
  }
92
 
 
93
87
  ha_key_alg algorithm;
94
88
  uint32_t block_size;
95
 
  str_ref comment;
96
 
};
 
89
  lex_string_t comment;
 
90
} KEY_CREATE_INFO;
97
91
 
98
92
 
99
93
typedef struct st_range_seq_if