12
12
You should have received a copy of the GNU General Public License
13
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
24
24
gives much more speed.
27
#include <drizzled/server_includes.h>
29
28
#include <drizzled/error.h>
30
29
#include <drizzled/table.h>
31
30
#include <drizzled/session.h>
33
#include <drizzled/copy_field.h>
32
#include <drizzled/field/str.h>
33
#include <drizzled/field/num.h>
34
34
#include <drizzled/field/blob.h>
35
#include <drizzled/field/enum.h>
36
#include <drizzled/field/null.h>
35
37
#include <drizzled/field/date.h>
36
#include <drizzled/field/datetime.h>
37
38
#include <drizzled/field/decimal.h>
39
#include <drizzled/field/real.h>
38
40
#include <drizzled/field/double.h>
39
#include <drizzled/field/enum.h>
40
#include <drizzled/field/epoch.h>
41
#include <drizzled/field/int32.h>
42
#include <drizzled/field/int64.h>
43
#include <drizzled/field/null.h>
44
#include <drizzled/field/num.h>
45
#include <drizzled/field/num.h>
46
#include <drizzled/field/real.h>
47
#include <drizzled/field/str.h>
41
#include <drizzled/field/long.h>
42
#include <drizzled/field/int64_t.h>
43
#include <drizzled/field/num.h>
44
#include <drizzled/field/timestamp.h>
45
#include <drizzled/field/datetime.h>
48
46
#include <drizzled/field/varstring.h>
53
49
static void do_field_eq(CopyField *copy)
148
if (field->getTable()->in_use->count_cuted_fields == CHECK_FIELD_WARN)
144
if (field->table->in_use->count_cuted_fields == CHECK_FIELD_WARN)
150
146
field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN, ER_WARN_DATA_TRUNCATED, 1);
153
if (!field->getTable()->in_use->no_errors)
149
if (!field->table->in_use->no_errors)
154
150
my_error(ER_BAD_NULL_ERROR, MYF(0), field->field_name);
191
186
when set to NULL (TIMESTAMP fields which allow setting to NULL
192
187
are handled by first check).
194
if (field->is_timestamp())
189
if (field->type() == DRIZZLE_TYPE_TIMESTAMP)
196
((field::Epoch::pointer) field)->set_time();
191
((Field_timestamp*) field)->set_time();
197
192
return 0; // Ok to set time to NULL
201
if (field == field->getTable()->next_number_field)
195
if (field == field->table->next_number_field)
203
field->getTable()->auto_increment_field_not_null= false;
197
field->table->auto_increment_field_not_null= false;
204
198
return 0; // field is set in fill_record()
207
if (field->getTable()->in_use->count_cuted_fields == CHECK_FIELD_WARN)
200
if (field->table->in_use->count_cuted_fields == CHECK_FIELD_WARN)
209
202
field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN, ER_BAD_NULL_ERROR, 1);
213
if (!field->getTable()->in_use->no_errors)
205
if (!field->table->in_use->no_errors)
214
206
my_error(ER_BAD_NULL_ERROR, MYF(0), field->field_name);
256
247
static void do_copy_not_null(CopyField *copy)
258
if (copy->to_field->hasDefault() and *copy->from_null_ptr & copy->from_bit)
260
copy->to_field->set_default();
262
else if (*copy->from_null_ptr & copy->from_bit)
249
if (*copy->from_null_ptr & copy->from_bit)
264
251
copy->to_field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN,
265
252
ER_WARN_DATA_TRUNCATED, 1);
266
253
copy->to_field->reset();
270
256
(copy->do_copy2)(copy);
299
282
if (*copy->from_null_ptr & copy->from_bit)
301
284
/* Same as in set_field_to_null_with_conversions() */
302
copy->to_field->getTable()->auto_increment_field_not_null= false;
285
copy->to_field->table->auto_increment_field_not_null= false;
303
286
copy->to_field->reset();
307
289
(copy->do_copy2)(copy);
319
300
static void do_conv_blob(CopyField *copy)
321
copy->from_field->val_str_internal(©->tmp);
302
copy->from_field->val_str(©->tmp);
322
303
((Field_blob *) copy->to_field)->store(copy->tmp.ptr(),
323
304
copy->tmp.length(),
324
305
copy->tmp.charset());
331
312
char buff[MAX_FIELD_WIDTH];
332
313
String res(buff, sizeof(buff), copy->tmp.charset());
333
copy->from_field->val_str_internal(&res);
314
copy->from_field->val_str(&res);
334
315
copy->tmp.copy(res);
335
316
((Field_blob *) copy->to_field)->store(copy->tmp.ptr(),
336
317
copy->tmp.length(),
343
324
char buff[MAX_FIELD_WIDTH];
344
325
copy->tmp.set_quick(buff,sizeof(buff),copy->tmp.charset());
345
copy->from_field->val_str_internal(©->tmp);
326
copy->from_field->val_str(©->tmp);
346
327
copy->to_field->store(copy->tmp.c_ptr_quick(),copy->tmp.length(),
347
328
copy->tmp.charset());
386
367
static void do_cut_string(CopyField *copy)
388
369
const CHARSET_INFO * const cs= copy->from_field->charset();
389
memcpy(copy->to_ptr, copy->from_ptr, copy->to_length);
370
memcpy(copy->to_ptr,copy->from_ptr,copy->to_length);
391
372
/* Check if we loosed any important characters */
392
373
if (cs->cset->scan(cs,
462
443
if (length > copy->to_length- 1)
464
445
length= copy->to_length - 1;
465
if (copy->from_field->getTable()->in_use->count_cuted_fields)
446
if (copy->from_field->table->in_use->count_cuted_fields)
467
447
copy->to_field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN,
468
448
ER_WARN_DATA_TRUNCATED, 1);
471
450
*(unsigned char*) copy->to_ptr= (unsigned char) length;
472
451
memcpy(copy->to_ptr+1, copy->from_ptr + 1, length);
486
465
if (length < from_length)
488
467
if (current_session->count_cuted_fields)
490
468
copy->to_field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN,
491
469
ER_WARN_DATA_TRUNCATED, 1);
494
471
*copy->to_ptr= (unsigned char) length;
495
472
memcpy(copy->to_ptr + 1, from_ptr, length);
502
479
if (length > copy->to_length- HA_KEY_BLOB_LENGTH)
504
481
length=copy->to_length-HA_KEY_BLOB_LENGTH;
505
if (copy->from_field->getTable()->in_use->count_cuted_fields)
482
if (copy->from_field->table->in_use->count_cuted_fields)
507
483
copy->to_field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN,
508
484
ER_WARN_DATA_TRUNCATED, 1);
511
486
int2store(copy->to_ptr,length);
512
487
memcpy(copy->to_ptr+HA_KEY_BLOB_LENGTH, copy->from_ptr + HA_KEY_BLOB_LENGTH,
527
502
if (length < from_length)
529
504
if (current_session->count_cuted_fields)
531
505
copy->to_field->set_warning(DRIZZLE_ERROR::WARN_LEVEL_WARN,
532
506
ER_WARN_DATA_TRUNCATED, 1);
535
508
int2store(copy->to_ptr, length);
536
509
memcpy(copy->to_ptr+HA_KEY_BLOB_LENGTH, from_beg, length);
561
534
to_ptr[0]= 1; // Null as default value
562
535
to_null_ptr= (unsigned char*) to_ptr++;
564
if (from->getTable()->maybe_null)
537
if (from->table->maybe_null)
566
null_row= &from->getTable()->null_row;
539
null_row= &from->table->null_row;
567
540
do_copy= do_outer_field_to_null_str;
619
592
to_null_ptr= to->null_ptr;
620
593
to_bit= to->null_bit;
621
594
if (from_null_ptr)
623
595
do_copy= do_copy_null;
627
null_row= &from->getTable()->null_row;
598
null_row= &from->table->null_row;
628
599
do_copy= do_outer_field_null;
633
if (to_field->is_timestamp())
604
if (to_field->type() == DRIZZLE_TYPE_TIMESTAMP)
635
605
do_copy= do_copy_timestamp; // Automatic timestamp
637
else if (to_field == to_field->getTable()->next_number_field)
606
else if (to_field == to_field->table->next_number_field)
639
607
do_copy= do_copy_next_number;
643
609
do_copy= do_copy_not_null;
647
612
else if (to_field->real_maybe_null())
665
630
CopyField::Copy_func *
666
631
CopyField::get_copy_func(Field *to,Field *from)
668
bool compatible_db_low_byte_first= (to->getTable()->getShare()->db_low_byte_first ==
669
from->getTable()->getShare()->db_low_byte_first);
633
bool compatible_db_low_byte_first= (to->table->s->db_low_byte_first ==
634
from->table->s->db_low_byte_first);
670
635
if (to->flags & BLOB_FLAG)
672
637
if (!(from->flags & BLOB_FLAG) || from->charset() != to->charset())
674
639
if (from_length != to_length || !compatible_db_low_byte_first)
676
641
// Correct pointer to point at char pointer
677
to_ptr+= to_length - to->getTable()->getShare()->sizeBlobPtr();
678
from_ptr+= from_length- from->getTable()->getShare()->sizeBlobPtr();
642
to_ptr+= to_length - to->table->s->blob_ptr_size;
643
from_ptr+= from_length- from->table->s->blob_ptr_size;
679
644
return do_copy_blob;
694
659
if (to->real_type() != from->real_type() ||
695
660
!compatible_db_low_byte_first ||
696
(((to->getTable()->in_use->variables.sql_mode & (MODE_NO_ZERO_DATE | MODE_INVALID_DATES)) && to->type() == DRIZZLE_TYPE_DATE) || to->type() == DRIZZLE_TYPE_DATETIME))
661
(((to->table->in_use->variables.sql_mode & (MODE_NO_ZERO_DATE | MODE_INVALID_DATES)) && to->type() == DRIZZLE_TYPE_DATE) || to->type() == DRIZZLE_TYPE_DATETIME))
698
663
if (from->real_type() == DRIZZLE_TYPE_ENUM)
721
686
return do_field_string;
722
687
else if (to->real_type() == DRIZZLE_TYPE_VARCHAR)
724
/* Field_blob is not part of the Field_varstring hierarchy,
725
and casting to varstring for calling pack_length_no_ptr()
726
is always incorrect. Previously the below comparison has
727
always evaluated to false as pack_length_no_ptr() for BLOB
728
will return 4 and varstring can only be <= 2.
729
If your brain slightly bleeds as to why this worked for
730
so many years, you are in no way alone.
732
if (from->flags & BLOB_FLAG)
733
return do_field_string;
735
if ((static_cast<Field_varstring*>(to))->pack_length_no_ptr() !=
736
(static_cast<Field_varstring*>(from))->pack_length_no_ptr())
689
if (((Field_varstring*) to)->length_bytes !=
690
((Field_varstring*) from)->length_bytes)
738
692
return do_field_string;
741
695
if (to_length != from_length)
743
return (((Field_varstring*) to)->pack_length_no_ptr() == 1 ?
697
return (((Field_varstring*) to)->length_bytes == 1 ?
744
698
(from->charset()->mbmaxlen == 1 ? do_varstring1 :
746
700
(from->charset()->mbmaxlen == 1 ? do_varstring2 :
750
704
else if (to_length < from_length)
803
757
int field_conv(Field *to,Field *from)
805
759
if (to->real_type() == from->real_type() &&
806
!(to->type() == DRIZZLE_TYPE_BLOB && to->getTable()->copy_blobs))
760
!(to->type() == DRIZZLE_TYPE_BLOB && to->table->copy_blobs))
808
762
/* Please god, will someone rewrite this to be readable :( */
809
763
if (to->pack_length() == from->pack_length() &&
811
765
to->real_type() != DRIZZLE_TYPE_ENUM &&
812
766
(to->real_type() != DRIZZLE_TYPE_DECIMAL || (to->field_length == from->field_length && (((Field_num*)to)->dec == ((Field_num*)from)->dec))) &&
813
767
from->charset() == to->charset() &&
814
to->getTable()->getShare()->db_low_byte_first == from->getTable()->getShare()->db_low_byte_first &&
815
(!(to->getTable()->in_use->variables.sql_mode & (MODE_NO_ZERO_DATE | MODE_INVALID_DATES)) || (to->type() != DRIZZLE_TYPE_DATE && to->type() != DRIZZLE_TYPE_DATETIME)) &&
816
(from->real_type() != DRIZZLE_TYPE_VARCHAR || ((Field_varstring*)from)->pack_length_no_ptr() == ((Field_varstring*)to)->pack_length_no_ptr()))
768
to->table->s->db_low_byte_first == from->table->s->db_low_byte_first &&
769
(!(to->table->in_use->variables.sql_mode & (MODE_NO_ZERO_DATE | MODE_INVALID_DATES)) || (to->type() != DRIZZLE_TYPE_DATE && to->type() != DRIZZLE_TYPE_DATETIME)) &&
770
(from->real_type() != DRIZZLE_TYPE_VARCHAR || ((Field_varstring*)from)->length_bytes == ((Field_varstring*)to)->length_bytes))
817
771
{ // Identical fields
818
772
/* This may happen if one does 'UPDATE ... SET x=x' */
819
773
if (to->ptr != from->ptr)
824
778
if (to->type() == DRIZZLE_TYPE_BLOB)
825
779
{ // Be sure the value is stored
826
780
Field_blob *blob=(Field_blob*) to;
827
from->val_str_internal(&blob->value);
781
from->val_str(&blob->value);
829
783
Copy value if copy_blobs is set, or source is not a string and
830
784
we have a pointer to its internal string conversion buffer.
832
if (to->getTable()->copy_blobs ||
786
if (to->table->copy_blobs ||
833
787
(!blob->value.is_alloced() &&
834
788
from->real_type() != DRIZZLE_TYPE_VARCHAR))
835
789
blob->value.copy();
849
803
char buff[MAX_FIELD_WIDTH];
850
804
String result(buff,sizeof(buff),from->charset());
851
from->val_str_internal(&result);
805
from->val_str(&result);
853
807
We use c_ptr_quick() here to make it easier if to is a float/double
854
808
as the conversion routines will do a copy of the result doesn't
858
812
return to->store(result.c_ptr_quick(),result.length(),from->charset());
860
814
else if (from->result_type() == REAL_RESULT)
862
815
return to->store(from->val_real());
864
816
else if (from->result_type() == DECIMAL_RESULT)
867
819
return to->store_decimal(from->val_decimal(&buff));
871
822
return to->store(from->val_int(), test(from->flags & UNSIGNED_FLAG));
875
} /* namespace drizzled */