~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/double.h

  • Committer: Joe Daly
  • Date: 2010-01-06 02:20:42 UTC
  • mto: This revision was merged to the branch mainline in revision 1267.
  • Revision ID: skinny.moey@gmail.com-20100106022042-8ov23wc4aq8f9k7d
rename hash_algorithm to algorithm

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include <drizzled/field/real.h>
25
25
 
26
 
namespace drizzled
27
 
{
28
 
 
29
26
class Field_double :public Field_real {
30
27
public:
31
28
 
65
62
  int cmp(const unsigned char *,const unsigned char *);
66
63
  void sort_string(unsigned char *buff,uint32_t length);
67
64
  uint32_t pack_length() const { return sizeof(double); }
 
65
  uint32_t row_pack_length() { return pack_length(); }
68
66
  void sql_type(String &str) const;
69
67
};
70
68
 
71
 
} /* namespace drizzled */
72
 
 
73
69
#endif /* DRIZZLED_FIELD_DOUBLE_H */
74
70