~ubuntu-branches/ubuntu/saucy/drizzle/saucy-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
/* Copyright (C) 2000-2003 MySQL AB

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; version 2 of the License.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */


/**
  @file

  @brief
  Functions to copy data to or from fields

    This could be done with a single short function but opencoding this
    gives much more speed.
*/

#include <config.h>

#include <drizzled/error.h>
#include <drizzled/table.h>
#include <drizzled/session.h>
#include <drizzled/current_session.h>

#include <drizzled/copy_field.h>
#include <drizzled/field/blob.h>
#include <drizzled/field/date.h>
#include <drizzled/field/datetime.h>
#include <drizzled/field/decimal.h>
#include <drizzled/field/double.h>
#include <drizzled/field/enum.h>
#include <drizzled/field/epoch.h>
#include <drizzled/field/int32.h>
#include <drizzled/field/int64.h>
#include <drizzled/field/null.h>
#include <drizzled/field/num.h>
#include <drizzled/field/num.h>
#include <drizzled/field/real.h>
#include <drizzled/field/str.h>
#include <drizzled/field/varstring.h>
#include <drizzled/util/test.h>
#include <drizzled/system_variables.h>

namespace drizzled {

static void do_field_eq(CopyField *copy)
{
  memcpy(copy->to_ptr, copy->from_ptr, copy->from_length);
}

static void do_field_1(CopyField *copy)
{
  copy->to_ptr[0]= copy->from_ptr[0];
}

static void do_field_2(CopyField *copy)
{
  copy->to_ptr[0]= copy->from_ptr[0];
  copy->to_ptr[1]= copy->from_ptr[1];
}

static void do_field_3(CopyField *copy)
{
  copy->to_ptr[0]= copy->from_ptr[0];
  copy->to_ptr[1]= copy->from_ptr[1];
  copy->to_ptr[2]= copy->from_ptr[2];
}

static void do_field_4(CopyField *copy)
{
  copy->to_ptr[0]= copy->from_ptr[0];
  copy->to_ptr[1]= copy->from_ptr[1];
  copy->to_ptr[2]= copy->from_ptr[2];
  copy->to_ptr[3]= copy->from_ptr[3];
}

static void do_field_6(CopyField *copy)
{                  // For blob field
  copy->to_ptr[0]= copy->from_ptr[0];
  copy->to_ptr[1]= copy->from_ptr[1];
  copy->to_ptr[2]= copy->from_ptr[2];
  copy->to_ptr[3]= copy->from_ptr[3];
  copy->to_ptr[4]= copy->from_ptr[4];
  copy->to_ptr[5]= copy->from_ptr[5];
}

static void do_field_8(CopyField *copy)
{
  copy->to_ptr[0]= copy->from_ptr[0];
  copy->to_ptr[1]= copy->from_ptr[1];
  copy->to_ptr[2]= copy->from_ptr[2];
  copy->to_ptr[3]= copy->from_ptr[3];
  copy->to_ptr[4]= copy->from_ptr[4];
  copy->to_ptr[5]= copy->from_ptr[5];
  copy->to_ptr[6]= copy->from_ptr[6];
  copy->to_ptr[7]= copy->from_ptr[7];
}


static void do_field_to_null_str(CopyField *copy)
{
  if (*copy->from_null_ptr & copy->from_bit)
  {
    memset(copy->to_ptr, 0, copy->from_length);
    copy->to_null_ptr[0]= 1;  // Always bit 1
  }
  else
  {
    copy->to_null_ptr[0]= 0;
    memcpy(copy->to_ptr, copy->from_ptr, copy->from_length);
  }
}


static void do_outer_field_to_null_str(CopyField *copy)
{
  if (*copy->null_row ||
      (copy->from_null_ptr && (*copy->from_null_ptr & copy->from_bit)))
  {
    memset(copy->to_ptr, 0, copy->from_length);
    copy->to_null_ptr[0]= 1;  // Always bit 1
  }
  else
  {
    copy->to_null_ptr[0]= 0;
    memcpy(copy->to_ptr, copy->from_ptr, copy->from_length);
  }
}


int
set_field_to_null(Field *field)
{
  if (field->real_maybe_null())
  {
    field->set_null();
    field->reset();
    return 0;
  }
  field->reset();
  if (field->getTable()->in_use->count_cuted_fields == CHECK_FIELD_WARN)
  {
    field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN, ER_WARN_DATA_TRUNCATED, 1);
    return 0;
  }
  if (!field->getTable()->in_use->no_errors)
    my_error(ER_BAD_NULL_ERROR, MYF(0), field->field_name);
  return -1;
}


