~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/double.h

  • Committer: Brian Aker
  • Date: 2008-07-14 22:40:46 UTC
  • Revision ID: brian@tangent.org-20080714224046-x183907w9wp1txwv
Removed sql_manager. Ever heard of just setting up the OS to sync when you
want it to?

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* - mode: c++ c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 
 *
4
 
 *  Copyright (C) 2008 MySQL
5
 
 *
6
 
 *  This program is free software; you can redistribute it and/or modify
7
 
 *  it under the terms of the GNU General Public License as published by
8
 
 *  the Free Software Foundation; either version 2 of the License, or
9
 
 *  (at your option) any later version.
10
 
 *
11
 
 *  This program is distributed in the hope that it will be useful,
12
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 *  GNU General Public License for more details.
15
 
 *
16
 
 *  You should have received a copy of the GNU General Public License
17
 
 *  along with this program; if not, write to the Free Software
18
 
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 
 */
20
 
 
21
 
#ifndef DRIZZLE_SERVER_FIELD_DOUBLE
22
 
#define DRIZZLE_SERVER_FIELD_DOUBLE
23
 
 
24
 
class Field_double :public Field_real {
25
 
public:
26
 
  Field_double(unsigned char *ptr_arg, uint32_t len_arg, unsigned char *null_ptr_arg,
27
 
               unsigned char null_bit_arg,
28
 
               enum utype unireg_check_arg, const char *field_name_arg,
29
 
               uint8_t dec_arg,bool zero_arg,bool unsigned_arg)
30
 
    :Field_real(ptr_arg, len_arg, null_ptr_arg, null_bit_arg,
31
 
                unireg_check_arg, field_name_arg,
32
 
                dec_arg, zero_arg, unsigned_arg)
33
 
    {}
34
 
  Field_double(uint32_t len_arg, bool maybe_null_arg, const char *field_name_arg,
35
 
               uint8_t dec_arg)
36
 
    :Field_real((unsigned char*) 0, len_arg, maybe_null_arg ? (unsigned char*) "" : 0, (uint) 0,
37
 
                NONE, field_name_arg, dec_arg, 0, 0)
38
 
    {}
39
 
  Field_double(uint32_t len_arg, bool maybe_null_arg, const char *field_name_arg,
40
 
               uint8_t dec_arg, bool not_fixed_arg)
41
 
    :Field_real((unsigned char*) 0, len_arg, maybe_null_arg ? (unsigned char*) "" : 0, (uint) 0,
42
 
                NONE, field_name_arg, dec_arg, 0, 0)
43
 
    {not_fixed= not_fixed_arg; }
44
 
  enum_field_types type() const { return DRIZZLE_TYPE_DOUBLE;}
45
 
  enum ha_base_keytype key_type() const { return HA_KEYTYPE_DOUBLE; }
46
 
  int  store(const char *to,uint32_t length, const CHARSET_INFO * const charset);
47
 
  int  store(double nr);
48
 
  int  store(int64_t nr, bool unsigned_val);
49
 
  int reset(void) { memset(ptr, 0, sizeof(double)); return 0; }
50
 
  double val_real(void);
51
 
  int64_t val_int(void);
52
 
  String *val_str(String*,String *);
53
 
  bool send_binary(Protocol *protocol);
54
 
  int cmp(const unsigned char *,const unsigned char *);
55
 
  void sort_string(unsigned char *buff,uint32_t length);
56
 
  uint32_t pack_length() const { return sizeof(double); }
57
 
  uint32_t row_pack_length() { return pack_length(); }
58
 
  void sql_type(String &str) const;
59
 
private:
60
 
  int do_save_field_metadata(unsigned char *first_byte);
61
 
};
62
 
 
63
 
#endif
64