33
33
#include <drizzled/item/sum.h>
34
34
#include <drizzled/field/decimal.h>
35
35
#include <drizzled/field/double.h>
36
#include <drizzled/field/int64.h>
36
#include <drizzled/field/int64_t.h>
37
37
#include <drizzled/field/date.h>
38
38
#include <drizzled/field/datetime.h>
40
#include <drizzled/type/decimal.h>
42
40
#include "drizzled/internal/m_string.h"
44
42
#include <algorithm>
421
420
void Item_sum::mark_as_sum_func()
423
Select_Lex *cur_select= getSession().getLex()->current_select;
422
Select_Lex *cur_select= current_session->lex->current_select;
424
423
cur_select->n_sum_items++;
425
424
cur_select->with_sum_func= 1;
426
425
with_sum_func= 1;
510
509
uint32_t convert_blob_length)
514
512
switch (result_type()) {
515
513
case REAL_RESULT:
516
514
field= new Field_double(max_length, maybe_null, name, decimals, true);
520
field= new field::Int64(max_length, maybe_null, name, unsigned_flag);
517
field= new Field_int64_t(max_length, maybe_null, name, unsigned_flag);
523
519
case STRING_RESULT:
524
520
if (max_length/collation.collation->mbmaxlen <= 255 ||
525
521
convert_blob_length > Field_varstring::MAX_SIZE ||
526
522
!convert_blob_length)
528
523
return make_string_field(table);
531
525
table->setVariableWidth();
532
526
field= new Field_varstring(convert_blob_length, maybe_null,
533
527
name, collation.collation);
536
529
case DECIMAL_RESULT:
537
530
field= new Field_decimal(max_length, maybe_null, name,
538
decimals, unsigned_flag);
531
decimals, unsigned_flag);
542
535
// This case should never be choosen
548
540
field->init(table);
725
718
field= ((Item_field*) args[0])->field;
727
if ((field= create_tmp_field_from_field(&getSession(), field, name, table,
720
if ((field= create_tmp_field_from_field(current_session, field, name, table,
728
721
NULL, convert_blob_length)))
729
722
field->flags&= ~NOT_NULL_FLAG;
768
759
/* TODO: check if the following assignments are really needed */
769
760
if (hybrid_type == DECIMAL_RESULT)
771
class_decimal2decimal(item->dec_buffs, dec_buffs);
772
class_decimal2decimal(item->dec_buffs + 1, dec_buffs + 1);
762
my_decimal2decimal(item->dec_buffs, dec_buffs);
763
my_decimal2decimal(item->dec_buffs + 1, dec_buffs + 1);
809
800
case DECIMAL_RESULT:
811
/* SUM result can't be longer than length(arg) + length(MAX_ROWS) */
812
int precision= args[0]->decimal_precision() + DECIMAL_LONGLONG_DIGITS;
813
max_length= class_decimal_precision_to_length(precision, decimals,
816
hybrid_type= DECIMAL_RESULT;
817
dec_buffs->set_zero();
802
/* SUM result can't be longer than length(arg) + length(MAX_ROWS) */
803
int precision= args[0]->decimal_precision() + DECIMAL_LONGLONG_DIGITS;
804
max_length= my_decimal_precision_to_length(precision, decimals,
807
hybrid_type= DECIMAL_RESULT;
808
my_decimal_set_zero(dec_buffs);
828
821
if (hybrid_type == DECIMAL_RESULT)
830
type::Decimal value, *val= args[0]->val_decimal(&value);
823
my_decimal value, *val= args[0]->val_decimal(&value);
831
824
if (!args[0]->null_value)
833
class_decimal_add(E_DEC_FATAL_ERROR, dec_buffs + (curr_dec_buff^1),
826
my_decimal_add(E_DEC_FATAL_ERROR, dec_buffs + (curr_dec_buff^1),
834
827
val, dec_buffs + curr_dec_buff);
835
828
curr_dec_buff^= 1;
852
845
if (hybrid_type == DECIMAL_RESULT)
855
(dec_buffs + curr_dec_buff)->val_int32(E_DEC_FATAL_ERROR, unsigned_flag, &result);
848
my_decimal2int(E_DEC_FATAL_ERROR, dec_buffs + curr_dec_buff, unsigned_flag,
858
852
return (int64_t) rint(val_real());
864
858
assert(fixed == 1);
865
859
if (hybrid_type == DECIMAL_RESULT)
866
class_decimal2double(E_DEC_FATAL_ERROR, dec_buffs + curr_dec_buff, &sum);
860
my_decimal2double(E_DEC_FATAL_ERROR, dec_buffs + curr_dec_buff, &sum);
940
934
virtual void div(Hybrid_type *val, uint64_t u) const
942
int2_class_decimal(E_DEC_FATAL_ERROR, val->integer, 0, val->dec_buf);
936
int2my_decimal(E_DEC_FATAL_ERROR, val->integer, 0, val->dec_buf);
943
937
val->used_dec_buf_no= 0;
944
938
val->traits= Hybrid_type_traits_decimal::instance();
945
939
val->traits->div(val, u);
972
966
table_field_type= DRIZZLE_TYPE_DOUBLE;
976
Preserving int8, int16, int32 field types gives ~10% performance boost
977
as the size of result tree becomes significantly smaller.
978
Another speed up we gain by using int64_t for intermediate
979
calculations. The range of int64 is enough to hold sum 2^32 distinct
980
integers each <= 2^32.
982
if (table_field_type == DRIZZLE_TYPE_LONG)
984
val.traits= Hybrid_type_traits_fast_decimal::instance();
987
table_field_type= DRIZZLE_TYPE_LONGLONG;
970
Preserving int8, int16, int32 field types gives ~10% performance boost
971
as the size of result tree becomes significantly smaller.
972
Another speed up we gain by using int64_t for intermediate
973
calculations. The range of int64 is enough to hold sum 2^32 distinct
974
integers each <= 2^32.
976
if (table_field_type == DRIZZLE_TYPE_LONG)
978
val.traits= Hybrid_type_traits_fast_decimal::instance();
981
table_field_type= DRIZZLE_TYPE_LONGLONG;
989
983
case DECIMAL_RESULT:
990
984
val.traits= Hybrid_type_traits_decimal::instance();
991
985
if (table_field_type != DRIZZLE_TYPE_LONGLONG)
992
986
table_field_type= DRIZZLE_TYPE_DECIMAL;
998
992
val.traits->fix_length_and_dec(this, args[0]);
1165
1159
Item_sum_avg_distinct::fix_length_and_dec()
1167
1161
Item_sum_distinct::fix_length_and_dec();
1168
prec_increment= getSession().variables.div_precincrement;
1162
prec_increment= current_session->variables.div_precincrement;
1170
1164
AVG() will divide val by count. We need to reserve digits
1171
1165
after decimal point as the result can be fractional.
1229
1223
Item_sum_sum::fix_length_and_dec();
1230
1224
maybe_null=null_value=1;
1231
prec_increment= getSession().variables.div_precincrement;
1225
prec_increment= current_session->variables.div_precincrement;
1233
1226
if (hybrid_type == DECIMAL_RESULT)
1235
1228
int precision= args[0]->decimal_precision() + prec_increment;
1236
1229
decimals= min(args[0]->decimals + prec_increment, (unsigned int) DECIMAL_MAX_SCALE);
1237
max_length= class_decimal_precision_to_length(precision, decimals,
1230
max_length= my_decimal_precision_to_length(precision, decimals,
1238
1231
unsigned_flag);
1239
1232
f_precision= min(precision+DECIMAL_LONGLONG_DIGITS, DECIMAL_MAX_PRECISION);
1240
1233
f_scale= args[0]->decimals;
1241
dec_bin_size= class_decimal_get_binary_size(f_precision, f_scale);
1234
dec_bin_size= my_decimal_get_binary_size(f_precision, f_scale);
1244
1237
decimals= min(args[0]->decimals + prec_increment, (unsigned int) NOT_FIXED_DEC);
1317
type::Decimal *Item_sum_avg::val_decimal(type::Decimal *val)
1310
my_decimal *Item_sum_avg::val_decimal(my_decimal *val)
1319
type::Decimal sum_buff, cnt;
1320
const type::Decimal *sum_dec;
1312
my_decimal sum_buff, cnt;
1313
const my_decimal *sum_dec;
1321
1314
assert(fixed == 1);
1333
1326
return val_decimal_from_real(val);
1335
1328
sum_dec= dec_buffs + curr_dec_buff;
1336
int2_class_decimal(E_DEC_FATAL_ERROR, count, 0, &cnt);
1337
class_decimal_div(E_DEC_FATAL_ERROR, val, sum_dec, &cnt, prec_increment);
1329
int2my_decimal(E_DEC_FATAL_ERROR, count, 0, &cnt);
1330
my_decimal_div(E_DEC_FATAL_ERROR, val, sum_dec, &cnt, prec_increment);
1426
1419
void Item_sum_variance::fix_length_and_dec()
1428
1421
maybe_null= null_value= 1;
1429
prec_increment= getSession().variables.div_precincrement;
1422
prec_increment= current_session->variables.div_precincrement;
1432
1425
According to the SQL2003 standard (Part 2, Foundations; sec 10.9,
1444
1437
case INT_RESULT:
1445
1438
case DECIMAL_RESULT:
1447
int precision= args[0]->decimal_precision()*2 + prec_increment;
1448
decimals= min(args[0]->decimals + prec_increment, (unsigned int) DECIMAL_MAX_SCALE);
1449
max_length= class_decimal_precision_to_length(precision, decimals,
1440
int precision= args[0]->decimal_precision()*2 + prec_increment;
1441
decimals= min(args[0]->decimals + prec_increment, (unsigned int) DECIMAL_MAX_SCALE);
1442
max_length= my_decimal_precision_to_length(precision, decimals,
1454
1447
case ROW_RESULT:
1622
1617
assert(fixed == 1);
1623
1618
if (null_value)
1626
1620
switch (hybrid_type) {
1627
1621
case STRING_RESULT:
1631
String *res; res=val_str(&str_value);
1632
return (res ? my_strntod(res->charset(), (char*) res->ptr(), res->length(),
1633
&end_not_used, &err_not_used) : 0.0);
1625
String *res; res=val_str(&str_value);
1626
return (res ? my_strntod(res->charset(), (char*) res->ptr(), res->length(),
1627
&end_not_used, &err_not_used) : 0.0);
1635
1629
case INT_RESULT:
1636
1630
return (double) sum_int;
1637
1631
case DECIMAL_RESULT:
1638
class_decimal2double(E_DEC_FATAL_ERROR, &sum_dec, &sum);
1632
my_decimal2double(E_DEC_FATAL_ERROR, &sum_dec, &sum);
1640
1634
case REAL_RESULT:
1642
1636
case ROW_RESULT:
1643
1638
// This case should never be choosen
1651
1644
int64_t Item_sum_hybrid::val_int()
1671
type::Decimal *Item_sum_hybrid::val_decimal(type::Decimal *val)
1664
my_decimal *Item_sum_hybrid::val_decimal(my_decimal *val)
1673
1666
assert(fixed == 1);
1674
1667
if (null_value)
1677
1669
switch (hybrid_type) {
1678
1670
case STRING_RESULT:
1679
val->store(E_DEC_FATAL_ERROR, &value);
1671
string2my_decimal(E_DEC_FATAL_ERROR, &value, val);
1681
1673
case REAL_RESULT:
1682
double2_class_decimal(E_DEC_FATAL_ERROR, sum, val);
1674
double2my_decimal(E_DEC_FATAL_ERROR, sum, val);
1684
1676
case DECIMAL_RESULT:
1687
1679
case INT_RESULT:
1688
int2_class_decimal(E_DEC_FATAL_ERROR, sum_int, unsigned_flag, val);
1680
int2my_decimal(E_DEC_FATAL_ERROR, sum_int, unsigned_flag, val);
1690
1682
case ROW_RESULT:
1691
1684
// This case should never be choosen
1696
1688
return val; // Keep compiler happy
1711
1702
str->set_real(sum,decimals, &my_charset_bin);
1713
1704
case DECIMAL_RESULT:
1714
class_decimal2string(&sum_dec, 0, str);
1705
my_decimal2string(E_DEC_FATAL_ERROR, &sum_dec, 0, 0, 0, str);
1716
1707
case INT_RESULT:
1717
1708
str->set_int(sum_int, unsigned_flag, &my_charset_bin);
1760
1751
switch (hybrid_type) {
1761
1752
case STRING_RESULT:
1754
String *result=args[0]->val_str(&tmp_value);
1755
if (!args[0]->null_value &&
1756
(null_value || sortcmp(&value,result,collation.collation) > 0))
1763
String *result=args[0]->val_str(&tmp_value);
1764
if (!args[0]->null_value &&
1765
(null_value || sortcmp(&value,result,collation.collation) > 0))
1767
value.copy(*result);
1758
value.copy(*result);
1772
1763
case INT_RESULT:
1765
int64_t nr=args[0]->val_int();
1766
if (!args[0]->null_value && (null_value ||
1768
(uint64_t) nr < (uint64_t) sum_int) ||
1769
(!unsigned_flag && nr < sum_int)))
1774
int64_t nr=args[0]->val_int();
1775
if (!args[0]->null_value && (null_value ||
1777
(uint64_t) nr < (uint64_t) sum_int) ||
1778
(!unsigned_flag && nr < sum_int)))
1785
1776
case DECIMAL_RESULT:
1778
my_decimal value_buff, *val= args[0]->val_decimal(&value_buff);
1779
if (!args[0]->null_value &&
1780
(null_value || (my_decimal_cmp(&sum_dec, val) > 0)))
1787
type::Decimal value_buff, *val= args[0]->val_decimal(&value_buff);
1788
if (!args[0]->null_value &&
1789
(null_value || (class_decimal_cmp(&sum_dec, val) > 0)))
1791
class_decimal2decimal(val, &sum_dec);
1782
my_decimal2decimal(val, &sum_dec);
1796
1787
case REAL_RESULT:
1789
double nr= args[0]->val_real();
1790
if (!args[0]->null_value && (null_value || nr < sum))
1798
double nr= args[0]->val_real();
1799
if (!args[0]->null_value && (null_value || nr < sum))
1806
1797
case ROW_RESULT:
1807
1799
// This case should never be choosen
1823
1815
switch (hybrid_type) {
1824
1816
case STRING_RESULT:
1818
String *result=args[0]->val_str(&tmp_value);
1819
if (!args[0]->null_value &&
1820
(null_value || sortcmp(&value,result,collation.collation) < 0))
1826
String *result=args[0]->val_str(&tmp_value);
1827
if (!args[0]->null_value &&
1828
(null_value || sortcmp(&value,result,collation.collation) < 0))
1830
value.copy(*result);
1822
value.copy(*result);
1835
1827
case INT_RESULT:
1829
int64_t nr=args[0]->val_int();
1830
if (!args[0]->null_value && (null_value ||
1832
(uint64_t) nr > (uint64_t) sum_int) ||
1833
(!unsigned_flag && nr > sum_int)))
1837
int64_t nr=args[0]->val_int();
1838
if (!args[0]->null_value && (null_value ||
1840
(uint64_t) nr > (uint64_t) sum_int) ||
1841
(!unsigned_flag && nr > sum_int)))
1848
1840
case DECIMAL_RESULT:
1842
my_decimal value_buff, *val= args[0]->val_decimal(&value_buff);
1843
if (!args[0]->null_value &&
1844
(null_value || (my_decimal_cmp(val, &sum_dec) > 0)))
1850
type::Decimal value_buff, *val= args[0]->val_decimal(&value_buff);
1851
if (!args[0]->null_value &&
1852
(null_value || (class_decimal_cmp(val, &sum_dec) > 0)))
1854
class_decimal2decimal(val, &sum_dec);
1846
my_decimal2decimal(val, &sum_dec);
1859
1851
case REAL_RESULT:
1853
double nr= args[0]->val_real();
1854
if (!args[0]->null_value && (null_value || nr > sum))
1861
double nr= args[0]->val_real();
1862
if (!args[0]->null_value && (null_value || nr > sum))
1869
1861
case ROW_RESULT:
1870
1863
// This case should never be choosen
1960
1952
switch(hybrid_type) {
1961
1953
case STRING_RESULT:
1963
char buff[MAX_FIELD_WIDTH];
1964
String tmp(buff,sizeof(buff),result_field->charset()),*res;
1966
res=args[0]->val_str(&tmp);
1967
if (args[0]->null_value)
1955
char buff[MAX_FIELD_WIDTH];
1956
String tmp(buff,sizeof(buff),result_field->charset()),*res;
1958
res=args[0]->val_str(&tmp);
1959
if (args[0]->null_value)
1961
result_field->set_null();
1962
result_field->reset();
1966
result_field->set_notnull();
1967
result_field->store(res->ptr(),res->length(),tmp.charset());
1973
int64_t nr=args[0]->val_int();
1977
if (args[0]->null_value)
1980
result_field->set_null();
1983
result_field->set_notnull();
1985
result_field->store(nr, unsigned_flag);
1990
double nr= args[0]->val_real();
1994
if (args[0]->null_value)
1997
result_field->set_null();
2000
result_field->set_notnull();
2002
result_field->store(nr);
2005
case DECIMAL_RESULT:
2007
my_decimal value_buff, *arg_dec= args[0]->val_decimal(&value_buff);
2011
if (args[0]->null_value)
1969
2012
result_field->set_null();
1970
result_field->reset();
1974
2014
result_field->set_notnull();
1975
result_field->store(res->ptr(),res->length(),tmp.charset());
1981
int64_t nr=args[0]->val_int();
1985
if (args[0]->null_value)
1988
result_field->set_null();
1991
result_field->set_notnull();
1993
result_field->store(nr, unsigned_flag);
1998
double nr= args[0]->val_real();
2002
if (args[0]->null_value)
2005
result_field->set_null();
2008
result_field->set_notnull();
2010
result_field->store(nr);
2013
case DECIMAL_RESULT:
2015
type::Decimal value_buff, *arg_dec= args[0]->val_decimal(&value_buff);
2019
if (args[0]->null_value)
2020
result_field->set_null();
2022
result_field->set_notnull();
2025
We must store zero in the field as we will use the field value in
2028
if (!arg_dec) // Null
2029
arg_dec= &decimal_zero;
2030
result_field->store_decimal(arg_dec);
2017
We must store zero in the field as we will use the field value in
2020
if (!arg_dec) // Null
2021
arg_dec= &decimal_zero;
2022
result_field->store_decimal(arg_dec);
2033
2025
case ROW_RESULT:
2041
2034
if (hybrid_type == DECIMAL_RESULT)
2043
type::Decimal value, *arg_val= args[0]->val_decimal(&value);
2036
my_decimal value, *arg_val= args[0]->val_decimal(&value);
2044
2037
if (!arg_val) // Null
2045
2038
arg_val= &decimal_zero;
2046
2039
result_field->store_decimal(arg_val);
2086
arg_dec->val_binary(E_DEC_FATAL_ERROR, res, f_precision, f_scale);
2079
my_decimal2binary(E_DEC_FATAL_ERROR, arg_dec, res, f_precision, f_scale);
2087
2080
res+= dec_bin_size;
2088
2081
int8store(res, tmp);
2128
2121
if (hybrid_type == DECIMAL_RESULT)
2130
type::Decimal value, *arg_val= args[0]->val_decimal(&value);
2123
my_decimal value, *arg_val= args[0]->val_decimal(&value);
2131
2124
if (!args[0]->null_value)
2133
2126
if (!result_field->is_null())
2135
type::Decimal field_value,
2128
my_decimal field_value,
2136
2129
*field_val= result_field->val_decimal(&field_value);
2137
class_decimal_add(E_DEC_FATAL_ERROR, dec_buffs, arg_val, field_val);
2130
my_decimal_add(E_DEC_FATAL_ERROR, dec_buffs, arg_val, field_val);
2138
2131
result_field->store_decimal(dec_buffs);
2179
2172
unsigned char *res=result_field->ptr;
2180
2173
if (hybrid_type == DECIMAL_RESULT)
2182
type::Decimal value, *arg_val= args[0]->val_decimal(&value);
2175
my_decimal value, *arg_val= args[0]->val_decimal(&value);
2183
2176
if (!args[0]->null_value)
2185
binary2_class_decimal(E_DEC_FATAL_ERROR, res,
2178
binary2my_decimal(E_DEC_FATAL_ERROR, res,
2186
2179
dec_buffs + 1, f_precision, f_scale);
2187
2180
field_count= sint8korr(res + dec_bin_size);
2188
class_decimal_add(E_DEC_FATAL_ERROR, dec_buffs, arg_val, dec_buffs + 1);
2189
dec_buffs->val_binary(E_DEC_FATAL_ERROR, res, f_precision, f_scale);
2181
my_decimal_add(E_DEC_FATAL_ERROR, dec_buffs, arg_val, dec_buffs + 1);
2182
my_decimal2binary(E_DEC_FATAL_ERROR, dec_buffs,
2183
res, f_precision, f_scale);
2190
2184
res+= dec_bin_size;
2192
2186
int8store(res, field_count);
2239
2232
if (!args[0]->null_value)
2241
result_field->val_str_internal(&tmp_value);
2234
result_field->val_str(&tmp_value);
2243
2236
if (result_field->is_null() ||
2244
2237
(cmp_sign * sortcmp(res_str,&tmp_value,collation.collation)) < 0)
2304
2297
Item_sum_hybrid::min_max_update_decimal_field()
2306
2299
/* TODO: optimize: do not get result_field in case of args[0] is NULL */
2307
type::Decimal old_val, nr_val;
2308
const type::Decimal *old_nr= result_field->val_decimal(&old_val);
2309
const type::Decimal *nr= args[0]->val_decimal(&nr_val);
2300
my_decimal old_val, nr_val;
2301
const my_decimal *old_nr= result_field->val_decimal(&old_val);
2302
const my_decimal *nr= args[0]->val_decimal(&nr_val);
2310
2303
if (!args[0]->null_value)
2312
2305
if (result_field->is_null(0))
2316
bool res= class_decimal_cmp(old_nr, nr) > 0;
2309
bool res= my_decimal_cmp(old_nr, nr) > 0;
2317
2310
/* (cmp_sign > 0 && res) || (!(cmp_sign > 0) && !res) */
2318
2311
if ((cmp_sign > 0) ^ (!res))
2380
2373
if ((null_value= !count))
2383
type::Decimal dec_count, dec_field;
2384
binary2_class_decimal(E_DEC_FATAL_ERROR,
2376
my_decimal dec_count, dec_field;
2377
binary2my_decimal(E_DEC_FATAL_ERROR,
2385
2378
field->ptr, &dec_field, f_precision, f_scale);
2386
int2_class_decimal(E_DEC_FATAL_ERROR, count, 0, &dec_count);
2387
class_decimal_div(E_DEC_FATAL_ERROR, dec_buf,
2379
int2my_decimal(E_DEC_FATAL_ERROR, count, 0, &dec_count);
2380
my_decimal_div(E_DEC_FATAL_ERROR, dec_buf,
2388
2381
&dec_field, &dec_count, prec_increment);
2389
2382
return dec_buf;
2418
type::Decimal *Item_std_field::val_decimal(type::Decimal *dec_buf)
2411
my_decimal *Item_std_field::val_decimal(my_decimal *dec_buf)
2421
2414
We can't call val_decimal_from_real() for DECIMAL_RESULT as
2422
2415
Item_variance_field::val_real() would cause an infinite loop
2424
type::Decimal tmp_dec, *dec;
2417
my_decimal tmp_dec, *dec;
2426
2419
if (hybrid_type == REAL_RESULT)
2427
2420
return val_decimal_from_real(dec_buf);
2429
2422
dec= Item_variance_field::val_decimal(dec_buf);
2432
class_decimal2double(E_DEC_FATAL_ERROR, dec, &nr);
2425
my_decimal2double(E_DEC_FATAL_ERROR, dec, &nr);
2433
2426
assert(nr >= 0.0);
2435
double2_class_decimal(E_DEC_FATAL_ERROR, nr, &tmp_dec);
2436
class_decimal_round(E_DEC_FATAL_ERROR, &tmp_dec, decimals, false, dec_buf);
2428
double2my_decimal(E_DEC_FATAL_ERROR, nr, &tmp_dec);
2429
my_decimal_round(E_DEC_FATAL_ERROR, &tmp_dec, decimals, false, dec_buf);
2437
2430
return dec_buf;
2667
2660
uint32_t *length;
2668
2661
compare_key= (qsort_cmp2) composite_key_cmp;
2669
2662
cmp_arg= (void*) this;
2670
field_lengths= (uint32_t*) session->getMemRoot()->allocate(table->getShare()->sizeFields() * sizeof(uint32_t));
2663
field_lengths= (uint32_t*) session->alloc(table->getShare()->sizeFields() * sizeof(uint32_t));
2671
2664
for (tree_key_length= 0, length= field_lengths, field= table->getFields();
2672
2665
field < field_end; ++field, ++length)
2721
2714
if (always_null)
2723
2716
copy_fields(tmp_table_param);
2724
if (copy_funcs(tmp_table_param->items_to_copy, table->in_use))
2717
copy_funcs(tmp_table_param->items_to_copy);
2727
2719
for (Field **field= table->getFields() ; *field ; field++)
2920
2912
uint32_t offset= (field->offset(field->getTable()->record[0]) -
2921
2913
table->getShare()->null_bytes);
2922
2914
assert(offset < table->getShare()->getRecordLength());
2923
res= field->val_str_internal(&tmp, key + offset);
2915
res= field->val_str(&tmp, key + offset);
2926
2918
res= (*arg)->val_str(&tmp);
3052
3044
char warn_buff[DRIZZLE_ERRMSG_SIZE];
3053
3045
snprintf(warn_buff, sizeof(warn_buff), ER(ER_CUT_VALUE_GROUP_CONCAT), count_cut_values);
3054
warning->set_msg(&getSession(), warn_buff);
3046
warning->set_msg(current_session, warn_buff);