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