mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
--echo #
--echo # MDEV-17979 Assertion `0' failed in Item::val_native upon SELECT with timestamp, NULLIF, GROUP BY --echo #
This commit is contained in:
@ -3764,6 +3764,22 @@ Type_handler_date_common::Item_get_cache(THD *thd, const Item *item) const
|
||||
return new (thd->mem_root) Item_cache_date(thd);
|
||||
}
|
||||
|
||||
|
||||
/*************************************************************************/
|
||||
|
||||
Item_copy *
|
||||
Type_handler::create_item_copy(THD *thd, Item *item) const
|
||||
{
|
||||
return new (thd->mem_root) Item_copy_string(thd, item);
|
||||
}
|
||||
|
||||
|
||||
Item_copy *
|
||||
Type_handler_timestamp_common::create_item_copy(THD *thd, Item *item) const
|
||||
{
|
||||
return new (thd->mem_root) Item_copy_timestamp(thd, item);
|
||||
}
|
||||
|
||||
/*************************************************************************/
|
||||
|
||||
bool Type_handler_int_result::
|
||||
|
Reference in New Issue
Block a user