~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/create_field.h

  • Committer: Monty Taylor
  • Date: 2009-10-06 19:14:39 UTC
  • mfrom: (1130.2.18 plugin-base-class)
  • mto: This revision was merged to the branch mainline in revision 1184.
  • Revision ID: mordred@inaugust.com-20091006191439-fd1vvlp22654l3k3
Merged latest plugin-base-class.

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
23
class Item;
28
 
typedef struct st_typelib TYPELIB;
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.
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
 
131
121
            enum column_format_type column_format);
132
122
};
133
123
 
134
 
std::ostream& operator<<(std::ostream& output, const CreateField &field);
135
 
 
136
 
} /* namespace drizzled */
137
 
 
138
124
#endif /* DRIZZLED_CREATE_FIELD_H */