/**
  Set field to NULL or TIMESTAMP or to next auto_increment number.

  @param field           Field to update
  @param no_conversions  Set to 1 if we should return 1 if field can't
                         take null values.
                         If set to 0 we will do store the 'default value'
                         if the field is a special field. If not we will
                         give an error.

  @retval
    0    Field could take 0 or an automatic conversion was used
  @retval
    -1   Field could not take NULL and no conversion was used.
    If no_conversion was not set, an error message is printed
*/

int
set_field_to_null_with_conversions(Field *field, bool no_conversions)
{
  if (field->real_maybe_null())
  {
    field->set_null();
    field->reset();
    return 0;
  }

  if (no_conversions)
    return -1;

  /*
    Check if this is a special type, which will get a special walue
    when set to NULL (TIMESTAMP fields which allow setting to NULL
    are handled by first check).
  */
  if (field->is_timestamp())
  {
    ((field::Epoch::pointer) field)->set_time();
    return 0;					// Ok to set time to NULL
  }

  field->reset();
  if (field == field->getTable()->next_number_field)
  {
    field->getTable()->auto_increment_field_not_null= false;
    return 0;				  // field is set in fill_record()
  }

  if (field->getTable()->in_use->count_cuted_fields == CHECK_FIELD_WARN)
  {
    field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN, ER_BAD_NULL_ERROR, 1);
    return 0;
  }

  if (!field->getTable()->in_use->no_errors)
    my_error(ER_BAD_NULL_ERROR, MYF(0), field->field_name);

  return -1;
}


static void do_skip(CopyField *)
{
}


static void do_copy_null(CopyField *copy)
{
  if (*copy->from_null_ptr & copy->from_bit)
  {
    *copy->to_null_ptr|= copy->to_bit;
    copy->to_field->reset();
  }
  else
  {
    *copy->to_null_ptr&= ~copy->to_bit;
    (copy->do_copy2)(copy);
  }
}


static void do_outer_field_null(CopyField *copy)
{
  if (*copy->null_row ||
      (copy->from_null_ptr && (*copy->from_null_ptr & copy->from_bit)))
  {
    *copy->to_null_ptr|=copy->to_bit;
    copy->to_field->reset();
  }
  else
  {
    *copy->to_null_ptr&= ~copy->to_bit;
    (copy->do_copy2)(copy);
  }
}


static void do_copy_not_null(CopyField *copy)
{
  if (copy->to_field->hasDefault() and *copy->from_null_ptr & copy->from_bit)
  {
    copy->to_field->set_default();
  }
  else if (*copy->from_null_ptr & copy->from_bit)
  {
    copy->to_field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN,
                                ER_WARN_DATA_TRUNCATED, 1);
    copy->to_field->reset();
  }
  else
  {
    (copy->do_copy2)(copy);
  }
}


static void do_copy_maybe_null(CopyField *copy)
{
  *copy->to_null_ptr&= ~copy->to_bit;
  (copy->do_copy2)(copy);
}

/* timestamp and next_number has special handling in case of NULL values */

static void do_copy_timestamp(CopyField *copy)
{
  if (*copy->from_null_ptr & copy->from_bit)
  {
    /* Same as in set_field_to_null_with_conversions() */
    ((field::Epoch::pointer) copy->to_field)->set_time();
  }
  else
  {
    (copy->do_copy2)(copy);
  }
}


static void do_copy_next_number(CopyField *copy)
{
  if (*copy->from_null_ptr & copy->from_bit)
  {
    /* Same as in set_field_to_null_with_conversions() */
    copy->to_field->getTable()->auto_increment_field_not_null= false;
    copy->to_field->reset();
  }
  else
  {
    (copy->do_copy2)(copy);
  }
}


static void do_copy_blob(CopyField *copy)
{
  ulong length= ((Field_blob*) copy->from_field)->get_length();
  ((Field_blob*) copy->to_field)->store_length(length);
  memcpy(copy->to_ptr, copy->from_ptr, sizeof(char*));
}

static void do_conv_blob(CopyField *copy)
{
  copy->from_field->val_str_internal(&copy->tmp);
  ((Field_blob *) copy->to_field)->store(copy->tmp.ptr(),
                                         copy->tmp.length(),
                                         copy->tmp.charset());
}

/** Save blob in copy->tmp for GROUP BY. */

