483.1.6
by Lee
code clean up for Field_num |
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_NUM
|
|
22 |
#define DRIZZLE_SERVER_FIELD_NUM
|
|
23 |
||
24 |
class Field_num :public Field { |
|
25 |
public: |
|
26 |
const uint8_t dec; |
|
27 |
bool decimal_precision; // Purify cannot handle bit fields & only for decimal type |
|
28 |
bool unsigned_flag; // Purify cannot handle bit fields |
|
29 |
Field_num(unsigned char *ptr_arg,uint32_t len_arg, unsigned char *null_ptr_arg, |
|
30 |
unsigned char null_bit_arg, utype unireg_check_arg, |
|
31 |
const char *field_name_arg, |
|
32 |
uint8_t dec_arg, bool zero_arg, bool unsigned_arg); |
|
33 |
Item_result result_type () const { return REAL_RESULT; } |
|
34 |
friend class Create_field; |
|
35 |
void make_field(Send_field *); |
|
36 |
uint32_t decimals() const { return (uint32_t) dec; } |
|
37 |
uint32_t size_of() const { return sizeof(*this); } |
|
38 |
bool eq_def(Field *field); |
|
39 |
int store_decimal(const my_decimal *); |
|
40 |
my_decimal *val_decimal(my_decimal *); |
|
41 |
uint32_t is_equal(Create_field *new_field); |
|
42 |
int check_int(const CHARSET_INFO * const cs, const char *str, int length, |
|
43 |
const char *int_end, int error); |
|
44 |
bool get_int(const CHARSET_INFO * const cs, const char *from, uint32_t len, |
|
45 |
int64_t *rnd, uint64_t unsigned_max, |
|
46 |
int64_t signed_min, int64_t signed_max); |
|
47 |
};
|
|
48 |
||
49 |
||
50 |
#endif
|