813
820
Item *item=sort_field->item;
814
821
maybe_null= item->maybe_null;
815
823
switch (sort_field->result_type) {
816
824
case STRING_RESULT:
818
const CHARSET_INFO * const cs=item->collation.collation;
819
char fill_char= ((cs->state & MY_CS_BINSORT) ? (char) 0 : ' ');
821
uint32_t sort_field_length;
826
const CHARSET_INFO * const cs=item->collation.collation;
827
char fill_char= ((cs->state & MY_CS_BINSORT) ? (char) 0 : ' ');
829
uint32_t sort_field_length;
825
/* All item->str() to use some extra byte for end null.. */
826
String tmp((char*) to,sort_field->length+4,cs);
827
String *res= item->str_result(&tmp);
831
memset(to-1, 0, sort_field->length+1);
833
/* All item->str() to use some extra byte for end null.. */
834
String tmp((char*) to,sort_field->length+4,cs);
835
String *res= item->str_result(&tmp);
839
memset(to-1, 0, sort_field->length+1);
843
This should only happen during extreme conditions if we run out
844
of memory or have an item marked not null when it can be null.
845
This code is here mainly to avoid a hard crash in this case.
848
memset(to, 0, sort_field->length); // Avoid crash
852
length= res->length();
853
sort_field_length= sort_field->length - sort_field->suffix_length;
854
diff=(int) (sort_field_length - length);
858
length= sort_field_length;
860
if (sort_field->suffix_length)
862
/* Store length last in result_string */
863
store_length(to + sort_field_length, length,
864
sort_field->suffix_length);
866
if (sort_field->need_strxnfrm)
868
char *from=(char*) res->ptr();
870
if ((unsigned char*) from == to)
872
set_if_smaller(length,sort_field->length);
873
memcpy(tmp_buffer,from,length);
876
tmp_length= my_strnxfrm(cs,to,sort_field->length,
877
(unsigned char*) from, length);
878
assert(tmp_length == sort_field->length);
835
This should only happen during extreme conditions if we run out
836
of memory or have an item marked not null when it can be null.
837
This code is here mainly to avoid a hard crash in this case.
840
memset(to, 0, sort_field->length); // Avoid crash
882
my_strnxfrm(cs,(unsigned char*)to,length,(const unsigned char*)res->ptr(),length);
883
cs->cset->fill(cs, (char *)to+length,diff,fill_char);
844
length= res->length();
845
sort_field_length= sort_field->length - sort_field->suffix_length;
846
diff=(int) (sort_field_length - length);
850
length= sort_field_length;
852
if (sort_field->suffix_length)
854
/* Store length last in result_string */
855
store_length(to + sort_field_length, length,
856
sort_field->suffix_length);
858
if (sort_field->need_strxnfrm)
860
char *from=(char*) res->ptr();
862
if ((unsigned char*) from == to)
864
set_if_smaller(length,sort_field->length);
865
memcpy(tmp_buffer,from,length);
868
tmp_length= my_strnxfrm(cs,to,sort_field->length,
869
(unsigned char*) from, length);
870
assert(tmp_length == sort_field->length);
874
my_strnxfrm(cs,(unsigned char*)to,length,(const unsigned char*)res->ptr(),length);
875
cs->cset->fill(cs, (char *)to+length,diff,fill_char);
881
889
int64_t value= item->val_int_result();
885
893
if (item->null_value)
896
to[7]= (unsigned char) value;
897
to[6]= (unsigned char) (value >> 8);
898
to[5]= (unsigned char) (value >> 16);
899
to[4]= (unsigned char) (value >> 24);
900
to[3]= (unsigned char) (value >> 32);
901
to[2]= (unsigned char) (value >> 40);
902
to[1]= (unsigned char) (value >> 48);
904
to[7]= (unsigned char) value;
905
to[6]= (unsigned char) (value >> 8);
906
to[5]= (unsigned char) (value >> 16);
907
to[4]= (unsigned char) (value >> 24);
908
to[3]= (unsigned char) (value >> 32);
909
to[2]= (unsigned char) (value >> 40);
910
to[1]= (unsigned char) (value >> 48);
903
911
if (item->unsigned_flag) /* Fix sign */
904
912
to[0]= (unsigned char) (value >> 56);
906
914
to[0]= (unsigned char) (value >> 56) ^ 128; /* Reverse signbit */
909
917
case DECIMAL_RESULT:
911
my_decimal dec_buf, *dec_val= item->val_decimal_result(&dec_buf);
919
type::Decimal dec_buf, *dec_val= item->val_decimal_result(&dec_buf);
914
922
if (item->null_value)
1051
bool SortParam::save_index(unsigned char **sort_keys, uint32_t count,
1052
filesort_info *table_sort)
1062
bool SortParam::save_index(unsigned char **sort_keys, uint32_t count, filesort_info *table_sort)
1054
1064
uint32_t offset;
1055
1065
unsigned char *to;
1057
1067
internal::my_string_ptr_sort((unsigned char*) sort_keys, (uint32_t) count, sort_length);
1058
1068
offset= rec_length - res_length;
1059
1070
if ((ha_rows) count > max_rows)
1060
1071
count=(uint32_t) max_rows;
1061
if (!(to= table_sort->record_pointers=
1062
(unsigned char*) malloc(res_length*count)))
1073
if (!(to= table_sort->record_pointers= (unsigned char*) malloc(res_length*count)))
1065
1076
for (unsigned char **end_ptr= sort_keys+count ; sort_keys != end_ptr ; sort_keys++)
1486
1502
sortorder->result_type= sortorder->item->result_type();
1487
1503
if (sortorder->item->result_as_int64_t())
1488
1504
sortorder->result_type= INT_RESULT;
1489
1506
switch (sortorder->result_type) {
1490
1507
case STRING_RESULT:
1491
sortorder->length=sortorder->item->max_length;
1508
sortorder->length=sortorder->item->max_length;
1492
1509
set_if_smaller(sortorder->length,
1493
1510
getSession().variables.max_sort_length);
1494
if (use_strnxfrm((cs=sortorder->item->collation.collation)))
1511
if (use_strnxfrm((cs=sortorder->item->collation.collation)))
1496
1513
sortorder->length= cs->coll->strnxfrmlen(cs, sortorder->length);
1497
sortorder->need_strxnfrm= 1;
1498
*multi_byte_charset= 1;
1514
sortorder->need_strxnfrm= 1;
1515
*multi_byte_charset= 1;
1500
1517
else if (cs == &my_charset_bin)
1502
1519
/* Store length last to be able to sort blob/varbinary */
1503
1520
sortorder->suffix_length= suffix_length(sortorder->length);
1504
1521
sortorder->length+= sortorder->suffix_length;
1507
1524
case INT_RESULT:
1508
sortorder->length=8; // Size of intern int64_t
1525
sortorder->length=8; // Size of intern int64_t
1510
1527
case DECIMAL_RESULT:
1511
1528
sortorder->length=
1512
my_decimal_get_binary_size(sortorder->item->max_length -
1529
class_decimal_get_binary_size(sortorder->item->max_length -
1513
1530
(sortorder->item->decimals ? 1 : 0),
1514
1531
sortorder->item->decimals);
1516
1533
case REAL_RESULT:
1517
sortorder->length=sizeof(double);
1534
sortorder->length=sizeof(double);
1519
1536
case ROW_RESULT:
1521
// This case should never be choosen
1537
// This case should never be choosen
1525
1541
if (sortorder->item->maybe_null)
1526
length++; // Place for NULL marker
1542
length++; // Place for NULL marker
1528
1544
set_if_smaller(sortorder->length, (size_t)getSession().variables.max_sort_length);
1529
1545
length+=sortorder->length;