~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/int32.h

  • Committer: Brian Aker
  • Date: 2011-02-12 06:56:00 UTC
  • mto: This revision was merged to the branch mainline in revision 2161.
  • Revision ID: brian@tangent.org-20110212065600-m6c68fybw51rflhj
Further strip out includes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
  int store(double nr);
63
63
  int store(int64_t nr, bool unsigned_val);
64
64
  int reset(void) { ptr[0]=ptr[1]=ptr[2]=ptr[3]=0; return 0; }
65
 
  double val_real(void) const;
66
 
  int64_t val_int(void) const;
67
 
  String *val_str(String*,String *) const;
 
65
  double val_real(void);
 
66
  int64_t val_int(void);
 
67
  String *val_str(String*,String *);
68
68
  int cmp(const unsigned char *,const unsigned char *);
69
69
  void sort_string(unsigned char *buff,uint32_t length);
70
70
  uint32_t pack_length() const { return 4; }