~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/key.h

  • Committer: Olaf van der Spek
  • Date: 2011-08-05 13:28:48 UTC
  • mto: This revision was merged to the branch mainline in revision 2395.
  • Revision ID: olafvdspek@gmail.com-20110805132848-vvwjg6pgwf56xnsd
Use const char* instead of str_ref

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 */
19
19
 
20
20
 
21
 
#ifndef DRIZZLED_KEY_H
22
 
#define DRIZZLED_KEY_H
 
21
#pragma once
23
22
 
24
23
#include <string>
25
24
#include <boost/dynamic_bitset.hpp>
26
25
 
27
 
#include "drizzled/memory/sql_alloc.h"
28
 
#include "drizzled/key_part_spec.h"
29
 
#include "drizzled/sql_list.h"
30
 
#include "drizzled/lex_string.h"
31
 
#include "drizzled/sql_string.h"
32
 
#include "drizzled/handler_structs.h"
33
 
 
34
 
namespace drizzled
35
 
{
36
 
 
37
 
namespace memory { class Root; }
38
 
 
39
 
class Item;
 
26
#include <drizzled/memory/sql_alloc.h>
 
27
#include <drizzled/key_part_spec.h>
 
28
#include <drizzled/sql_list.h>
 
29
#include <drizzled/lex_string.h>
 
30
#include <drizzled/sql_string.h>
 
31
#include <drizzled/handler_structs.h>
 
32
 
 
33
namespace drizzled {
40
34
 
41
35
class Key :public memory::SqlAlloc {
42
36
public:
44
38
  Keytype type;
45
39
  KEY_CREATE_INFO key_create_info;
46
40
  List<Key_part_spec> columns;
47
 
  LEX_STRING name;
 
41
  lex_string_t name;
48
42
  bool generated;
49
43
 
50
44
  Key(Keytype type_par,
109
103
 
110
104
} /* namespace drizzled */
111
105
 
112
 
#endif /* DRIZZLED_KEY_H */