mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Create 'main' test directory and move 't' and 'r' there
This commit is contained in:
8
mysql-test/main/datetime_456.test
Normal file
8
mysql-test/main/datetime_456.test
Normal file
@ -0,0 +1,8 @@
|
||||
#
|
||||
# MDEV-456 An out-of-range datetime value (with a 5-digit year) can be created and cause troubles
|
||||
#
|
||||
create table t1 (d datetime);
|
||||
insert t1 values (addtime('9999-12-31 23:59:59', '00:00:01')),
|
||||
(from_days(3652499));
|
||||
select * from t1;
|
||||
drop table t1;
|
Reference in New Issue
Block a user