~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.cc

  • Committer: Nathan Williams
  • Date: 2009-06-05 22:51:06 UTC
  • mto: This revision was merged to the branch mainline in revision 1063.
  • Revision ID: nathanlws@gmail.com-20090605225106-8xrsftpf50tdpumn
No actual code changes. Changed Create_field to CreateField to be consistent with coding standards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1796
1796
                       char *change,
1797
1797
                       List<String> *interval_list, const CHARSET_INFO * const cs)
1798
1798
{
1799
 
  register Create_field *new_field;
 
1799
  register CreateField *new_field;
1800
1800
  LEX  *lex= session->lex;
1801
1801
 
1802
1802
  if (check_identifier_name(field_name, ER_TOO_LONG_IDENT))
1862
1862
    return(1);
1863
1863
  }
1864
1864
 
1865
 
  if (!(new_field= new Create_field()) ||
 
1865
  if (!(new_field= new CreateField()) ||
1866
1866
      new_field->init(session, field_name->str, type, length, decimals, type_modifier,
1867
1867
                      default_value, on_update_value, comment, change,
1868
1868
                      interval_list, cs, 0, column_format))