27
27
#include <limits.h>
30
30
#include <algorithm>
33
#include <drizzled/drizzled.h>
34
#include <drizzled/sql_sort.h>
35
#include <drizzled/filesort.h>
36
#include <drizzled/error.h>
37
#include <drizzled/probes.h>
38
#include <drizzled/session.h>
39
#include <drizzled/table.h>
40
#include <drizzled/table_list.h>
41
#include <drizzled/optimizer/range.h>
42
#include <drizzled/records.h>
43
#include <drizzled/internal/iocache.h>
44
#include <drizzled/internal/my_sys.h>
45
#include <plugin/myisam/myisam.h>
46
#include <drizzled/plugin/transactional_storage_engine.h>
47
#include <drizzled/atomics.h>
48
#include <drizzled/global_buffer.h>
50
#include <drizzled/sort_field.h>
32
#include "drizzled/drizzled.h"
33
#include "drizzled/sql_sort.h"
34
#include "drizzled/filesort.h"
35
#include "drizzled/error.h"
36
#include "drizzled/probes.h"
37
#include "drizzled/session.h"
38
#include "drizzled/table.h"
39
#include "drizzled/table_list.h"
40
#include "drizzled/optimizer/range.h"
41
#include "drizzled/records.h"
42
#include "drizzled/internal/iocache.h"
43
#include "drizzled/internal/my_sys.h"
44
#include "plugin/myisam/myisam.h"
45
#include "drizzled/plugin/transactional_storage_engine.h"
46
#include "drizzled/atomics.h"
47
#include "drizzled/global_buffer.h"
53
50
using namespace std;
822
813
Item *item=sort_field->item;
823
814
maybe_null= item->maybe_null;
825
815
switch (sort_field->result_type) {
826
816
case STRING_RESULT:
828
const CHARSET_INFO * const cs=item->collation.collation;
829
char fill_char= ((cs->state & MY_CS_BINSORT) ? (char) 0 : ' ');
831
uint32_t sort_field_length;
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;
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);
835
/* All item->str() to use some extra byte for end null.. */
836
String tmp((char*) to,sort_field->length+4,cs);
837
String *res= item->str_result(&tmp);
841
memset(to-1, 0, sort_field->length+1);
845
This should only happen during extreme conditions if we run out
846
of memory or have an item marked not null when it can be null.
847
This code is here mainly to avoid a hard crash in this case.
850
memset(to, 0, sort_field->length); // Avoid crash
854
length= res->length();
855
sort_field_length= sort_field->length - sort_field->suffix_length;
856
diff=(int) (sort_field_length - length);
860
length= sort_field_length;
862
if (sort_field->suffix_length)
864
/* Store length last in result_string */
865
store_length(to + sort_field_length, length,
866
sort_field->suffix_length);
868
if (sort_field->need_strxnfrm)
870
char *from=(char*) res->ptr();
872
if ((unsigned char*) from == to)
874
set_if_smaller(length,sort_field->length);
875
memcpy(tmp_buffer,from,length);
878
tmp_length= my_strnxfrm(cs,to,sort_field->length,
879
(unsigned char*) from, length);
880
assert(tmp_length == sort_field->length);
831
memset(to-1, 0, sort_field->length+1);
884
my_strnxfrm(cs,(unsigned char*)to,length,(const unsigned char*)res->ptr(),length);
885
cs->cset->fill(cs, (char *)to+length,diff,fill_char);
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
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);
891
881
int64_t value= item->val_int_result();
895
885
if (item->null_value)
906
to[7]= (unsigned char) value;
907
to[6]= (unsigned char) (value >> 8);
908
to[5]= (unsigned char) (value >> 16);
909
to[4]= (unsigned char) (value >> 24);
910
to[3]= (unsigned char) (value >> 32);
911
to[2]= (unsigned char) (value >> 40);
912
to[1]= (unsigned char) (value >> 48);
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);
913
903
if (item->unsigned_flag) /* Fix sign */
914
904
to[0]= (unsigned char) (value >> 56);
916
906
to[0]= (unsigned char) (value >> 56) ^ 128; /* Reverse signbit */
919
909
case DECIMAL_RESULT:
921
type::Decimal dec_buf, *dec_val= item->val_decimal_result(&dec_buf);
911
my_decimal dec_buf, *dec_val= item->val_decimal_result(&dec_buf);
924
914
if (item->null_value)
1064
bool SortParam::save_index(unsigned char **sort_keys, uint32_t count, filesort_info *table_sort)
1051
bool SortParam::save_index(unsigned char **sort_keys, uint32_t count,
1052
filesort_info *table_sort)
1066
1054
uint32_t offset;
1067
1055
unsigned char *to;
1069
1057
internal::my_string_ptr_sort((unsigned char*) sort_keys, (uint32_t) count, sort_length);
1070
1058
offset= rec_length - res_length;
1072
1059
if ((ha_rows) count > max_rows)
1073
1060
count=(uint32_t) max_rows;
1075
if (!(to= table_sort->record_pointers= (unsigned char*) malloc(res_length*count)))
1061
if (!(to= table_sort->record_pointers=
1062
(unsigned char*) malloc(res_length*count)))
1078
1065
for (unsigned char **end_ptr= sort_keys+count ; sort_keys != end_ptr ; sort_keys++)
1504
1486
sortorder->result_type= sortorder->item->result_type();
1505
1487
if (sortorder->item->result_as_int64_t())
1506
1488
sortorder->result_type= INT_RESULT;
1508
1489
switch (sortorder->result_type) {
1509
1490
case STRING_RESULT:
1510
sortorder->length=sortorder->item->max_length;
1491
sortorder->length=sortorder->item->max_length;
1511
1492
set_if_smaller(sortorder->length,
1512
1493
getSession().variables.max_sort_length);
1513
if (use_strnxfrm((cs=sortorder->item->collation.collation)))
1494
if (use_strnxfrm((cs=sortorder->item->collation.collation)))
1515
1496
sortorder->length= cs->coll->strnxfrmlen(cs, sortorder->length);
1516
sortorder->need_strxnfrm= 1;
1517
*multi_byte_charset= 1;
1497
sortorder->need_strxnfrm= 1;
1498
*multi_byte_charset= 1;
1519
1500
else if (cs == &my_charset_bin)
1521
1502
/* Store length last to be able to sort blob/varbinary */
1522
1503
sortorder->suffix_length= suffix_length(sortorder->length);
1523
1504
sortorder->length+= sortorder->suffix_length;
1526
1507
case INT_RESULT:
1527
sortorder->length=8; // Size of intern int64_t
1508
sortorder->length=8; // Size of intern int64_t
1529
1510
case DECIMAL_RESULT:
1530
1511
sortorder->length=
1531
class_decimal_get_binary_size(sortorder->item->max_length -
1512
my_decimal_get_binary_size(sortorder->item->max_length -
1532
1513
(sortorder->item->decimals ? 1 : 0),
1533
1514
sortorder->item->decimals);
1535
1516
case REAL_RESULT:
1536
sortorder->length=sizeof(double);
1517
sortorder->length=sizeof(double);
1538
1519
case ROW_RESULT:
1539
// This case should never be choosen
1521
// This case should never be choosen
1543
1525
if (sortorder->item->maybe_null)
1544
length++; // Place for NULL marker
1526
length++; // Place for NULL marker
1546
1528
set_if_smaller(sortorder->length, (size_t)getSession().variables.max_sort_length);
1547
1529
length+=sortorder->length;