Commit 91a7d847 authored by Rich Prohaska's avatar Rich Prohaska

#5190 fix type_date on the mainline (test should drop all tables prior to creating them) refs #5190

git-svn-id: file:///svn/mysql/tests/mysql-test@45332 c7de825b-a66e-492c-adef-691d508d4ae1
parent fd293c8d
SET STORAGE_ENGINE='tokudb';
drop table if exists t1,t2;
drop table if exists t1,t2,t3;
create table t1 (a char(16), b date, c datetime);
insert into t1 SET a='test 2000-01-01', b='2000-01-01', c='2000-01-01';
select * from t1 where c = '2000-01-01';
......
......@@ -3,7 +3,7 @@ SET STORAGE_ENGINE='tokudb';
# test of problem with date fields
#
--disable_warnings
drop table if exists t1,t2;
drop table if exists t1,t2,t3;
--enable_warnings
create table t1 (a char(16), b date, c datetime);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment