#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
This commit is contained in:
Rich Prohaska 2012-07-04 23:42:41 +00:00
parent fd293c8d59
commit 91a7d84768
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
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';

View file

@ -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);