~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/int64_t.h

  • Committer: Brian Aker
  • Date: 2008-12-18 17:54:22 UTC
  • mfrom: (713.1.5 devel)
  • Revision ID: brian@tangent.org-20081218175422-zqfm3mpueuq7z2az
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
class Field_int64_t :public Field_num {
27
27
public:
28
 
 
29
 
  using Field::val_int;
30
 
  using Field::val_str;
31
 
  using Field::cmp;
32
 
  using Field::store;
33
 
  using Field::pack;
34
 
  using Field::unpack;
35
 
 
36
28
  Field_int64_t(unsigned char *ptr_arg, uint32_t len_arg,
37
29
                unsigned char *null_ptr_arg,
38
30
                unsigned char null_bit_arg,
63
55
  double val_real(void);
64
56
  int64_t val_int(void);
65
57
  String *val_str(String*,String *);
 
58
  bool send_binary(Protocol *protocol);
66
59
  int cmp(const unsigned char *,const unsigned char *);
67
60
  void sort_string(unsigned char *buff,uint32_t length);
68
61
  uint32_t pack_length() const { return 8; }