mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge from mysql-5.5.10-release
This commit is contained in:

committed by
MySQL Build Team
commit
18d2e55c51
@ -887,5 +887,13 @@ SELECT MONTHNAME(0), MONTHNAME(0) IS NULL, MONTHNAME(0) + 1;
|
||||
--error ER_WRONG_VALUE_FOR_VAR
|
||||
SET storage_engine=NULL;
|
||||
|
||||
--echo #
|
||||
--echo # Bug #59686 crash in String::copy() with time data type
|
||||
--echo #
|
||||
|
||||
SELECT min(timestampadd(month, 1>'', from_days('%Z')));
|
||||
|
||||
create table t1(a time);
|
||||
insert into t1 values ('00:00:00'),('00:01:00');
|
||||
select 1 from t1 where 1 < some (select cast(a as datetime) from t1);
|
||||
drop table t1;
|
||||
|
Reference in New Issue
Block a user