~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

  • Committer: Mark Atwood
  • Date: 2011-10-05 15:24:11 UTC
  • mfrom: (2420.2.4 rf)
  • Revision ID: me@mark.atwood.name-20111005152411-xksdn4vulhmtz2x4
mergeĀ lp:~olafvdspek/drizzle/refactor1a

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>
36
35
#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
 
typedef struct key_create_information_st
 
85
struct KEY_CREATE_INFO
86
86
{
 
87
  KEY_CREATE_INFO() :
 
88
    algorithm(HA_KEY_ALG_UNDEF),
 
89
    block_size(0)
 
90
  {
 
91
    comment.clear();
 
92
  }
 
93
 
87
94
  ha_key_alg algorithm;
88
95
  uint32_t block_size;
89
 
  lex_string_t comment;
90
 
} KEY_CREATE_INFO;
 
96
  str_ref comment;
 
97
};
91
98
 
92
99
 
93
100
typedef struct st_range_seq_if