~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/blob.h

  • Committer: Brian Aker
  • Date: 2009-01-28 19:37:25 UTC
  • mfrom: (779.3.11 devel)
  • Revision ID: brian@tangent.org-20090128193725-pz7g7dnp2dx0863e
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
class Item_blob :public Item_string
26
26
{
27
27
public:
28
 
  Item_blob(const char *name, uint32_t length) :
29
 
    Item_string(name, length, &my_charset_bin)
 
28
  Item_blob(const char *item_name, uint32_t length) :
 
29
    Item_string(item_name, length, &my_charset_bin)
30
30
  { max_length= length; }
31
31
  enum Type type() const { return TYPE_HOLDER; }
32
32
  enum_field_types field_type() const { return DRIZZLE_TYPE_BLOB; }