~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/uuid.h

  • Committer: Brian Aker
  • Date: 2010-12-26 01:00:32 UTC
  • Revision ID: brian@tangent.org-20101226010032-o1p4ob1i9fz4x7oc
Update for linted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <drizzled/field.h>
25
25
#include <string>
26
26
 
27
 
#include "drizzled/field/uuid_st.h"
 
27
#include "drizzled/type/uuid.h"
28
28
 
29
29
namespace drizzled
30
30
{
45
45
  enum_field_types type() const { return DRIZZLE_TYPE_UUID; }
46
46
  enum ha_base_keytype key_type() const { return HA_KEYTYPE_BINARY; }
47
47
  bool zero_pack() const { return 0; }
48
 
  int  reset(void) { memset(ptr, 0, uuid_st::LENGTH); return 0; }
49
 
  uint32_t pack_length() const { return uuid_st::LENGTH; }
50
 
  uint32_t key_length() const { return uuid_st::LENGTH; }
 
48
  int  reset(void) { memset(ptr, 0, type::Uuid::LENGTH); return 0; }
 
49
  uint32_t pack_length() const { return type::Uuid::LENGTH; }
 
50
  uint32_t key_length() const { return type::Uuid::LENGTH; }
51
51
 
52
52
  int store(const char *to, uint32_t length, const CHARSET_INFO * const charset);
53
53
  int store(int64_t nr, bool unsigned_val);
60
60
  Item_result result_type () const { return STRING_RESULT; }
61
61
  int cmp(const unsigned char*, const unsigned char*);
62
62
  void sort_string(unsigned char*, uint32_t);
63
 
  uint32_t max_display_length() { return uuid_st::DISPLAY_LENGTH; }
 
63
  uint32_t max_display_length() { return type::Uuid::DISPLAY_LENGTH; }
64
64
 
65
65
  int  store(double ) { return 0; }
66
66
  inline String *val_str(String *str) { return val_str(str, str); }
76
76
 
77
77
  static size_t max_string_length()
78
78
  {
79
 
    return uuid_st::LENGTH;
 
79
    return type::Uuid::LENGTH;
80
80
  }
81
81
};
82
82