~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.cc

merge innobase 1.0.9 build fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1192
1192
  case DRIZZLE_TYPE_VARCHAR:
1193
1193
    return make_string_field(table);
1194
1194
  case DRIZZLE_TYPE_BLOB:
1195
 
    if (this->type() == Item::TYPE_HOLDER)
1196
 
      field= new Field_blob(max_length, maybe_null, name, collation.collation,
1197
 
                            1);
1198
 
    else
1199
1195
      field= new Field_blob(max_length, maybe_null, name, collation.collation);
1200
1196
    break;                                      // Blob handled outside of case
1201
1197
  }