mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
fixed bug in variable assignment in mysqltest fixed coredump on conversion from empty blob/text to date added test case for empty blob conversion to date BUILD/compile-pentium-debug: move bdb/innobase to compile-pentium-debug-max client/mysqltest.c: fixed bug in variable assignment sql/time.cc: fixed coredump on conversion from empty blob/text to date
10 lines
257 B
Text
10 lines
257 B
Text
drop table if exists db_crash;
|
|
CREATE TABLE df_crash (
|
|
updated text
|
|
) TYPE=MyISAM;
|
|
INSERT INTO df_crash VALUES ('1999-10-5');
|
|
insert into df_crash values ('');
|
|
|
|
select month(updated) from df_crash;
|
|
select year(updated) from df_crash;
|
|
drop table df_crash;
|