~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/sql_show.cc

  • Committer: Brian Aker
  • Date: 2008-07-05 19:24:24 UTC
  • mfrom: (53.2.8 codestyle)
  • Revision ID: brian@tangent.org-20080705192424-3uslywtteymm7xqy
First pass of removing BIT_TYPE

Show diffs side-by-side

added added

removed removed

Lines of Context:
3120
3120
  case MYSQL_TYPE_INT24:
3121
3121
    field_length= field->max_display_length() - 1;
3122
3122
    break;
3123
 
  case MYSQL_TYPE_BIT:
3124
 
    field_length= field->max_display_length();
3125
 
    decimals= -1;                             // return NULL
3126
 
    break;
3127
3123
  case MYSQL_TYPE_FLOAT:  
3128
3124
  case MYSQL_TYPE_DOUBLE:
3129
3125
    field_length= field->field_length;