~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/create_field.h

  • Committer: Djellel E. Difallah
  • Date: 2010-03-27 10:10:49 UTC
  • mto: This revision was merged to the branch mainline in revision 1429.
  • Revision ID: ded@ubuntu-20100327101049-oo3arvatjoyku124
merge my_decimal and decimal

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>
 
23
#include "drizzled/field.h"
24
24
 
25
25
namespace drizzled
26
26
{
 
27
 
27
28
class Item;
28
29
typedef struct st_typelib TYPELIB;
29
30
 
42
43
  LEX_STRING comment; /**< A comment for this field */
43
44
  Item *def; /**< Default value for the new field */
44
45
  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
46
  /**
52
47
   * At various stages in execution this can be length of field in bytes or
53
48
   * max number of characters.
70
65
 
71
66
  uint8_t interval_id;  // For rea_create_table
72
67
  uint32_t offset;
 
68
  uint32_t pack_flag;
73
69
 
74
70
  CreateField() :after(0) {}
75
71
  CreateField(Field *field, Field *orig_field);
131
127
            enum column_format_type column_format);
132
128
};
133
129
 
134
 
std::ostream& operator<<(std::ostream& output, const CreateField &field);
135
 
 
136
130
} /* namespace drizzled */
137
131
 
138
132
#endif /* DRIZZLED_CREATE_FIELD_H */