483.1.4
by Lee
break out Field_longstr |
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_LONGSTR
|
|
22 |
#define DRIZZLE_SERVER_FIELD_LONGSTR
|
|
23 |
||
584.5.1
by Monty Taylor
Removed field includes from field.h. |
24 |
#include <drizzled/field/str.h> |
25 |
||
483.1.4
by Lee
break out Field_longstr |
26 |
/* base class for Field_varstring and Field_blob */
|
27 |
||
28 |
class Field_longstr :public Field_str |
|
29 |
{
|
|
30 |
protected: |
|
31 |
int report_if_important_data(const char *ptr, const char *end); |
|
32 |
public: |
|
33 |
Field_longstr(unsigned char *ptr_arg, uint32_t len_arg, unsigned char *null_ptr_arg, |
|
34 |
unsigned char null_bit_arg, utype unireg_check_arg, |
|
35 |
const char *field_name_arg, const CHARSET_INFO * const charset_arg) |
|
36 |
:Field_str(ptr_arg, len_arg, null_ptr_arg, null_bit_arg, unireg_check_arg, |
|
37 |
field_name_arg, charset_arg) |
|
38 |
{}
|
|
39 |
||
40 |
int store_decimal(const my_decimal *d); |
|
41 |
uint32_t max_data_length() const; |
|
42 |
};
|
|
43 |
||
44 |
#endif
|