~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/blob.h

  • Committer: Monty Taylor
  • Date: 2008-08-22 04:23:29 UTC
  • mto: (365.1.2 drizzle)
  • mto: This revision was merged to the branch mainline in revision 368.
  • Revision ID: monty@inaugust.com-20080822042329-ldq50y12vcq8rxh8
Undid some stupid int->int16_t conversions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
  int64_t val_int(void);
66
66
  String *val_str(String*,String *);
67
67
  my_decimal *val_decimal(my_decimal *);
68
 
  int cmp_max(const uchar *, const uchar *, uint max_length);
 
68
  int cmp_max(const uchar *, const uchar *, uint32_t max_length);
69
69
  int cmp(const uchar *a,const uchar *b)
70
 
    { return cmp_max(a, b, ~0L); }
 
70
    { return cmp_max(a, b, UINT32_MAX); }
71
71
  int cmp(const uchar *a, uint32_t a_length, const uchar *b, uint32_t b_length);
72
72
  int cmp_binary(const uchar *a,const uchar *b, uint32_t max_length=~0L);
73
73
  int key_cmp(const uchar *,const uchar*);