233
233
/* Note that fix_fields may not be called for Item_avg_field items */
235
235
type::Decimal value, *dec_val= val_decimal(&value);
239
238
dec_val->val_int32(E_DEC_FATAL_ERROR, unsigned_flag, &result);
244
bool Item::save_time_in_field(Field *field)
242
int Item::save_time_in_field(Field *field)
246
244
type::Time ltime;
245
if (get_time(<ime))
249
246
return set_field_to_null(field);
251
247
field->set_notnull();
253
return field->store_time(ltime, type::DRIZZLE_TIMESTAMP_TIME);
248
return field->store_time(<ime, DRIZZLE_TIMESTAMP_TIME);
256
bool Item::save_date_in_field(Field *field)
251
int Item::save_date_in_field(Field *field)
258
253
type::Time ltime;
260
if (get_date(ltime, TIME_FUZZY_DATE))
254
if (get_date(<ime, TIME_FUZZY_DATE))
261
255
return set_field_to_null(field);
263
256
field->set_notnull();
265
return field->store_time(ltime, type::DRIZZLE_TIMESTAMP_DATETIME);
257
return field->store_time(<ime, DRIZZLE_TIMESTAMP_DATETIME);
294
284
with_sum_func(false),
295
285
is_autogenerated_name(true),
296
286
with_subselect(false),
297
collation(&my_charset_bin, DERIVATION_COERCIBLE),
298
_session(*current_session)
287
collation(&my_charset_bin, DERIVATION_COERCIBLE)
300
289
cmp_context= (Item_result)-1;
302
291
/* Put item in free list so that we can free all items at end */
303
next= getSession().free_list;
304
getSession().free_list= this;
292
Session *session= current_session;
293
next= session->free_list;
294
session->free_list= this;
307
297
Item constructor can be called during execution other then SQL_COM
308
298
command => we should check session->lex->current_select on zero (session->lex
309
299
can be uninitialised)
311
if (getSession().lex->current_select)
301
if (session->lex->current_select)
313
enum_parsing_place place= getSession().getLex()->current_select->parsing_place;
303
enum_parsing_place place= session->lex->current_select->parsing_place;
314
304
if (place == SELECT_LIST || place == IN_HAVING)
315
getSession().getLex()->current_select->select_n_having_items++;
305
session->lex->current_select->select_n_having_items++;
333
323
is_autogenerated_name(item->is_autogenerated_name),
334
324
with_subselect(item->with_subselect),
335
325
collation(item->collation),
336
cmp_context(item->cmp_context),
326
cmp_context(item->cmp_context)
339
328
/* Put this item in the session's free list */
340
next= getSession().free_list;
341
getSession().free_list= this;
329
next= session->free_list;
330
session->free_list= this;
344
333
uint32_t Item::float_length(uint32_t decimals_par) const
436
425
if (orig_len != length && ! is_autogenerated_name)
439
push_warning_printf(&getSession(),
428
push_warning_printf(current_session,
440
429
DRIZZLE_ERROR::WARN_LEVEL_WARN,
441
430
ER_NAME_BECOMES_EMPTY,
442
431
ER(ER_NAME_BECOMES_EMPTY),
443
432
str + length - orig_len);
445
push_warning_printf(&getSession(),
434
push_warning_printf(current_session,
446
435
DRIZZLE_ERROR::WARN_LEVEL_WARN,
447
436
ER_REMOVED_SPACES,
448
437
ER(ER_REMOVED_SPACES),
471
460
return conv->safe ? conv : NULL;
474
bool Item::get_date(type::Time <ime,uint32_t fuzzydate)
463
bool Item::get_date(type::Time *ltime,uint32_t fuzzydate)
482
else if (result_type() == STRING_RESULT)
484
char buff[type::Time::MAX_STRING_LENGTH];
485
String tmp(buff,sizeof(buff), &my_charset_bin),*res;
486
if (!(res=val_str(&tmp)) ||
487
str_to_datetime_with_warn(&getSession(), res->ptr(), res->length(),
488
<ime, fuzzydate) <= type::DRIZZLE_TIMESTAMP_ERROR)
495
int64_t value= val_int();
496
type::datetime_t date_value;
498
ltime.convert(date_value, value, fuzzydate);
500
if (not type::is_valid(date_value))
502
char buff[DECIMAL_LONGLONG_DIGITS], *end;
503
end= internal::int64_t10_to_str(value, buff, -10);
504
make_truncated_value_warning(&getSession(), DRIZZLE_ERROR::WARN_LEVEL_WARN,
505
buff, (int) (end-buff), type::DRIZZLE_TIMESTAMP_NONE, NULL);
465
if (result_type() == STRING_RESULT)
468
String tmp(buff,sizeof(buff), &my_charset_bin),*res;
469
if (!(res=val_str(&tmp)) ||
470
str_to_datetime_with_warn(res->ptr(), res->length(),
471
ltime, fuzzydate) <= DRIZZLE_TIMESTAMP_ERROR)
476
int64_t value= val_int();
478
if (number_to_datetime(value, ltime, fuzzydate, &was_cut) == -1L)
481
end= internal::int64_t10_to_str(value, buff, -10);
482
make_truncated_value_warning(current_session, DRIZZLE_ERROR::WARN_LEVEL_WARN,
483
buff, (int) (end-buff), DRIZZLE_TIMESTAMP_NONE,
491
memset(ltime, 0, sizeof(*ltime));
518
bool Item::get_time(type::Time <ime)
495
bool Item::get_time(type::Time *ltime)
520
char buff[type::Time::MAX_STRING_LENGTH];
521
498
String tmp(buff,sizeof(buff),&my_charset_bin),*res;
522
if (!(res=val_str(&tmp)) or
523
str_to_time_with_warn(&getSession(), res->ptr(), res->length(), <ime))
499
if (!(res=val_str(&tmp)) ||
500
str_to_time_with_warn(res->ptr(), res->length(), ltime))
502
memset(ltime, 0, sizeof(*ltime));
533
bool Item::get_date_result(type::Time <ime,uint32_t fuzzydate)
508
bool Item::get_date_result(type::Time *ltime,uint32_t fuzzydate)
535
return get_date(ltime, fuzzydate);
510
return get_date(ltime,fuzzydate);
538
513
bool Item::is_null()
1450
uint32_t Item::max_char_length() const
1452
return max_length / collation.collation->mbmaxlen;
1455
void Item::fix_length_and_charset(uint32_t max_char_length_arg, CHARSET_INFO *cs)
1457
max_length= char_to_byte_length_safe(max_char_length_arg, cs->mbmaxlen);
1458
collation.collation= cs;
1461
void Item::fix_char_length(uint32_t max_char_length_arg)
1463
max_length= char_to_byte_length_safe(max_char_length_arg, collation.collation->mbmaxlen);
1466
void Item::fix_char_length_uint64_t(uint64_t max_char_length_arg)
1468
uint64_t max_result_length= max_char_length_arg *
1469
collation.collation->mbmaxlen;
1471
if (max_result_length >= MAX_BLOB_WIDTH)
1473
max_length= MAX_BLOB_WIDTH;
1478
max_length= max_result_length;
1482
void Item::fix_length_and_charset_datetime(uint32_t max_char_length_arg)
1484
collation.set(&my_charset_bin);
1485
fix_char_length(max_char_length_arg);
1488
1426
Item_result item_cmp_type(Item_result a,Item_result b)
1490
1428
if (a == STRING_RESULT && b == STRING_RESULT)