~posulliv/drizzle/memcached_applier

« back to all changes in this revision

Viewing changes to drizzled/create_field.h

  • Committer: Jay Pipes
  • Date: 2009-08-03 14:23:22 UTC
  • mfrom: (1039.2.68 staging)
  • mto: This revision was merged to the branch mainline in revision 1078.
  • Revision ID: jpipes@serialcoder-20090803142322-1g67h7su9mocg9ig
Merge trunk

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