~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/varstring.h

  • Committer: Monty Taylor
  • Date: 2009-12-29 18:26:43 UTC
  • mfrom: (1257 build)
  • mto: This revision was merged to the branch mainline in revision 1258.
  • Revision ID: mordred@inaugust.com-20091229182643-bv3c4va7rit6wmvl
MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
106
106
  enum_field_types real_type() const { return DRIZZLE_TYPE_VARCHAR; }
107
107
  bool has_charset(void) const
108
108
  { return charset() == &my_charset_bin ? false : true; }
109
 
  Field *new_field(MEM_ROOT *root, Table *new_table, bool keep_type);
110
 
  Field *new_key_field(MEM_ROOT *root, Table *new_table,
 
109
  Field *new_field(drizzled::memory::Root *root, Table *new_table, bool keep_type);
 
110
  Field *new_key_field(drizzled::memory::Root *root, Table *new_table,
111
111
                       unsigned char *new_ptr, unsigned char *new_null_ptr,
112
112
                       uint32_t new_null_bit);
113
113
};