static void do_save_blob(CopyField *copy)
{
  char buff[MAX_FIELD_WIDTH];
  String res(buff, sizeof(buff), copy->tmp.charset());
  copy->from_field->val_str_internal(&res);
  copy->tmp.copy(res);
  ((Field_blob *) copy->to_field)->store(copy->tmp.ptr(),
                                         copy->tmp.length(),
                                         copy->tmp.charset());
}


static void do_field_string(CopyField *copy)
{
  char buff[MAX_FIELD_WIDTH];
  copy->tmp.set_quick(buff,sizeof(buff),copy->tmp.charset());
  copy->from_field->val_str_internal(&copy->tmp);
  copy->to_field->store(copy->tmp.data(),copy->tmp.length(), copy->tmp.charset());
}


static void do_field_enum(CopyField *copy)
{
  if (copy->from_field->val_int() == 0)
    ((Field_enum *) copy->to_field)->store_type((uint64_t) 0);
  else
    do_field_string(copy);
}


static void do_field_int(CopyField *copy)
{
  int64_t value= copy->from_field->val_int();
  copy->to_field->store(value,
                        test(copy->from_field->flags & UNSIGNED_FLAG));
}

static void do_field_real(CopyField *copy)
{
  double value=copy->from_field->val_real();
  copy->to_field->store(value);
}


static void do_field_decimal(CopyField *copy)
{
  type::Decimal value;
  copy->to_field->store_decimal(copy->from_field->val_decimal(&value));
}


/**
  string copy for single byte characters set when to string is shorter than
  from string.
*/

static void do_cut_string(CopyField *copy)
{
  const charset_info_st * const cs= copy->from_field->charset();
  memcpy(copy->to_ptr, copy->from_ptr, copy->to_length);

  /* Check if we loosed any important characters */
  if (cs->cset->scan(cs,
                     (char*) copy->from_ptr + copy->to_length,
                     (char*) copy->from_ptr + copy->from_length,
                     MY_SEQ_SPACES) < copy->from_length - copy->to_length)
  {
    copy->to_field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN,
                                ER_WARN_DATA_TRUNCATED, 1);
  }
}


/**
  string copy for multi byte characters set when to string is shorter than
  from string.
*/

static void do_cut_string_complex(CopyField *copy)
{						// Shorter string field
  int well_formed_error;
  const charset_info_st * const cs= copy->from_field->charset();
  const unsigned char *from_end= copy->from_ptr + copy->from_length;
  uint32_t copy_length= cs->cset->well_formed_len(*cs, str_ref(copy->from_ptr, from_end), copy->to_length / cs->mbmaxlen, &well_formed_error);
  if (copy->to_length < copy_length)
    copy_length= copy->to_length;
  memcpy(copy->to_ptr, copy->from_ptr, copy_length);

  /* Check if we lost any important characters */
  if (well_formed_error ||
      cs->cset->scan(cs, (char*) copy->from_ptr + copy_length,
                     (char*) from_end,
                     MY_SEQ_SPACES) < (copy->from_length - copy_length))
  {
    copy->to_field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN,
                                ER_WARN_DATA_TRUNCATED, 1);
  }

  if (copy_length < copy->to_length)
    cs->cset->fill(cs, (char*) copy->to_ptr + copy_length,
                   copy->to_length - copy_length, ' ');
}




static void do_expand_binary(CopyField *copy)
{
  const charset_info_st * const cs= copy->from_field->charset();
  memcpy(copy->to_ptr, copy->from_ptr, copy->from_length);
  cs->cset->fill(cs, (char*) copy->to_ptr+copy->from_length,
                 copy->to_length-copy->from_length, '\0');
}



static void do_expand_string(CopyField *copy)
{
  const charset_info_st * const cs= copy->from_field->charset();
  memcpy(copy->to_ptr,copy->from_ptr,copy->from_length);
  cs->cset->fill(cs, (char*) copy->to_ptr+copy->from_length,
                 copy->to_length-copy->from_length, ' ');
}


static void do_varstring1(CopyField *copy)
{
  uint32_t length= (uint32_t) *(unsigned char*) copy->from_ptr;
  if (length > copy->to_length- 1)
  {
    length= copy->to_length - 1;
    if (copy->from_field->getTable()->in_use->count_cuted_fields)
    {
      copy->to_field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN,
                                  ER_WARN_DATA_TRUNCATED, 1);
    }
  }
  *(unsigned char*) copy->to_ptr= (unsigned char) length;
  memcpy(copy->to_ptr+1, copy->from_ptr + 1, length);
}


