~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/create_field.h

  • Committer: Devananda
  • Date: 2009-07-04 01:55:13 UTC
  • mto: (1086.10.1 length-plugin)
  • mto: This revision was merged to the branch mainline in revision 1095.
  • Revision ID: deva@myst-20090704015513-gtqliazxtfm7sdvf
refactored function/length into plugin/length

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008-2009 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008-2009 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
20
20
#ifndef DRIZZLED_CREATE_FIELD_H
21
21
#define DRIZZLED_CREATE_FIELD_H
22
22
 
23
 
#include "drizzled/field.h"
24
 
 
25
 
namespace drizzled
26
 
{
27
 
class Item;
28
 
typedef struct st_typelib TYPELIB;
 
23
#include <vector>
29
24
 
30
25
/**
31
26
 * Class representing a field in a CREATE TABLE statement.
33
28
 * Basically, all information for a new or altered field
34
29
 * definition is contained in the Create_field class.
35
30
 */
36
 
class CreateField :public memory::SqlAlloc
 
31
class CreateField :public Sql_alloc
37
32
{
38
33
public:
39
34
  const char *field_name; /**< Name of the field to be created */
42
37
  LEX_STRING comment; /**< A comment for this field */
43
38
  Item *def; /**< Default value for the new field */
44
39
  enum enum_field_types sql_type; /**< The data type of the new field */
45
 
 
46
 
  enum_field_types type() const
47
 
  {
48
 
    return sql_type;
49
 
  }
50
 
 
51
40
  /**
52
41
   * At various stages in execution this can be length of field in bytes or
53
42
   * max number of characters.
64
53
  uint32_t key_length;
65
54
  Field::utype unireg_check; /**< See Field::unireg_check */
66
55
  TYPELIB *interval; /**< Which interval to use (ENUM types..) */
67
 
  List<String> interval_list;
 
56
  std::vector<String*> interval_list;
68
57
  const CHARSET_INFO *charset; /**< Character set for the column -- @TODO should be deleted */
69
58
  Field *field; // For alter table
70
59
 
71
60
  uint8_t interval_id;  // For rea_create_table
72
61
  uint32_t offset;
 
62
  uint32_t pack_flag;
73
63
 
74
64
  CreateField() :after(0) {}
75
65
  CreateField(Field *field, Field *orig_field);
76
66
  /* Used to make a clone of this object for ALTER/CREATE TABLE */
77
 
  CreateField *clone(memory::Root *mem_root) const
 
67
  CreateField *clone(MEM_ROOT *mem_root) const
78
68
    { return new (mem_root) CreateField(*this); }
79
69
  void create_length_to_internal_length(void);
80
70
 
92
82
  void init_for_tmp_table(enum_field_types sql_type_arg,
93
83
                          uint32_t max_length,
94
84
                          uint32_t decimals,
95
 
                          bool maybe_null);
 
85
                          bool maybe_null,
 
86
                          bool is_unsigned);
96
87
 
97
88
  /**
98
89
    Initialize field definition for create.
131
122
            enum column_format_type column_format);
132
123
};
133
124
 
134
 
std::ostream& operator<<(std::ostream& output, const CreateField &field);
135
 
 
136
 
} /* namespace drizzled */
137
 
 
138
125
#endif /* DRIZZLED_CREATE_FIELD_H */