~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/create_field.cc

  • Committer: Eric Day
  • Date: 2009-08-31 23:50:37 UTC
  • mto: This revision was merged to the branch mainline in revision 1134.
  • Revision ID: eday@oddments.org-20090831235037-hwwe6zhq94o4lxtd
Removed purecov messages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
219
219
    flags|= NO_DEFAULT_VALUE_FLAG;
220
220
 
221
221
  if (fld_length && !(length= (uint32_t) atoi(fld_length)))
222
 
    fld_length= 0; /* purecov: inspected */
 
222
    fld_length= 0;
223
223
  sign_len= fld_type_modifier & UNSIGNED_FLAG ? 0 : 1;
224
224
 
225
225
  switch (fld_type) 
374
374
  {
375
375
    my_error((fld_type == DRIZZLE_TYPE_VARCHAR) ?  ER_TOO_BIG_FIELDLENGTH : ER_TOO_BIG_DISPLAYWIDTH,
376
376
              MYF(0),
377
 
              fld_name, max_field_charlength); /* purecov: inspected */
 
377
              fld_name, max_field_charlength);
378
378
    return true;
379
379
  }
380
380
  fld_type_modifier&= AUTO_INCREMENT_FLAG;