~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/varstring.h

  • Committer: Patrick Galbraith
  • Date: 2010-10-03 13:40:30 UTC
  • mto: (1812.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 1813.
  • Revision ID: patg@patg-desktop-20101003134030-j13wf1e79za77jtf
Added license to start_mc.sh.in to clear up ambiguity

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
                  unsigned char *null_ptr_arg,
52
52
                  unsigned char null_bit_arg,
53
53
                  const char *field_name_arg,
 
54
                  TableShare *share,
54
55
                  const CHARSET_INFO * const cs);
55
56
  Field_varstring(uint32_t len_arg,
56
57
                  bool maybe_null_arg,
57
58
                  const char *field_name_arg,
 
59
                  TableShare *share,
58
60
                  const CHARSET_INFO * const cs);
59
61
 
60
62
  enum_field_types type() const { return DRIZZLE_TYPE_VARCHAR; }
78
80
  int64_t val_int(void);
79
81
  String *val_str(String*,String *);
80
82
  inline String *val_str(String *str) { return val_str(str, str); }
81
 
  type::Decimal *val_decimal(type::Decimal *);
 
83
  my_decimal *val_decimal(my_decimal *);
82
84
  int cmp_max(const unsigned char *, const unsigned char *, uint32_t max_length);
83
85
  inline  int cmp(const unsigned char *str) { return cmp(ptr,str); }
84
86
  int cmp(const unsigned char *a,const unsigned char *b)