~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/varstring.h

Dead code removal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
 
60
60
  enum_field_types type() const { return DRIZZLE_TYPE_VARCHAR; }
61
61
  enum ha_base_keytype key_type() const;
62
 
  uint32_t row_pack_length() { return field_length; }
63
62
  bool zero_pack() const { return 0; }
64
63
  int  reset(void) { memset(ptr, 0, field_length+length_bytes); return 0; }
65
64
  uint32_t pack_length() const { return (uint32_t) field_length+length_bytes; }