~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/create_field.h

  • Committer: Brian Aker
  • Date: 2011-07-25 14:24:19 UTC
  • mto: This revision was merged to the branch mainline in revision 2373.
  • Revision ID: brian@tangent.org-20110725142419-3vobv9u6k7jp4qej
Remove the typedef on lexkey

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
  const char *field_name; /**< Name of the field to be created */
36
36
  const char *change; /**< If done with alter table */
37
37
  const char *after; /**< Put this new Field after this Field */
38
 
  LEX_STRING comment; /**< A comment for this field */
 
38
  lex_string_t comment; /**< A comment for this field */
39
39
  Item *def; /**< Default value for the new field */
40
40
  enum enum_field_types sql_type; /**< The data type of the new field */
41
41
 
114
114
            char *length,
115
115
            char *decimals,
116
116
            uint32_t type_modifier,
117
 
            LEX_STRING *comment,
 
117
            lex_string_t *comment,
118
118
            char *change,
119
119
            List<String> *interval_list,
120
120
            const charset_info_st * const cs,