static void do_varstring1_mb(CopyField *copy)
{
  int well_formed_error;
  const charset_info_st * const cs= copy->from_field->charset();
  uint32_t from_length= (uint32_t) *(unsigned char*) copy->from_ptr;
  const unsigned char *from_ptr= copy->from_ptr + 1;
  uint32_t to_char_length= (copy->to_length - 1) / cs->mbmaxlen;
  uint32_t length= cs->cset->well_formed_len(*cs, str_ref(from_ptr, from_length), to_char_length, &well_formed_error);
  if (length < from_length)
  {
    if (current_session->count_cuted_fields)
    {
      copy->to_field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN, ER_WARN_DATA_TRUNCATED, 1);
    }
  }
  *copy->to_ptr= (unsigned char) length;
  memcpy(copy->to_ptr + 1, from_ptr, length);
}


static void do_varstring2(CopyField *copy)
{
  uint32_t length= uint2korr(copy->from_ptr);
  if (length > copy->to_length- HA_KEY_BLOB_LENGTH)
  {
    length=copy->to_length-HA_KEY_BLOB_LENGTH;
    if (copy->from_field->getTable()->in_use->count_cuted_fields)
    {
      copy->to_field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN,
                                  ER_WARN_DATA_TRUNCATED, 1);
    }
  }
  int2store(copy->to_ptr,length);
  memcpy(copy->to_ptr+HA_KEY_BLOB_LENGTH, copy->from_ptr + HA_KEY_BLOB_LENGTH,
         length);
}


static void do_varstring2_mb(CopyField *copy)
{
  int well_formed_error;
  const charset_info_st * const cs= copy->from_field->charset();
  uint32_t char_length= (copy->to_length - HA_KEY_BLOB_LENGTH) / cs->mbmaxlen;
  uint32_t from_length= uint2korr(copy->from_ptr);
  const unsigned char *from_beg= copy->from_ptr + HA_KEY_BLOB_LENGTH;
  uint32_t length= cs->cset->well_formed_len(*cs, str_ref(from_beg, from_length), char_length, &well_formed_error);
  if (length < from_length)
  {
    if (current_session->count_cuted_fields)
    {
      copy->to_field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN,
                                  ER_WARN_DATA_TRUNCATED, 1);
    }
  }
  int2store(copy->to_ptr, length);
  memcpy(copy->to_ptr+HA_KEY_BLOB_LENGTH, from_beg, length);
}


/***************************************************************************
** The different functions that fills in a CopyField class
***************************************************************************/

/**
  copy of field to maybe null string.
  If field is null then the all bytes are set to 0.
  if field is not null then the first byte is set to 1 and the rest of the
  string is the field value.
  The 'to' buffer should have a size of field->pack_length()+1
*/

void CopyField::set(unsigned char *to,Field *from)
{
  from_ptr= from->ptr;
  to_ptr= to;
  from_length= from->pack_length();
  if (from->maybe_null())
  {
    from_null_ptr= from->null_ptr;
    from_bit= from->null_bit;
    to_ptr[0]= 1;                             // Null as default value
    to_null_ptr= (unsigned char*) to_ptr++;
    to_bit= 1;
    if (from->getTable()->maybe_null)
    {
      null_row= &from->getTable()->null_row;
      do_copy= do_outer_field_to_null_str;
    }
    else
      do_copy= do_field_to_null_str;
  }
  else
  {
    to_null_ptr= 0;                           // For easy debugging
    do_copy= do_field_eq;
  }
}


/*
  To do:

  If 'save\ is set to true and the 'from' is a blob field, do_copy is set to
  do_save_blob rather than do_conv_blob.  The only differences between them
  appears to be:

  - do_save_blob allocates and uses an intermediate buffer before calling
    Field_blob::store. Is this in order to trigger the call to
    well_formed_copy_nchars, by changing the pointer copy->tmp.ptr()?
    That call will take place anyway in all known cases.

  - The above causes a truncation to MAX_FIELD_WIDTH. Is this the intended
    effect? Truncation is handled by well_formed_copy_nchars anyway.
 */
