mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
78cc6db44a
Cleanup: remove TIME_FUZZY_DATE. Introduce TIME_FUZZY_DATES which means "very fuzzy, the resulting value is only used for comparison. It can be invalid date, fine, as long as it can be compared". Updated many tests results (they're better now).
12 lines
243 B
Text
12 lines
243 B
Text
create table t1 (d date);
|
|
insert into t1 values ('2012-00-00');
|
|
select * from t1;
|
|
d
|
|
2012-00-00
|
|
update t1 set d = adddate(d, interval 1 day);
|
|
Warnings:
|
|
Warning 1292 Incorrect datetime value: '2012-00-00'
|
|
select * from t1;
|
|
d
|
|
NULL
|
|
drop table t1;
|