~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/uuid.h

  • Committer: Brian Aker
  • Date: 2011-03-28 02:46:21 UTC
  • Revision ID: brian@tangent.org-20110328024621-wtkdtlvdplqm0ybf
Shift CHARSET_INFO to charset_info_st

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
{
32
32
 
33
33
class Uuid :public Field {
34
 
  const CHARSET_INFO *field_charset;
 
34
  const charset_info_st *field_charset;
35
35
  bool is_set;
36
36
 
37
37
public:
48
48
  uint32_t pack_length() const { return type::Uuid::LENGTH; }
49
49
  uint32_t key_length() const { return type::Uuid::LENGTH; }
50
50
 
51
 
  int store(const char *to, uint32_t length, const CHARSET_INFO * const charset);
 
51
  int store(const char *to, uint32_t length, const charset_info_st * const charset);
52
52
  int store(int64_t nr, bool unsigned_val);
53
53
  double val_real() const;
54
54
  int64_t val_int() const;