void CopyField::set(Field *to,Field *from,bool save)
{
  if (to->type() == DRIZZLE_TYPE_NULL)
  {
    to_null_ptr= 0;           // For easy debugging
    to_ptr= 0;
    do_copy= do_skip;
    return;
  }
  from_field= from;
  to_field= to;
  from_ptr= from->ptr;
  from_length= from->pack_length();
  to_ptr= to->ptr;
  to_length= to_field->pack_length();

  // set up null handling
  from_null_ptr= to_null_ptr= 0;
  if (from->maybe_null())
  {
    from_null_ptr= from->null_ptr;
    from_bit= from->null_bit;
    if (to_field->real_maybe_null())
    {
      to_null_ptr= to->null_ptr;
      to_bit= to->null_bit;
      if (from_null_ptr)
      {
        do_copy= do_copy_null;
      }
      else
      {
        null_row= &from->getTable()->null_row;
        do_copy= do_outer_field_null;
      }
    }
    else
    {
      if (to_field->is_timestamp())
      {
        do_copy= do_copy_timestamp;               // Automatic timestamp
      }
      else if (to_field == to_field->getTable()->next_number_field)
      {
        do_copy= do_copy_next_number;
      }
      else
      {
        do_copy= do_copy_not_null;
      }
    }
  }
  else if (to_field->real_maybe_null())
  {
    to_null_ptr= to->null_ptr;
    to_bit= to->null_bit;
    do_copy= do_copy_maybe_null;
  }
  else
   do_copy= 0;

  if ((to->flags & BLOB_FLAG) && save)
    do_copy2= do_save_blob;
  else
    do_copy2= get_copy_func(to,from);
  if (!do_copy)         // Not null
    do_copy= do_copy2;
}


CopyField::Copy_func *
CopyField::get_copy_func(Field *to,Field *from)
{
  bool compatible_db_low_byte_first= (to->getTable()->getShare()->db_low_byte_first ==
                                     from->getTable()->getShare()->db_low_byte_first);
  if (to->flags & BLOB_FLAG)
  {
    if (!(from->flags & BLOB_FLAG) || from->charset() != to->charset())
      return do_conv_blob;
    if (from_length != to_length || !compatible_db_low_byte_first)
    {
      // Correct pointer to point at char pointer
      to_ptr+= to_length - to->getTable()->getShare()->sizeBlobPtr();
      from_ptr+= from_length- from->getTable()->getShare()->sizeBlobPtr();
      return do_copy_blob;
    }
  }
  else
  {
    if (to->result_type() == DECIMAL_RESULT)
      return do_field_decimal;
      
    // Check if identical fields
    if (from->result_type() == STRING_RESULT)
    {
      /*
        If we are copying date or datetime's we have to check the dates
        if we don't allow 'all' dates.
      */
      if (to->real_type() != from->real_type() ||
          !compatible_db_low_byte_first ||
          (((to->getTable()->in_use->variables.sql_mode & (MODE_NO_ZERO_DATE | MODE_INVALID_DATES)) && to->type() == DRIZZLE_TYPE_DATE) || to->type() == DRIZZLE_TYPE_DATETIME))
      {
        if (from->real_type() == DRIZZLE_TYPE_ENUM)
        {
          if (to->result_type() != STRING_RESULT)
          {
            return do_field_int;  // Convert SET to number
          }

          return do_field_string;
        }
      }

      if (to->real_type() == DRIZZLE_TYPE_ENUM)
      {
        if (!to->eq_def(from))
        {
          if (from->real_type() == DRIZZLE_TYPE_ENUM &&
              to->real_type() == DRIZZLE_TYPE_ENUM)
            return do_field_enum;
          else
            return do_field_string;
        }
      }
      else if (to->charset() != from->charset())
        return do_field_string;
      else if (to->real_type() == DRIZZLE_TYPE_VARCHAR)
      {
        /* Field_blob is not part of the Field_varstring hierarchy,
          and casting to varstring for calling pack_length_no_ptr()
          is always incorrect. Previously the below comparison has
          always evaluated to false as pack_length_no_ptr() for BLOB
          will return 4 and varstring can only be <= 2.
          If your brain slightly bleeds as to why this worked for
          so many years, you are in no way alone.
        */
        if (from->flags & BLOB_FLAG)
          return do_field_string;

        if ((static_cast<Field_varstring*>(to))->pack_length_no_ptr() !=
            (static_cast<Field_varstring*>(from))->pack_length_no_ptr())
        {
          return do_field_string;
        }

        if (to_length != from_length)
        {
          return (((Field_varstring*) to)->pack_length_no_ptr() == 1 ?
                  (from->charset()->mbmaxlen == 1 ? do_varstring1 :
                   do_varstring1_mb) :
                  (from->charset()->mbmaxlen == 1 ? do_varstring2 :
                   do_varstring2_mb));
        }
      }
      else if (to_length < from_length)
      {
        return (from->charset()->mbmaxlen == 1 ?
                do_cut_string : do_cut_string_complex);
      }
      else if (to_length > from_length)
      {
        if (to->charset() == &my_charset_bin)
          return do_expand_binary;
        else
          return do_expand_string;
      }
    }
    else if (to->real_type() != from->real_type() ||
             to_length != from_length ||
             !compatible_db_low_byte_first)
    {
      if (to->result_type() == STRING_RESULT)
        return do_field_string;
      if (to->result_type() == INT_RESULT)
        return do_field_int;

      return do_field_real;
    }
    else
    {
      if (!to->eq_def(from) || !compatible_db_low_byte_first)
      {
        if (to->result_type() == INT_RESULT)
          return do_field_int;
        else
          return do_field_real;
      }
    }
  }
  
    /* Eq fields */
  switch (to_length)
  {
  case 1: return do_field_1;
  case 2: return do_field_2;
  case 3: return do_field_3;
  case 4: return do_field_4;
  case 6: return do_field_6;
  case 8: return do_field_8;
  }
  
  return do_field_eq;
}


/** Simple quick field convert that is called on insert. */

int field_conv(Field *to,Field *from)
{
  if (to->real_type() == from->real_type() &&
      !(to->type() == DRIZZLE_TYPE_BLOB && to->getTable()->copy_blobs))
  {
    /* Please god, will someone rewrite this to be readable :( */
    if (to->pack_length() == from->pack_length() &&
        !(to->flags & UNSIGNED_FLAG && !(from->flags & UNSIGNED_FLAG)) &&
        to->real_type() != DRIZZLE_TYPE_ENUM &&
        (to->real_type() != DRIZZLE_TYPE_DECIMAL || (to->field_length == from->field_length && (((Field_num*)to)->dec == ((Field_num*)from)->dec))) &&
        from->charset() == to->charset() &&
	to->getTable()->getShare()->db_low_byte_first == from->getTable()->getShare()->db_low_byte_first &&
        (!(to->getTable()->in_use->variables.sql_mode & (MODE_NO_ZERO_DATE | MODE_INVALID_DATES)) || (to->type() != DRIZZLE_TYPE_DATE && to->type() != DRIZZLE_TYPE_DATETIME)) &&
        (from->real_type() != DRIZZLE_TYPE_VARCHAR || ((Field_varstring*)from)->pack_length_no_ptr() == ((Field_varstring*)to)->pack_length_no_ptr()))
    {						// Identical fields
      /* This may happen if one does 'UPDATE ... SET x=x' */
      if (to->ptr != from->ptr)
        memcpy(to->ptr,from->ptr,to->pack_length());
      return 0;
    }
  }
  if (to->type() == DRIZZLE_TYPE_BLOB)
  {						// Be sure the value is stored
    Field_blob *blob=(Field_blob*) to;
    from->val_str_internal(&blob->value);
    /*
      Copy value if copy_blobs is set, or source is not a string and
      we have a pointer to its internal string conversion buffer.
    */
    if (to->getTable()->copy_blobs ||
        (!blob->value.is_alloced() &&
         from->real_type() != DRIZZLE_TYPE_VARCHAR))
      blob->value.copy();
    return blob->store(blob->value.ptr(),blob->value.length(),from->charset());
  }
  if (from->real_type() == DRIZZLE_TYPE_ENUM &&
      to->real_type() == DRIZZLE_TYPE_ENUM &&
      from->val_int() == 0)
  {
    ((Field_enum *)(to))->store_type(0);
    return 0;
  }
  else if ((from->result_type() == STRING_RESULT &&
            (to->result_type() == STRING_RESULT ||
             (from->real_type() != DRIZZLE_TYPE_ENUM))))
  {
    char buff[MAX_FIELD_WIDTH];
    String result(buff,sizeof(buff),from->charset());
    from->val_str_internal(&result);
    /*
      We use c_ptr_quick() here to make it easier if to is a float/double
      as the conversion routines will do a copy of the result doesn't
      end with \0. Can be replaced with .ptr() when we have our own
      string->double conversion.
    */
    return to->store(result.c_str(),result.length(),from->charset());
  }
  else if (from->result_type() == REAL_RESULT)
  {
    return to->store(from->val_real());
  }
  else if (from->result_type() == DECIMAL_RESULT)
  {
    type::Decimal buff;
    return to->store_decimal(from->val_decimal(&buff));
  }
  else
  {
    return to->store(from->val_int(), test(from->flags & UNSIGNED_FLAG));
  }
}

} /* namespace drizzled */