~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/create_field.h

Merged Nathan (and added a valgrind suppression)

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_CREATE_FIELD_H
21
21
#define DRIZZLED_CREATE_FIELD_H
22
22
 
23
 
#include <vector>
24
 
 
25
23
/**
26
24
 * Class representing a field in a CREATE TABLE statement.
27
25
 *
53
51
  uint32_t key_length;
54
52
  Field::utype unireg_check; /**< See Field::unireg_check */
55
53
  TYPELIB *interval; /**< Which interval to use (ENUM types..) */
56
 
  std::vector<String*> interval_list;
 
54
  List<String> interval_list;
57
55
  const CHARSET_INFO *charset; /**< Character set for the column -- @TODO should be deleted */
58
56
  Field *field; // For alter table
59
57