~drizzle-trunk/drizzle/development

390.1.2 by Monty Taylor
Fixed copyright headers in drizzled/
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
4
 *  Copyright (C) 2008 Sun Microsystems
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; version 2 of the License.
9
 *
10
 *  This program is distributed in the hope that it will be useful,
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 *  GNU General Public License for more details.
14
 *
15
 *  You should have received a copy of the GNU General Public License
16
 *  along with this program; if not, write to the Free Software
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 */
1 by brian
clean slate
19
20
/*
21
  Because of the function new_field() all field classes that have static
22
  variables must declare the size_of() member function.
23
*/
24
520.8.2 by Monty Taylor
Moved sql_parse.h and sql_error.h out of common_includes.
25
#ifndef DRIZZLED_FIELD_H
26
#define DRIZZLED_FIELD_H
27
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
28
#include "drizzled/sql_error.h"
1410.3.1 by Djellel E. Difallah
merge my_decimal and decimal
29
#include "drizzled/decimal.h"
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
30
#include "drizzled/key_map.h"
31
#include "drizzled/sql_bitmap.h"
32
#include "drizzled/sql_list.h"
33
#include "drizzled/structs.h"
1241.9.61 by Monty Taylor
No more mystrings in drizzled/
34
#include "drizzled/charset_info.h"
1315.2.14 by Stewart Smith
move Item_result out to its own header file and out of common.h
35
#include "drizzled/item_result.h"
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
36
656.1.1 by Monty Taylor
OOOh doggie. Got rid of my_alloca.
37
#include <string>
1052.2.5 by Nathan Williams
Changed container from list to vector for CreateField::interval_list. There is never inserts into the middle of the container, only push_back. Per jaypipes suggestion.
38
#include <vector>
1 by brian
clean slate
39
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
40
namespace drizzled
41
{
42
1 by brian
clean slate
43
#define DATETIME_DEC                     6
173.1.9 by Toru Maesaka
ripped out DOUBLE and moved to field/
44
#define DOUBLE_TO_STRING_CONVERSION_BUFFER_SIZE FLOATING_POINT_BUFFER
1091 by Brian Aker
Collection of patches from new-cleanup (includes asserts for field in debug)
45
46
#ifdef DEBUG
1089.1.3 by Brian Aker
Fix protobuf to release memory. Add in assert() for wrong column usage. Fix
47
#define ASSERT_COLUMN_MARKED_FOR_READ assert(!table || (table->read_set == NULL || isReadSet()))
48
#define ASSERT_COLUMN_MARKED_FOR_WRITE assert(!table || (table->write_set == NULL || isWriteSet()))
1091 by Brian Aker
Collection of patches from new-cleanup (includes asserts for field in debug)
49
#else
50
#define ASSERT_COLUMN_MARKED_FOR_READ
51
#define ASSERT_COLUMN_MARKED_FOR_WRITE
52
#endif
173.1.9 by Toru Maesaka
ripped out DOUBLE and moved to field/
53
1241.9.51 by Monty Taylor
More mysys stuff out of headers.
54
typedef struct st_typelib TYPELIB;
55
205 by Brian Aker
uint32 -> uin32_t
56
const uint32_t max_field_size= (uint32_t) 4294967295U;
1 by brian
clean slate
57
1052.2.4 by Nathan Williams
No actual code changes. Changed Send_field to SendField to be consistent with coding standards.
58
class SendField;
1052.2.3 by Nathan Williams
No actual code changes. Changed Create_field to CreateField to be consistent with coding standards.
59
class CreateField;
1000.1.3 by Brian Aker
Renamed TABLE_SHARE to TableShare
60
class TableShare;
798.2.29 by Brian Aker
Detangle more of the session object
61
class Field;
1 by brian
clean slate
62
struct st_cache_field;
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
63
1 by brian
clean slate
64
int field_conv(Field *to,Field *from);
65
438.1.13 by Brian Aker
uint cleanup.
66
inline uint32_t get_enum_pack_length(int elements)
1 by brian
clean slate
67
{
68
  return elements < 256 ? 1 : 2;
69
}
70
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
71
/**
72
 * Class representing a Field in a Table
73
 *
74
 * @details
75
 *
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
76
 * The value stored in the Field object is stored in the
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
77
 * unsigned char pointer member variable called ptr.  The
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
78
 * val_xxx() methods retrieve this raw byte value and
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
79
 * convert the byte into the appropriate output (int, decimal, etc).
80
 *
81
 * The store_xxx() methods take various input and convert
82
 * the input into the raw bytes stored in the ptr member variable.
83
 */
1 by brian
clean slate
84
class Field
85
{
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
86
  /* Prevent use of these */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
87
  Field(const Field&);
1 by brian
clean slate
88
  void operator=(Field &);
89
public:
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
90
  unsigned char *ptr; /**< Position to field in record. Stores raw field value */
91
  unsigned char *null_ptr; /**< Byte where null_bit is */
92
93
  /**
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
94
   * Pointer to the Table object containing this Field
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
95
   *
96
   * @note You can use table->in_use as replacement for current_session member
97
   * only inside of val_*() and store() members (e.g. you can't use it in cons)
98
   */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
99
  Table *table;
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
100
  Table *orig_table; /**< Pointer to the original Table. @TODO What is "the original table"? */
101
  const char **table_name; /**< Pointer to the name of the table. @TODO This is redundant with Table::table_name. */
102
  const char *field_name; /**< Name of the field */
103
  LEX_STRING comment; /**< A comment about the field */
104
105
  /** The field is part of the following keys */
106
  key_map	key_start;
107
  key_map part_of_key;
108
  key_map part_of_key_not_clustered;
109
  key_map part_of_sortkey;
110
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
111
  /*
1259.5.4 by Stewart Smith
better reflect reality in why we have TIMESTAMP types around.
112
    We use three additional unireg types for TIMESTAMP for hysterical
113
    raisins and limitations in the MySQL FRM file format.
114
115
    A good TODO is to clean this up as we can support just about
116
    anything in the table proto message now.
1 by brian
clean slate
117
  */
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
118
  enum utype
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
119
  {
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
120
    NONE,
121
    NEXT_NUMBER,
122
    TIMESTAMP_OLD_FIELD,
123
    TIMESTAMP_DN_FIELD,
124
    TIMESTAMP_UN_FIELD,
125
    TIMESTAMP_DNUN_FIELD
126
  };
1 by brian
clean slate
127
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
128
  utype	unireg_check;
129
  uint32_t field_length; /**< Length of this field in bytes */
130
  uint32_t flags;
131
  uint16_t field_index; /**< Index of this Field in Table::fields array */
132
  unsigned char null_bit; /**< Bit used to test null bit */
1 by brian
clean slate
133
  /**
134
     If true, this field was created in create_tmp_field_from_item from a NULL
135
     value. This means that the type of the field is just a guess, and the type
136
     may be freely coerced to another type.
137
138
     @see create_tmp_field_from_item
139
     @see Item_type_holder::get_real_type
140
   */
141
  bool is_created_from_null_item;
142
1241.9.51 by Monty Taylor
More mysys stuff out of headers.
143
  static void *operator new(size_t size);
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
144
  static void *operator new(size_t size, memory::Root *mem_root);
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
145
  static void operator delete(void *, size_t)
1241.9.51 by Monty Taylor
More mysys stuff out of headers.
146
  { }
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
147
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
148
  Field(unsigned char *ptr_arg,
149
        uint32_t length_arg,
150
        unsigned char *null_ptr_arg,
151
        unsigned char null_bit_arg,
152
        utype unireg_check_arg,
1 by brian
clean slate
153
        const char *field_name_arg);
154
  virtual ~Field() {}
155
  /* Store functions returns 1 on overflow and -1 on fatal error */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
156
  virtual int store(const char *to,
157
                    uint32_t length,
779.3.18 by Monty Taylor
Cleaned up warnings up through innodb.
158
                    const CHARSET_INFO * const cs)=0;
159
  virtual int store(double nr)=0;
160
  virtual int store(int64_t nr, bool unsigned_val)=0;
161
  virtual int store_decimal(const my_decimal *d)=0;
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
162
  int store(const char *to,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
163
            uint32_t length,
779.3.18 by Monty Taylor
Cleaned up warnings up through innodb.
164
            const CHARSET_INFO * const cs,
165
            enum_check_fields check_level);
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
166
  /**
167
    This is called when storing a date in a string.
168
169
    @note
170
      Needs to be changed if/when we want to support different time formats.
171
  */
172
  virtual int store_time(DRIZZLE_TIME *ltime, enum enum_drizzle_timestamp_type t_type);
1 by brian
clean slate
173
  virtual double val_real(void)=0;
152 by Brian Aker
longlong replacement
174
  virtual int64_t val_int(void)=0;
1 by brian
clean slate
175
  virtual my_decimal *val_decimal(my_decimal *);
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
176
  inline String *val_str(String *str)
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
177
  {
178
    return val_str(str, str);
179
  }
1 by brian
clean slate
180
  /*
181
     val_str(buf1, buf2) gets two buffers and should use them as follows:
182
     if it needs a temp buffer to convert result to string - use buf1
183
       example Field_tiny::val_str()
184
     if the value exists as a string already - use buf2
241 by Brian Aker
First pass of CHAR removal.
185
       example Field_varstring::val_str() (???)
1 by brian
clean slate
186
     consequently, buf2 may be created as 'String buf;' - no memory
187
     will be allocated for it. buf1 will be allocated to hold a
188
     value if it's too small. Using allocated buffer for buf2 may result in
189
     an unnecessary free (and later, may be an alloc).
190
     This trickery is used to decrease a number of malloc calls.
191
  */
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
192
  virtual String *val_str(String*, String *)=0;
1 by brian
clean slate
193
  /*
51.1.58 by Jay Pipes
Replace/remove DBUG and standardize TRUE/FALSE. Remove ASSERT_COLUMN_XXX macros, that work will be done on another
194
   str_needs_quotes() returns true if the value returned by val_str() needs
1 by brian
clean slate
195
   to be quoted when used in constructing an SQL query.
196
  */
51.1.58 by Jay Pipes
Replace/remove DBUG and standardize TRUE/FALSE. Remove ASSERT_COLUMN_XXX macros, that work will be done on another
197
  virtual bool str_needs_quotes() { return false; }
1 by brian
clean slate
198
  virtual Item_result result_type () const=0;
199
  virtual Item_result cmp_type () const { return result_type(); }
200
  virtual Item_result cast_to_int_type () const { return result_type(); }
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
201
  /**
202
     Check whether a field type can be partially indexed by a key.
203
204
     This is a static method, rather than a virtual function, because we need
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
205
     to check the type of a non-Field in alter_table().
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
206
207
     @param type  field type
208
209
     @retval
210
       true  Type can have a prefixed key
211
     @retval
212
       false Type can not have a prefixed key
213
  */
1 by brian
clean slate
214
  static bool type_can_have_key_part(enum_field_types);
1055.2.9 by Jay Pipes
Removes dead get_blob_type_from_length() function. We only have one type of BLOB now...
215
  /**
216
    Return type of which can carry value of both given types in UNION result.
217
218
    @param a  type for merging
219
    @param b  type for merging
220
221
    @retval
222
      type of field
223
  */
1 by brian
clean slate
224
  static enum_field_types field_type_merge(enum_field_types, enum_field_types);
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
225
226
  /**
227
     Detect Item_result by given field type of UNION merge result.
228
229
     @param field_type  given field type
230
231
     @return
232
       Item_result (type of internal MySQL expression result)
233
  */
1 by brian
clean slate
234
  static Item_result result_merge_type(enum_field_types);
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
235
236
  virtual bool eq(Field *field);
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
237
  /**
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
238
   * Returns true if the fields are equally defined
239
   *
240
   * @retval
241
   *  true  This Field is equally defined to supplied Field
242
   * @retval
243
   *  false This Field is NOT equally defined to supplied Field
244
   */
1 by brian
clean slate
245
  virtual bool eq_def(Field *field);
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
246
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
247
  /**
248
   * Returns size (in bytes) used to store field data in memory
249
   * (i.e. it returns the maximum size of the field in a row of the table,
250
   * which is located in RAM).
251
   */
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
252
  virtual uint32_t pack_length() const;
1 by brian
clean slate
253
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
254
  /**
255
   * Returns size (in bytes) used to store field data on
256
   * storage (i.e. it returns the maximal size of the field in a row of the
257
   * table, which is located on disk).
258
   */
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
259
  virtual uint32_t pack_length_in_rec() const;
1 by brian
clean slate
260
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
261
  /**
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
262
   * Return the "real size" of the data in memory.
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
263
   * For varstrings, this does _not_ include the length bytes.
264
   */
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
265
  virtual uint32_t data_length();
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
266
  /**
267
   * Returns the number of bytes actually used to store the data
268
   * of the field. So for a varstring it includes both lenght byte(s) and
269
   * string data, and anything after data_length() bytes are unused.
270
   */
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
271
  virtual uint32_t used_length();
272
  virtual uint32_t sort_length() const;
1 by brian
clean slate
273
274
  /**
275
     Get the maximum size of the data in packed format.
276
277
     @return Maximum data length of the field when packed using the
278
     Field::pack() function.
279
   */
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
280
  virtual uint32_t max_data_length() const;
281
  virtual int reset(void);
282
  virtual void reset_fields();
283
  virtual void set_default();
284
  virtual bool binary() const;
285
  virtual bool zero_pack() const;
286
  virtual enum ha_base_keytype key_type() const;
287
  virtual uint32_t key_length() const;
1 by brian
clean slate
288
  virtual enum_field_types type() const =0;
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
289
  virtual enum_field_types real_type() const;
481 by Brian Aker
Remove all of uchar.
290
  inline  int cmp(const unsigned char *str) { return cmp(ptr,str); }
291
  virtual int cmp_max(const unsigned char *a, const unsigned char *b,
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
292
                      uint32_t max_len);
481 by Brian Aker
Remove all of uchar.
293
  virtual int cmp(const unsigned char *,const unsigned char *)=0;
294
  virtual int cmp_binary(const unsigned char *a,const unsigned char *b,
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
295
                         uint32_t max_length=UINT32_MAX);
296
  virtual int cmp_offset(uint32_t row_offset);
297
  virtual int cmp_binary_offset(uint32_t row_offset);
298
  virtual int key_cmp(const unsigned char *a,const unsigned char *b);
299
  virtual int key_cmp(const unsigned char *str, uint32_t length);
300
  virtual uint32_t decimals() const;
301
1 by brian
clean slate
302
  /*
303
    Caller beware: sql_type can change str.Ptr, so check
304
    ptr() to see if it changed if you are using your own buffer
305
    in str and restore it with set() if needed
306
  */
307
  virtual void sql_type(String &str) const =0;
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
308
309
  // For new field
310
  virtual uint32_t size_of() const =0;
311
1122.2.12 by Monty Taylor
Removed the silly my_ptrdiff_t typedef.
312
  bool is_null(ptrdiff_t row_offset= 0);
313
  bool is_real_null(ptrdiff_t row_offset= 0);
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
314
  bool is_null_in_record(const unsigned char *record);
1055.2.9 by Jay Pipes
Removes dead get_blob_type_from_length() function. We only have one type of BLOB now...
315
  bool is_null_in_record_with_offset(ptrdiff_t offset);
316
  void set_null(ptrdiff_t row_offset= 0);
317
  void set_notnull(ptrdiff_t row_offset= 0);
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
318
  bool maybe_null(void);
319
  bool real_maybe_null(void);
1 by brian
clean slate
320
1052.2.4 by Nathan Williams
No actual code changes. Changed Send_field to SendField to be consistent with coding standards.
321
  virtual void make_field(SendField *);
481 by Brian Aker
Remove all of uchar.
322
  virtual void sort_string(unsigned char *buff,uint32_t length)=0;
438.1.13 by Brian Aker
uint cleanup.
323
  virtual bool optimize_range(uint32_t idx, uint32_t part);
1055.2.9 by Jay Pipes
Removes dead get_blob_type_from_length() function. We only have one type of BLOB now...
324
  /**
325
   * Returns true for fields which, when compared with constant
326
   * items, can be casted to int64_t. In this case we will at 'fix_fields'
327
   * stage cast the constant items to int64_ts and at the execution stage
328
   * use field->val_int() for comparison.  Used to optimize clauses like
329
   * 'a_column BETWEEN date_const AND date_const'.
330
   */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
331
  virtual bool can_be_compared_as_int64_t() const
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
332
  {
333
    return false;
334
  }
1 by brian
clean slate
335
  virtual void free() {}
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
336
  virtual Field *new_field(memory::Root *root,
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
337
                           Table *new_table,
1 by brian
clean slate
338
                           bool keep_type);
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
339
  virtual Field *new_key_field(memory::Root *root, Table *new_table,
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
340
                               unsigned char *new_ptr,
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
341
                               unsigned char *new_null_ptr,
438.1.13 by Brian Aker
uint cleanup.
342
                               uint32_t new_null_bit);
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
343
  /** This is used to generate a field in Table from TableShare */
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
344
  Field *clone(memory::Root *mem_root, Table *new_table);
481 by Brian Aker
Remove all of uchar.
345
  inline void move_field(unsigned char *ptr_arg,unsigned char *null_ptr_arg,unsigned char null_bit_arg)
1 by brian
clean slate
346
  {
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
347
    ptr= ptr_arg;
348
    null_ptr= null_ptr_arg;
349
    null_bit= null_bit_arg;
1 by brian
clean slate
350
  }
481 by Brian Aker
Remove all of uchar.
351
  inline void move_field(unsigned char *ptr_arg) { ptr=ptr_arg; }
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
352
  virtual void move_field_offset(ptrdiff_t ptr_diff)
1 by brian
clean slate
353
  {
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
354
    ptr= ADD_TO_PTR(ptr,ptr_diff, unsigned char*);
1 by brian
clean slate
355
    if (null_ptr)
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
356
      null_ptr= ADD_TO_PTR(null_ptr,ptr_diff,unsigned char*);
1 by brian
clean slate
357
  }
1055.2.5 by Jay Pipes
Removal of dead Field::image_type and st_key_part::image_type member variables. Legacy from geometry MyISAM types...
358
  virtual void get_image(unsigned char *buff, uint32_t length, const CHARSET_INFO * const)
359
  {
360
    memcpy(buff,ptr,length);
361
  }
362
  virtual void get_image(std::basic_string<unsigned char> &buff, uint32_t length, const CHARSET_INFO * const)
363
  {
364
    buff.append(ptr,length);
365
  }
366
  virtual void set_image(const unsigned char *buff,uint32_t length, const CHARSET_INFO * const)
367
  {
368
    memcpy(ptr,buff,length);
369
  }
1 by brian
clean slate
370
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
371
  /**
372
   * Copy a field part into an output buffer.
373
   *
374
   * @details
375
   *
376
   * This function makes a copy of field part of size equal to or
377
   * less than "length" parameter value.
378
   * For fields of string types (VARCHAR, TEXT) the rest of buffer
379
   * is padded by zero byte.
380
   *
381
   * @param output buffer
382
   * @param output buffer size
383
   *
384
   * @note
385
   *
386
   * For variable length character fields (i.e. UTF-8) the "length"
387
   * parameter means a number of output buffer bytes as if all field
388
   * characters have maximal possible size (mbmaxlen). In the other words,
389
   * "length" parameter is a number of characters multiplied by
390
   * field_charset->mbmaxlen.
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
391
   *
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
392
   * @retval
393
   *   Number of copied bytes (excluding padded zero bytes -- see above).
394
   */
1055.2.5 by Jay Pipes
Removal of dead Field::image_type and st_key_part::image_type member variables. Legacy from geometry MyISAM types...
395
  virtual uint32_t get_key_image(unsigned char *buff, uint32_t length)
1 by brian
clean slate
396
  {
397
    get_image(buff, length, &my_charset_bin);
398
    return length;
399
  }
1055.2.5 by Jay Pipes
Removal of dead Field::image_type and st_key_part::image_type member variables. Legacy from geometry MyISAM types...
400
  virtual uint32_t get_key_image(std::basic_string<unsigned char> &buff, uint32_t length)
656.1.1 by Monty Taylor
OOOh doggie. Got rid of my_alloca.
401
  {
402
    get_image(buff, length, &my_charset_bin);
403
    return length;
404
  }
481 by Brian Aker
Remove all of uchar.
405
  virtual void set_key_image(const unsigned char *buff,uint32_t length)
1055.2.5 by Jay Pipes
Removal of dead Field::image_type and st_key_part::image_type member variables. Legacy from geometry MyISAM types...
406
  {
407
    set_image(buff,length, &my_charset_bin);
408
  }
438.1.13 by Brian Aker
uint cleanup.
409
  inline int64_t val_int_offset(uint32_t row_offset)
779.3.18 by Monty Taylor
Cleaned up warnings up through innodb.
410
  {
411
    ptr+=row_offset;
412
    int64_t tmp=val_int();
413
    ptr-=row_offset;
414
    return tmp;
415
  }
416
417
  inline int64_t val_int(const unsigned char *new_ptr)
418
  {
419
    unsigned char *old_ptr= ptr;
420
    int64_t return_value;
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
421
    ptr= const_cast<unsigned char*>(new_ptr);
779.3.18 by Monty Taylor
Cleaned up warnings up through innodb.
422
    return_value= val_int();
423
    ptr= old_ptr;
424
    return return_value;
425
  }
426
  inline String *val_str(String *str, const unsigned char *new_ptr)
427
  {
428
    unsigned char *old_ptr= ptr;
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
429
    ptr= const_cast<unsigned char*>(new_ptr);
779.3.18 by Monty Taylor
Cleaned up warnings up through innodb.
430
    val_str(str);
431
    ptr= old_ptr;
432
    return str;
433
  }
434
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
435
  /**
436
    Pack the field into a format suitable for storage and transfer.
437
438
    To implement packing functionality, only the virtual function
439
    should be overridden. The other functions are just convenience
440
    functions and hence should not be overridden.
441
442
    The value of <code>low_byte_first</code> is dependent on how the
443
    packed data is going to be used: for local use, e.g., temporary
444
    store on disk or in memory, use the native format since that is
445
    faster. For data that is going to be transfered to other machines
446
    (e.g., when writing data to the binary log), data should always be
447
    stored in little-endian format.
448
449
    @note The default method for packing fields just copy the raw bytes
450
    of the record into the destination, but never more than
451
    <code>max_length</code> characters.
452
453
    @param to
454
    Pointer to memory area where representation of field should be put.
455
456
    @param from
457
    Pointer to memory area where record representation of field is
458
    stored.
459
460
    @param max_length
461
    Maximum length of the field, as given in the column definition. For
462
    example, for <code>CHAR(1000)</code>, the <code>max_length</code>
463
    is 1000. This information is sometimes needed to decide how to pack
464
    the data.
465
466
    @param low_byte_first
467
    @c true if integers should be stored little-endian, @c false if
468
    native format should be used. Note that for little-endian machines,
469
    the value of this flag is a moot point since the native format is
470
    little-endian.
471
  */
779.3.16 by Monty Taylor
Some Sun warning fixes.
472
  virtual unsigned char *pack(unsigned char *to,
473
                              const unsigned char *from,
474
                              uint32_t max_length,
475
                              bool low_byte_first);
476
779.3.18 by Monty Taylor
Cleaned up warnings up through innodb.
477
  unsigned char *pack(unsigned char *to, const unsigned char *from);
1 by brian
clean slate
478
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
479
  /**
480
    Unpack a field from row data.
481
482
    This method is used to unpack a field from a master whose size of
483
    the field is less than that of the slave.
484
485
    The <code>param_data</code> parameter is a two-byte integer (stored
486
    in the least significant 16 bits of the unsigned integer) usually
487
    consisting of two parts: the real type in the most significant byte
488
    and a original pack length in the least significant byte.
489
490
    The exact layout of the <code>param_data</code> field is given by
491
    the <code>Table_map_log_event::save_field_metadata()</code>.
492
493
    This is the default method for unpacking a field. It just copies
494
    the memory block in byte order (of original pack length bytes or
495
    length of field, whichever is smaller).
496
497
    @param   to         Destination of the data
498
    @param   from       Source of the data
499
    @param   param_data Real type and original pack length of the field
500
                        data
501
502
    @param low_byte_first
503
    If this flag is @c true, all composite entities (e.g., lengths)
504
    should be unpacked in little-endian format; otherwise, the entities
505
    are unpacked in native order.
506
507
    @return  New pointer into memory based on from + length of the data
508
  */
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
509
  virtual const unsigned char *unpack(unsigned char* to,
510
                                      const unsigned char *from,
511
                                      uint32_t param_data,
512
                                      bool low_byte_first);
1 by brian
clean slate
513
  /**
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
514
     @overload Field::unpack(unsigned char*, const unsigned char*,
515
                             uint32_t, bool)
1 by brian
clean slate
516
  */
779.3.18 by Monty Taylor
Cleaned up warnings up through innodb.
517
  const unsigned char *unpack(unsigned char* to,
518
                              const unsigned char *from);
1 by brian
clean slate
519
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
520
  virtual unsigned char *pack_key(unsigned char* to,
521
                                  const unsigned char *from,
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
522
                                  uint32_t max_length,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
523
                                  bool low_byte_first)
1 by brian
clean slate
524
  {
525
    return pack(to, from, max_length, low_byte_first);
526
  }
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
527
  virtual const unsigned char *unpack_key(unsigned char* to,
528
                                          const unsigned char *from,
529
                                          uint32_t max_length,
530
                                          bool low_byte_first)
1 by brian
clean slate
531
  {
532
    return unpack(to, from, max_length, low_byte_first);
533
  }
438.1.13 by Brian Aker
uint cleanup.
534
  virtual uint32_t max_packed_col_length(uint32_t max_length)
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
535
  {
536
    return max_length;
537
  }
1 by brian
clean slate
538
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
539
  inline uint32_t offset(unsigned char *record)
1 by brian
clean slate
540
  {
438.1.13 by Brian Aker
uint cleanup.
541
    return (uint32_t) (ptr - record);
1 by brian
clean slate
542
  }
543
  void copy_from_tmp(int offset);
438.1.13 by Brian Aker
uint cleanup.
544
  uint32_t fill_cache_field(struct st_cache_field *copy);
545
  virtual bool get_date(DRIZZLE_TIME *ltime,uint32_t fuzzydate);
236.1.24 by Monty Taylor
Renamed MYSQL_TIME to DRIZZLE_TIME.
546
  virtual bool get_time(DRIZZLE_TIME *ltime);
264.2.6 by Andrey Hristov
Constify the usage of CHARSET_INFO almost to the last place in the code.
547
  virtual const CHARSET_INFO *charset(void) const { return &my_charset_bin; }
548
  virtual const CHARSET_INFO *sort_charset(void) const { return charset(); }
51.1.58 by Jay Pipes
Replace/remove DBUG and standardize TRUE/FALSE. Remove ASSERT_COLUMN_XXX macros, that work will be done on another
549
  virtual bool has_charset(void) const { return false; }
644 by Brian Aker
Clean up warnings for Solaris.
550
  virtual void set_charset(const CHARSET_INFO * const)
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
551
  {}
1 by brian
clean slate
552
  virtual enum Derivation derivation(void) const
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
553
  {
554
    return DERIVATION_IMPLICIT;
555
  }
644 by Brian Aker
Clean up warnings for Solaris.
556
  virtual void set_derivation(enum Derivation)
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
557
  {}
558
  /**
559
    Produce warning or note about data saved into field.
560
561
    @param level            - level of message (Note/Warning/Error)
562
    @param code             - error code of message to be produced
563
    @param cuted_increment  - whenever we should increase cut fields count or not
564
565
    @note
566
      This function won't produce warning and increase cut fields counter
567
      if count_cuted_fields == CHECK_FIELD_IGNORE for current thread.
568
569
      if count_cuted_fields == CHECK_FIELD_IGNORE then we ignore notes.
570
      This allows us to avoid notes in optimisation, like convert_constant_item().
571
572
    @retval
573
      1 if count_cuted_fields == CHECK_FIELD_IGNORE and error level is not NOTE
574
    @retval
575
      0 otherwise
576
  */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
577
  bool set_warning(DRIZZLE_ERROR::enum_warning_level,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
578
                   unsigned int code,
1 by brian
clean slate
579
                   int cuted_increment);
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
580
  /**
581
    Produce warning or note about datetime string data saved into field.
582
583
    @param level            level of message (Note/Warning/Error)
584
    @param code             error code of message to be produced
585
    @param str              string value which we tried to save
586
    @param str_length       length of string which we tried to save
587
    @param ts_type          type of datetime value (datetime/date/time)
588
    @param cuted_increment  whenever we should increase cut fields count or not
589
590
    @note
591
      This function will always produce some warning but won't increase cut
592
      fields counter if count_cuted_fields ==FIELD_CHECK_IGNORE for current
593
      thread.
594
  */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
595
  void set_datetime_warning(DRIZZLE_ERROR::enum_warning_level,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
596
                            uint32_t code,
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
597
                            const char *str,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
598
                            uint32_t str_len,
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
599
                            enum enum_drizzle_timestamp_type ts_type,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
600
                            int cuted_increment);
601
  /**
602
    Produce warning or note about integer datetime value saved into field.
603
604
    @param level            level of message (Note/Warning/Error)
605
    @param code             error code of message to be produced
606
    @param nr               numeric value which we tried to save
607
    @param ts_type          type of datetime value (datetime/date/time)
608
    @param cuted_increment  whenever we should increase cut fields count or not
609
610
    @note
611
      This function will always produce some warning but won't increase cut
612
      fields counter if count_cuted_fields == FIELD_CHECK_IGNORE for current
613
      thread.
614
  */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
615
  void set_datetime_warning(DRIZZLE_ERROR::enum_warning_level,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
616
                            uint32_t code,
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
617
                            int64_t nr,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
618
                            enum enum_drizzle_timestamp_type ts_type,
619
                            int cuted_increment);
620
  /**
621
    Produce warning or note about double datetime data saved into field.
622
623
    @param level            level of message (Note/Warning/Error)
624
    @param code             error code of message to be produced
625
    @param nr               double value which we tried to save
626
    @param ts_type          type of datetime value (datetime/date/time)
627
628
    @note
629
      This function will always produce some warning but won't increase cut
630
      fields counter if count_cuted_fields == FIELD_CHECK_IGNORE for current
631
      thread.
632
  */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
633
  void set_datetime_warning(DRIZZLE_ERROR::enum_warning_level,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
634
                            const uint32_t code,
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
635
                            double nr,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
636
                            enum enum_drizzle_timestamp_type ts_type);
1 by brian
clean slate
637
  inline bool check_overflow(int op_result)
638
  {
639
    return (op_result == E_DEC_OVERFLOW);
640
  }
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
641
  /**
642
    Process decimal library return codes and issue warnings for overflow and
643
    truncation.
644
645
    @param op_result  decimal library return code (E_DEC_* see include/decimal.h)
646
647
    @retval
648
      E_DEC_OVERFLOW   there was overflow
649
      E_DEC_TRUNCATED  there was truncation
650
    @retval
651
      0  no error or there was some other error except overflow or truncation
652
  */
1 by brian
clean slate
653
  int warn_if_overflow(int op_result);
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
654
  void init(Table *table_arg);
1 by brian
clean slate
655
656
  /* maximum possible display length */
205 by Brian Aker
uint32 -> uin32_t
657
  virtual uint32_t max_display_length()= 0;
1 by brian
clean slate
658
1052.2.3 by Nathan Williams
No actual code changes. Changed Create_field to CreateField to be consistent with coding standards.
659
  virtual uint32_t is_equal(CreateField *new_field);
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
660
  /**
661
    Conversion from decimal to int64_t with checking overflow and
662
    setting correct value (min/max) in case of overflow.
663
664
    @param val             value which have to be converted
665
    @param unsigned_flag   type of integer in which we convert val
666
    @param err             variable to pass error code
667
668
    @return
669
      value converted from val
670
  */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
671
  int64_t convert_decimal2int64_t(const my_decimal *val,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
672
                                  bool unsigned_flag,
673
                                  int *err);
1 by brian
clean slate
674
  /* The max. number of characters */
205 by Brian Aker
uint32 -> uin32_t
675
  inline uint32_t char_length() const
1 by brian
clean slate
676
  {
677
    return field_length / charset()->mbmaxlen;
678
  }
679
680
  inline enum column_format_type column_format() const
681
  {
682
    return (enum column_format_type)
683
      ((flags >> COLUMN_FORMAT_FLAGS) & COLUMN_FORMAT_MASK);
684
  }
685
686
  /* Hash value */
290 by Brian Aker
Update for ulong change over.
687
  virtual void hash(uint32_t *nr, uint32_t *nr2);
520.1.21 by Brian Aker
THD -> Session rename
688
  friend bool reopen_table(Session *,Table *,bool);
1052.2.7 by Nathan Williams
Merged trunk and resolved conflicts.
689
1052.2.2 by Nathan Williams
No actual code changes. Changed Copy_field to CopyField, to reflect the coding standards.
690
  friend class CopyField;
1 by brian
clean slate
691
  friend class Item_avg_field;
692
  friend class Item_std_field;
693
  friend class Item_sum_num;
694
  friend class Item_sum_sum;
695
  friend class Item_sum_str;
696
  friend class Item_sum_count;
697
  friend class Item_sum_avg;
698
  friend class Item_sum_std;
699
  friend class Item_sum_min;
700
  friend class Item_sum_max;
701
  friend class Item_func_group_concat;
702
1003.1.9 by Brian Aker
Patches for Jay (aka name changes)
703
  bool isReadSet();
704
  bool isWriteSet();
1089.1.3 by Brian Aker
Fix protobuf to release memory. Add in assert() for wrong column usage. Fix
705
  void setReadSet(bool arg= true);
706
  void setWriteSet(bool arg= true);
1 by brian
clean slate
707
};
708
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
709
} /* namespace drizzled */
710
711
/** @TODO Why is this in the middle of the file???*/
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
712
#include "drizzled/create_field.h"
713
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
714
namespace drizzled
715
{
716
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
717
/**
718
 * A class for sending field information to a client.
719
 *
720
 * @details
721
 *
722
 * Send_field is basically a stripped-down POD class for
723
 * representing basic information about a field...
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
724
 */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
725
class SendField
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
726
{
727
public:
1 by brian
clean slate
728
  const char *db_name;
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
729
  const char *table_name;
730
  const char *org_table_name;
731
  const char *col_name;
732
  const char *org_col_name;
290 by Brian Aker
Update for ulong change over.
733
  uint32_t length;
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
734
  uint32_t charsetnr;
735
  uint32_t flags;
736
  uint32_t decimals;
1 by brian
clean slate
737
  enum_field_types type;
1052.2.4 by Nathan Williams
No actual code changes. Changed Send_field to SendField to be consistent with coding standards.
738
  SendField() {}
1 by brian
clean slate
739
};
740
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
741
/**
742
 * A class for quick copying data to fields
743
 */
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
744
class CopyField :public memory::SqlAlloc
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
745
{
1 by brian
clean slate
746
  /**
747
    Convenience definition of a copy function returned by
748
    get_copy_func.
749
  */
1052.2.2 by Nathan Williams
No actual code changes. Changed Copy_field to CopyField, to reflect the coding standards.
750
  typedef void Copy_func(CopyField*);
1 by brian
clean slate
751
  Copy_func *get_copy_func(Field *to, Field *from);
752
public:
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
753
  unsigned char *from_ptr;
754
  unsigned char *to_ptr;
755
  unsigned char *from_null_ptr;
756
  unsigned char *to_null_ptr;
274 by Brian Aker
my_bool conversion in Table
757
  bool *null_row;
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
758
  uint32_t from_bit;
759
  uint32_t to_bit;
760
  uint32_t from_length;
761
  uint32_t to_length;
762
  Field *from_field;
763
  Field *to_field;
1 by brian
clean slate
764
  String tmp;					// For items
765
1052.2.2 by Nathan Williams
No actual code changes. Changed Copy_field to CopyField, to reflect the coding standards.
766
  CopyField() {}
767
  ~CopyField() {}
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
768
  void set(Field *to,Field *from,bool save);	// Field to field
481 by Brian Aker
Remove all of uchar.
769
  void set(unsigned char *to,Field *from);		// Field to string
1052.2.2 by Nathan Williams
No actual code changes. Changed Copy_field to CopyField, to reflect the coding standards.
770
  void (*do_copy)(CopyField *);
771
  void (*do_copy2)(CopyField *);		// Used to handle null values
1 by brian
clean slate
772
};
773
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
774
Field *make_field(TableShare *share,
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
775
                  memory::Root *root,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
776
                  unsigned char *ptr,
777
                  uint32_t field_length,
1119.9.10 by Jay Pipes
Removes FIELDFLAG_MAYBE_NULL and f_maybe_null() macro.
778
                  bool is_nullable,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
779
                  unsigned char *null_pos,
780
                  unsigned char null_bit,
1119.9.22 by Stewart Smith
fix up decimals type to be uint8_t throughout and check that value in the proto is valid for what the server can currently handle
781
                  uint8_t decimals,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
782
                  enum_field_types field_type,
575.4.7 by Monty Taylor
More header cleanup.
783
                  const CHARSET_INFO * cs,
784
                  Field::utype unireg_check,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
785
                  TYPELIB *interval,
786
                  const char *field_name);
575.4.7 by Monty Taylor
More header cleanup.
787
438.1.13 by Brian Aker
uint cleanup.
788
uint32_t pack_length_to_packflag(uint32_t type);
205 by Brian Aker
uint32 -> uin32_t
789
uint32_t calc_pack_length(enum_field_types type,uint32_t length);
1 by brian
clean slate
790
int set_field_to_null(Field *field);
791
int set_field_to_null_with_conversions(Field *field, bool no_conversions);
792
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
793
/**
794
 * Tests if the given string contains important data:
795
 * not spaces for character string, or any data for binary string.
796
 *
797
 * @param pointer to the character set to use
798
 * @param String to test
799
 * @param String end
800
 *
801
 * @retval
802
 *  false - If string does not have important data
803
 * @retval
804
 *  true  - If string has some important data
805
 */
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
806
bool test_if_important_data(const CHARSET_INFO * const cs,
807
                            const char *str,
808
                            const char *strend);
520.8.2 by Monty Taylor
Moved sql_parse.h and sql_error.h out of common_includes.
809
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
810
} /* namespace drizzled */
811
520.8.2 by Monty Taylor
Moved sql_parse.h and sql_error.h out of common_includes.
812
#endif /* DRIZZLED_FIELD_H */