1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00
Files
mariadb/mysql-test/main/adddate_454.test
2018-03-29 13:59:44 +03:00

10 lines
239 B
Plaintext

#
# MDEV-454 Addition of a time interval reduces the resulting value
#
create table t1 (d date);
insert into t1 values ('2012-00-00');
select * from t1;
update ignore t1 set d = adddate(d, interval 1 day);
select * from t1;
drop table t1;