~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.cc

  • Committer: Brian Aker
  • Date: 2008-07-31 19:48:32 UTC
  • Revision ID: brian@tangent.org-20080731194832-l161fwgs7817tdkc
Final Pass of removing field string, class is stil in place.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4131
4131
  case DRIZZLE_TYPE_DATETIME:
4132
4132
    field= new Field_datetime(maybe_null, name, &my_charset_bin);
4133
4133
    break;
4134
 
  case DRIZZLE_TYPE_STRING:
4135
4134
  default:
4136
4135
    /* This case should never be chosen */
4137
4136
    assert(0);
4658
4657
  enum_field_types f_type;
4659
4658
 
4660
4659
  switch ((f_type=field_type())) {
4661
 
  case DRIZZLE_TYPE_STRING:
4662
 
    assert(0);
4663
4660
  default:
4664
4661
  case DRIZZLE_TYPE_NULL:
4665
4662
  case DRIZZLE_TYPE_ENUM:
6368
6365
  case DRIZZLE_TYPE_ENUM:
6369
6366
  case DRIZZLE_TYPE_SET:
6370
6367
  case DRIZZLE_TYPE_BLOB:
6371
 
  case DRIZZLE_TYPE_STRING:
6372
6368
  case DRIZZLE_TYPE_TINY:
6373
6369
    return 4;
6374
6370
  case DRIZZLE_TYPE_SHORT: