24
24
gives much more speed.
27
#include <drizzled/server_includes.h>
29
static void do_field_eq(Copy_field *copy)
31
memcpy(copy->to_ptr,copy->from_ptr,copy->from_length);
34
static void do_field_1(Copy_field *copy)
36
copy->to_ptr[0]=copy->from_ptr[0];
39
static void do_field_2(Copy_field *copy)
41
copy->to_ptr[0]=copy->from_ptr[0];
42
copy->to_ptr[1]=copy->from_ptr[1];
45
static void do_field_3(Copy_field *copy)
47
copy->to_ptr[0]=copy->from_ptr[0];
48
copy->to_ptr[1]=copy->from_ptr[1];
49
copy->to_ptr[2]=copy->from_ptr[2];
52
static void do_field_4(Copy_field *copy)
54
copy->to_ptr[0]=copy->from_ptr[0];
55
copy->to_ptr[1]=copy->from_ptr[1];
56
copy->to_ptr[2]=copy->from_ptr[2];
57
copy->to_ptr[3]=copy->from_ptr[3];
60
static void do_field_6(Copy_field *copy)
62
copy->to_ptr[0]=copy->from_ptr[0];
63
copy->to_ptr[1]=copy->from_ptr[1];
64
copy->to_ptr[2]=copy->from_ptr[2];
65
copy->to_ptr[3]=copy->from_ptr[3];
66
copy->to_ptr[4]=copy->from_ptr[4];
67
copy->to_ptr[5]=copy->from_ptr[5];
70
static void do_field_8(Copy_field *copy)
72
copy->to_ptr[0]=copy->from_ptr[0];
73
copy->to_ptr[1]=copy->from_ptr[1];
74
copy->to_ptr[2]=copy->from_ptr[2];
75
copy->to_ptr[3]=copy->from_ptr[3];
76
copy->to_ptr[4]=copy->from_ptr[4];
77
copy->to_ptr[5]=copy->from_ptr[5];
78
copy->to_ptr[6]=copy->from_ptr[6];
79
copy->to_ptr[7]=copy->from_ptr[7];
83
static void do_field_to_null_str(Copy_field *copy)
28
#include <drizzled/error.h>
29
#include <drizzled/table.h>
30
#include <drizzled/session.h>
32
#include <drizzled/field/str.h>
33
#include <drizzled/field/num.h>
34
#include <drizzled/field/blob.h>
35
#include <drizzled/field/enum.h>
36
#include <drizzled/field/null.h>
37
#include <drizzled/field/date.h>
38
#include <drizzled/field/decimal.h>
39
#include <drizzled/field/real.h>
40
#include <drizzled/field/double.h>
41
#include <drizzled/field/int32.h>
42
#include <drizzled/field/int64.h>
43
#include <drizzled/field/num.h>
44
#include <drizzled/field/timestamp.h>
45
#include <drizzled/field/datetime.h>
46
#include <drizzled/field/varstring.h>
51
static void do_field_eq(CopyField *copy)
53
memcpy(copy->to_ptr, copy->from_ptr, copy->from_length);
56
static void do_field_1(CopyField *copy)
58
copy->to_ptr[0]= copy->from_ptr[0];
61
static void do_field_2(CopyField *copy)
63
copy->to_ptr[0]= copy->from_ptr[0];
64
copy->to_ptr[1]= copy->from_ptr[1];
67
static void do_field_3(CopyField *copy)
69
copy->to_ptr[0]= copy->from_ptr[0];
70
copy->to_ptr[1]= copy->from_ptr[1];
71
copy->to_ptr[2]= copy->from_ptr[2];
74
static void do_field_4(CopyField *copy)
76
copy->to_ptr[0]= copy->from_ptr[0];
77
copy->to_ptr[1]= copy->from_ptr[1];
78
copy->to_ptr[2]= copy->from_ptr[2];
79
copy->to_ptr[3]= copy->from_ptr[3];
82
static void do_field_6(CopyField *copy)
84
copy->to_ptr[0]= copy->from_ptr[0];
85
copy->to_ptr[1]= copy->from_ptr[1];
86
copy->to_ptr[2]= copy->from_ptr[2];
87
copy->to_ptr[3]= copy->from_ptr[3];
88
copy->to_ptr[4]= copy->from_ptr[4];
89
copy->to_ptr[5]= copy->from_ptr[5];
92
static void do_field_8(CopyField *copy)
94
copy->to_ptr[0]= copy->from_ptr[0];
95
copy->to_ptr[1]= copy->from_ptr[1];
96
copy->to_ptr[2]= copy->from_ptr[2];
97
copy->to_ptr[3]= copy->from_ptr[3];
98
copy->to_ptr[4]= copy->from_ptr[4];
99
copy->to_ptr[5]= copy->from_ptr[5];
100
copy->to_ptr[6]= copy->from_ptr[6];
101
copy->to_ptr[7]= copy->from_ptr[7];
105
static void do_field_to_null_str(CopyField *copy)
85
107
if (*copy->from_null_ptr & copy->from_bit)
87
109
memset(copy->to_ptr, 0, copy->from_length);
88
copy->to_null_ptr[0]=1; // Always bit 1
110
copy->to_null_ptr[0]= 1; // Always bit 1
92
copy->to_null_ptr[0]=0;
93
memcpy(copy->to_ptr,copy->from_ptr,copy->from_length);
114
copy->to_null_ptr[0]= 0;
115
memcpy(copy->to_ptr, copy->from_ptr, copy->from_length);
98
static void do_outer_field_to_null_str(Copy_field *copy)
120
static void do_outer_field_to_null_str(CopyField *copy)
100
122
if (*copy->null_row ||
101
123
(copy->from_null_ptr && (*copy->from_null_ptr & copy->from_bit)))
103
125
memset(copy->to_ptr, 0, copy->from_length);
104
copy->to_null_ptr[0]=1; // Always bit 1
126
copy->to_null_ptr[0]= 1; // Always bit 1
108
copy->to_null_ptr[0]=0;
109
memcpy(copy->to_ptr,copy->from_ptr,copy->from_length);
130
copy->to_null_ptr[0]= 0;
131
memcpy(copy->to_ptr, copy->from_ptr, copy->from_length);
172
194
return 0; // Ok to set time to NULL
175
if (field == field->table->next_number_field)
197
if (field == field->getTable()->next_number_field)
177
field->table->auto_increment_field_not_null= false;
199
field->getTable()->auto_increment_field_not_null= false;
178
200
return 0; // field is set in fill_record()
180
if (field->table->in_use->count_cuted_fields == CHECK_FIELD_WARN)
202
if (field->getTable()->in_use->count_cuted_fields == CHECK_FIELD_WARN)
182
204
field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN, ER_BAD_NULL_ERROR, 1);
185
if (!field->table->in_use->no_errors)
207
if (!field->getTable()->in_use->no_errors)
186
208
my_error(ER_BAD_NULL_ERROR, MYF(0), field->field_name);
191
static void do_skip(Copy_field *copy __attribute__((unused)))
213
static void do_skip(CopyField *)
196
static void do_copy_null(Copy_field *copy)
218
static void do_copy_null(CopyField *copy)
198
220
if (*copy->from_null_ptr & copy->from_bit)
200
*copy->to_null_ptr|=copy->to_bit;
222
*copy->to_null_ptr|= copy->to_bit;
201
223
copy->to_field->reset();
273
static void do_copy_blob(Copy_field *copy)
301
static void do_copy_blob(CopyField *copy)
275
ulong length=((Field_blob*) copy->from_field)->get_length();
303
ulong length= ((Field_blob*) copy->from_field)->get_length();
276
304
((Field_blob*) copy->to_field)->store_length(length);
277
memcpy(copy->to_ptr,copy->from_ptr,sizeof(char*));
305
memcpy(copy->to_ptr, copy->from_ptr, sizeof(char*));
280
static void do_conv_blob(Copy_field *copy)
308
static void do_conv_blob(CopyField *copy)
282
copy->from_field->val_str(©->tmp);
310
copy->from_field->val_str_internal(©->tmp);
283
311
((Field_blob *) copy->to_field)->store(copy->tmp.ptr(),
285
copy->tmp.charset());
313
copy->tmp.charset());
288
316
/** Save blob in copy->tmp for GROUP BY. */
290
static void do_save_blob(Copy_field *copy)
318
static void do_save_blob(CopyField *copy)
292
320
char buff[MAX_FIELD_WIDTH];
293
String res(buff,sizeof(buff),copy->tmp.charset());
294
copy->from_field->val_str(&res);
321
String res(buff, sizeof(buff), copy->tmp.charset());
322
copy->from_field->val_str_internal(&res);
295
323
copy->tmp.copy(res);
296
324
((Field_blob *) copy->to_field)->store(copy->tmp.ptr(),
298
copy->tmp.charset());
326
copy->tmp.charset());
302
static void do_field_string(Copy_field *copy)
330
static void do_field_string(CopyField *copy)
304
332
char buff[MAX_FIELD_WIDTH];
305
333
copy->tmp.set_quick(buff,sizeof(buff),copy->tmp.charset());
306
copy->from_field->val_str(©->tmp);
334
copy->from_field->val_str_internal(©->tmp);
307
335
copy->to_field->store(copy->tmp.c_ptr_quick(),copy->tmp.length(),
308
336
copy->tmp.charset());
312
static void do_field_enum(Copy_field *copy)
340
static void do_field_enum(CopyField *copy)
314
342
if (copy->from_field->val_int() == 0)
315
343
((Field_enum *) copy->to_field)->store_type((uint64_t) 0);
401
static void do_expand_binary(Copy_field *copy)
403
const CHARSET_INFO * const cs= copy->from_field->charset();
404
memcpy(copy->to_ptr,copy->from_ptr,copy->from_length);
405
cs->cset->fill(cs, (char*) copy->to_ptr+copy->from_length,
406
copy->to_length-copy->from_length, '\0');
411
static void do_expand_string(Copy_field *copy)
413
const CHARSET_INFO * const cs= copy->from_field->charset();
414
memcpy(copy->to_ptr,copy->from_ptr,copy->from_length);
415
cs->cset->fill(cs, (char*) copy->to_ptr+copy->from_length,
416
copy->to_length-copy->from_length, ' ');
420
static void do_varstring1(Copy_field *copy)
422
uint length= (uint) *(uchar*) copy->from_ptr;
429
static void do_expand_binary(CopyField *copy)
431
const CHARSET_INFO * const cs= copy->from_field->charset();
432
memcpy(copy->to_ptr, copy->from_ptr, copy->from_length);
433
cs->cset->fill(cs, (char*) copy->to_ptr+copy->from_length,
434
copy->to_length-copy->from_length, '\0');
439
static void do_expand_string(CopyField *copy)
441
const CHARSET_INFO * const cs= copy->from_field->charset();
442
memcpy(copy->to_ptr,copy->from_ptr,copy->from_length);
443
cs->cset->fill(cs, (char*) copy->to_ptr+copy->from_length,
444
copy->to_length-copy->from_length, ' ');
448
static void do_varstring1(CopyField *copy)
450
uint32_t length= (uint32_t) *(unsigned char*) copy->from_ptr;
423
451
if (length > copy->to_length- 1)
425
length=copy->to_length - 1;
426
if (copy->from_field->table->in_use->count_cuted_fields)
453
length= copy->to_length - 1;
454
if (copy->from_field->getTable()->in_use->count_cuted_fields)
427
455
copy->to_field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN,
428
456
ER_WARN_DATA_TRUNCATED, 1);
430
*(uchar*) copy->to_ptr= (uchar) length;
458
*(unsigned char*) copy->to_ptr= (unsigned char) length;
431
459
memcpy(copy->to_ptr+1, copy->from_ptr + 1, length);
435
static void do_varstring1_mb(Copy_field *copy)
463
static void do_varstring1_mb(CopyField *copy)
437
465
int well_formed_error;
438
466
const CHARSET_INFO * const cs= copy->from_field->charset();
439
uint from_length= (uint) *(uchar*) copy->from_ptr;
440
const uchar *from_ptr= copy->from_ptr + 1;
441
uint to_char_length= (copy->to_length - 1) / cs->mbmaxlen;
442
uint length= cs->cset->well_formed_len(cs, (char*) from_ptr,
467
uint32_t from_length= (uint32_t) *(unsigned char*) copy->from_ptr;
468
const unsigned char *from_ptr= copy->from_ptr + 1;
469
uint32_t to_char_length= (copy->to_length - 1) / cs->mbmaxlen;
470
uint32_t length= cs->cset->well_formed_len(cs, (char*) from_ptr,
443
471
(char*) from_ptr + from_length,
444
472
to_char_length, &well_formed_error);
445
473
if (length < from_length)
447
if (current_thd->count_cuted_fields)
475
if (current_session->count_cuted_fields)
448
476
copy->to_field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN,
449
477
ER_WARN_DATA_TRUNCATED, 1);
451
*copy->to_ptr= (uchar) length;
479
*copy->to_ptr= (unsigned char) length;
452
480
memcpy(copy->to_ptr + 1, from_ptr, length);
456
static void do_varstring2(Copy_field *copy)
484
static void do_varstring2(CopyField *copy)
458
uint length=uint2korr(copy->from_ptr);
486
uint32_t length= uint2korr(copy->from_ptr);
459
487
if (length > copy->to_length- HA_KEY_BLOB_LENGTH)
461
489
length=copy->to_length-HA_KEY_BLOB_LENGTH;
462
if (copy->from_field->table->in_use->count_cuted_fields)
490
if (copy->from_field->getTable()->in_use->count_cuted_fields)
463
491
copy->to_field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN,
464
492
ER_WARN_DATA_TRUNCATED, 1);
472
static void do_varstring2_mb(Copy_field *copy)
500
static void do_varstring2_mb(CopyField *copy)
474
502
int well_formed_error;
475
503
const CHARSET_INFO * const cs= copy->from_field->charset();
476
uint char_length= (copy->to_length - HA_KEY_BLOB_LENGTH) / cs->mbmaxlen;
477
uint from_length= uint2korr(copy->from_ptr);
478
const uchar *from_beg= copy->from_ptr + HA_KEY_BLOB_LENGTH;
479
uint length= cs->cset->well_formed_len(cs, (char*) from_beg,
480
(char*) from_beg + from_length,
481
char_length, &well_formed_error);
504
uint32_t char_length= (copy->to_length - HA_KEY_BLOB_LENGTH) / cs->mbmaxlen;
505
uint32_t from_length= uint2korr(copy->from_ptr);
506
const unsigned char *from_beg= copy->from_ptr + HA_KEY_BLOB_LENGTH;
507
uint32_t length= cs->cset->well_formed_len(cs, (char*) from_beg,
508
(char*) from_beg + from_length,
509
char_length, &well_formed_error);
482
510
if (length < from_length)
484
if (current_thd->count_cuted_fields)
512
if (current_session->count_cuted_fields)
485
513
copy->to_field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN,
486
514
ER_WARN_DATA_TRUNCATED, 1);
488
516
int2store(copy->to_ptr, length);
489
517
memcpy(copy->to_ptr+HA_KEY_BLOB_LENGTH, from_beg, length);
493
521
/***************************************************************************
494
** The different functions that fills in a Copy_field class
522
** The different functions that fills in a CopyField class
495
523
***************************************************************************/
502
530
The 'to' buffer should have a size of field->pack_length()+1
505
void Copy_field::set(uchar *to,Field *from)
533
void CopyField::set(unsigned char *to,Field *from)
509
from_length=from->pack_length();
537
from_length= from->pack_length();
510
538
if (from->maybe_null())
512
from_null_ptr=from->null_ptr;
513
from_bit= from->null_bit;
514
to_ptr[0]= 1; // Null as default value
515
to_null_ptr= (uchar*) to_ptr++;
517
if (from->table->maybe_null)
540
from_null_ptr= from->null_ptr;
541
from_bit= from->null_bit;
542
to_ptr[0]= 1; // Null as default value
543
to_null_ptr= (unsigned char*) to_ptr++;
545
if (from->getTable()->maybe_null)
519
null_row= &from->table->null_row;
520
do_copy= do_outer_field_to_null_str;
547
null_row= &from->getTable()->null_row;
548
do_copy= do_outer_field_to_null_str;
523
do_copy= do_field_to_null_str;
551
do_copy= do_field_to_null_str;
527
to_null_ptr= 0; // For easy debugging
528
do_copy= do_field_eq;
555
to_null_ptr= 0; // For easy debugging
556
do_copy= do_field_eq;
536
564
If 'save\ is set to true and the 'from' is a blob field, do_copy is set to
537
565
do_save_blob rather than do_conv_blob. The only differences between them
540
- do_save_blob allocates and uses an intermediate buffer before calling
541
Field_blob::store. Is this in order to trigger the call to
568
- do_save_blob allocates and uses an intermediate buffer before calling
569
Field_blob::store. Is this in order to trigger the call to
542
570
well_formed_copy_nchars, by changing the pointer copy->tmp.ptr()?
543
571
That call will take place anyway in all known cases.
545
- The above causes a truncation to MAX_FIELD_WIDTH. Is this the intended
573
- The above causes a truncation to MAX_FIELD_WIDTH. Is this the intended
546
574
effect? Truncation is handled by well_formed_copy_nchars anyway.
548
void Copy_field::set(Field *to,Field *from,bool save)
576
void CopyField::set(Field *to,Field *from,bool save)
550
578
if (to->type() == DRIZZLE_TYPE_NULL)
552
to_null_ptr=0; // For easy debugging
580
to_null_ptr= 0; // For easy debugging
560
from_length=from->pack_length();
562
to_length=to_field->pack_length();
588
from_length= from->pack_length();
590
to_length= to_field->pack_length();
564
592
// set up null handling
565
from_null_ptr=to_null_ptr=0;
593
from_null_ptr= to_null_ptr= 0;
566
594
if (from->maybe_null())
568
from_null_ptr= from->null_ptr;
569
from_bit= from->null_bit;
596
from_null_ptr= from->null_ptr;
597
from_bit= from->null_bit;
570
598
if (to_field->real_maybe_null())
572
to_null_ptr= to->null_ptr;
573
to_bit= to->null_bit;
600
to_null_ptr= to->null_ptr;
601
to_bit= to->null_bit;
574
602
if (from_null_ptr)
575
do_copy= do_copy_null;
604
do_copy= do_copy_null;
578
null_row= &from->table->null_row;
579
do_copy= do_outer_field_null;
608
null_row= &from->getTable()->null_row;
609
do_copy= do_outer_field_null;
584
614
if (to_field->type() == DRIZZLE_TYPE_TIMESTAMP)
585
616
do_copy= do_copy_timestamp; // Automatic timestamp
586
else if (to_field == to_field->table->next_number_field)
618
else if (to_field == to_field->getTable()->next_number_field)
587
620
do_copy= do_copy_next_number;
589
624
do_copy= do_copy_not_null;
592
628
else if (to_field->real_maybe_null())
594
to_null_ptr= to->null_ptr;
595
to_bit= to->null_bit;
630
to_null_ptr= to->null_ptr;
631
to_bit= to->null_bit;
596
632
do_copy= do_copy_maybe_null;
601
637
if ((to->flags & BLOB_FLAG) && save)
602
638
do_copy2= do_save_blob;
604
640
do_copy2= get_copy_func(to,from);
605
if (!do_copy) // Not null
641
if (!do_copy) // Not null
610
Copy_field::Copy_func *
611
Copy_field::get_copy_func(Field *to,Field *from)
646
CopyField::Copy_func *
647
CopyField::get_copy_func(Field *to,Field *from)
613
bool compatible_db_low_byte_first= (to->table->s->db_low_byte_first ==
614
from->table->s->db_low_byte_first);
649
bool compatible_db_low_byte_first= (to->getTable()->getShare()->db_low_byte_first ==
650
from->getTable()->getShare()->db_low_byte_first);
615
651
if (to->flags & BLOB_FLAG)
617
653
if (!(from->flags & BLOB_FLAG) || from->charset() != to->charset())
658
701
else if (to->charset() != from->charset())
659
return do_field_string;
702
return do_field_string;
660
703
else if (to->real_type() == DRIZZLE_TYPE_VARCHAR)
662
if (((Field_varstring*) to)->length_bytes !=
663
((Field_varstring*) from)->length_bytes)
664
return do_field_string;
705
/* Field_blob is not part of the Field_varstring hierarchy,
706
and casting to varstring for calling pack_length_no_ptr()
707
is always incorrect. Previously the below comparison has
708
always evaluated to false as pack_length_no_ptr() for BLOB
709
will return 4 and varstring can only be <= 2.
710
If your brain slightly bleeds as to why this worked for
711
so many years, you are in no way alone.
713
if (from->flags & BLOB_FLAG)
714
return do_field_string;
716
if ((static_cast<Field_varstring*>(to))->pack_length_no_ptr() !=
717
(static_cast<Field_varstring*>(from))->pack_length_no_ptr())
719
return do_field_string;
665
722
if (to_length != from_length)
666
return (((Field_varstring*) to)->length_bytes == 1 ?
724
return (((Field_varstring*) to)->pack_length_no_ptr() == 1 ?
667
725
(from->charset()->mbmaxlen == 1 ? do_varstring1 :
669
727
(from->charset()->mbmaxlen == 1 ? do_varstring2 :
672
731
else if (to_length < from_length)
673
return (from->charset()->mbmaxlen == 1 ?
733
return (from->charset()->mbmaxlen == 1 ?
674
734
do_cut_string : do_cut_string_complex);
675
736
else if (to_length > from_length)
677
738
if (to->charset() == &my_charset_bin)
720
784
int field_conv(Field *to,Field *from)
722
786
if (to->real_type() == from->real_type() &&
723
!(to->type() == DRIZZLE_TYPE_BLOB && to->table->copy_blobs))
787
!(to->type() == DRIZZLE_TYPE_BLOB && to->getTable()->copy_blobs))
725
789
/* Please god, will someone rewrite this to be readable :( */
726
if (to->pack_length() == from->pack_length() &&
727
!(to->flags & UNSIGNED_FLAG && !(from->flags & UNSIGNED_FLAG)) &&
728
to->real_type() != DRIZZLE_TYPE_ENUM &&
729
(to->real_type() != DRIZZLE_TYPE_NEWDECIMAL || (to->field_length == from->field_length && (((Field_num*)to)->dec == ((Field_num*)from)->dec))) &&
790
if (to->pack_length() == from->pack_length() &&
791
!(to->flags & UNSIGNED_FLAG && !(from->flags & UNSIGNED_FLAG)) &&
792
to->real_type() != DRIZZLE_TYPE_ENUM &&
793
(to->real_type() != DRIZZLE_TYPE_DECIMAL || (to->field_length == from->field_length && (((Field_num*)to)->dec == ((Field_num*)from)->dec))) &&
730
794
from->charset() == to->charset() &&
731
to->table->s->db_low_byte_first == from->table->s->db_low_byte_first &&
732
(!(to->table->in_use->variables.sql_mode & (MODE_NO_ZERO_IN_DATE | MODE_NO_ZERO_DATE | MODE_INVALID_DATES)) || (to->type() != DRIZZLE_TYPE_NEWDATE && to->type() != DRIZZLE_TYPE_DATETIME)) &&
733
(from->real_type() != DRIZZLE_TYPE_VARCHAR || ((Field_varstring*)from)->length_bytes == ((Field_varstring*)to)->length_bytes))
795
to->getTable()->getShare()->db_low_byte_first == from->getTable()->getShare()->db_low_byte_first &&
796
(!(to->getTable()->in_use->variables.sql_mode & (MODE_NO_ZERO_DATE | MODE_INVALID_DATES)) || (to->type() != DRIZZLE_TYPE_DATE && to->type() != DRIZZLE_TYPE_DATETIME)) &&
797
(from->real_type() != DRIZZLE_TYPE_VARCHAR || ((Field_varstring*)from)->pack_length_no_ptr() == ((Field_varstring*)to)->pack_length_no_ptr()))
734
798
{ // Identical fields
736
799
/* This may happen if one does 'UPDATE ... SET x=x' */
737
800
if (to->ptr != from->ptr)
739
801
memcpy(to->ptr,from->ptr,to->pack_length());