~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/create_field.h

  • Committer: Brian Aker
  • Date: 2010-10-27 21:00:49 UTC
  • mto: This revision was merged to the branch mainline in revision 1886.
  • Revision ID: brian@tangent.org-20101027210049-zfpgx2cfbrh8maq9
A couple of fixes to documentation.

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
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.
131
126
            enum column_format_type column_format);
132
127
};
133
128
 
134
 
std::ostream& operator<<(std::ostream& output, const CreateField &field);
135
 
 
136
129
} /* namespace drizzled */
137
130
 
138
131
#endif /* DRIZZLED_CREATE_FIELD_H */