mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +01:00
10 lines
232 B
Text
10 lines
232 B
Text
|
#
|
||
|
# 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 t1 set d = adddate(d, interval 1 day);
|
||
|
select * from t1;
|
||
|
drop table t1;
|