~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/long.h

  • Committer: Stewart Smith
  • Date: 2008-09-15 07:13:59 UTC
  • mfrom: (383.1.21 drizzle)
  • mto: This revision was merged to the branch mainline in revision 408.
  • Revision ID: stewart@flamingspork.com-20080915071359-f8bznznyaiqrtqxa
merged

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLE_SERVER_FIELD_LONG
22
22
#define DRIZZLE_SERVER_FIELD_LONG
23
23
 
24
 
#include <drizzled/mysql_priv.h>
25
 
 
26
24
class Field_long :public Field_num {
27
25
public:
28
26
  Field_long(uchar *ptr_arg, uint32_t len_arg, uchar *null_ptr_arg,
42
40
  enum_field_types type() const { return DRIZZLE_TYPE_LONG;}
43
41
  enum ha_base_keytype key_type() const
44
42
    { return unsigned_flag ? HA_KEYTYPE_ULONG_INT : HA_KEYTYPE_LONG_INT; }
45
 
  int store(const char *to,uint length,CHARSET_INFO *charset);
 
43
  int store(const char *to,uint length, const CHARSET_INFO * const charset);
46
44
  int store(double nr);
47
45
  int store(int64_t nr, bool unsigned_val);
48
46
  int reset(void) { ptr[0]=ptr[1]=ptr[2]=ptr[3]=0; return 0; }