diff options
author | monty@mashka.mysql.fi <> | 2003-05-21 21:39:58 +0300 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-05-21 21:39:58 +0300 |
commit | 6aa8929cf37374fe74c31eb03007961fa119213a (patch) | |
tree | 3df25ac7036fb4b2e95ab56b9dc90477ec234b7c /mysql-test/t/loaddata.test | |
parent | dd2b7918cdd5e0e643cff0305542ccd4aa8f1b6b (diff) | |
download | mariadb-git-6aa8929cf37374fe74c31eb03007961fa119213a.tar.gz |
After merge fixes
Added initialization of all important global variables
Diffstat (limited to 'mysql-test/t/loaddata.test')
-rw-r--r-- | mysql-test/t/loaddata.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/loaddata.test b/mysql-test/t/loaddata.test index ceb5c47af11..d7e84590dc0 100644 --- a/mysql-test/t/loaddata.test +++ b/mysql-test/t/loaddata.test @@ -2,7 +2,9 @@ # Some simple test of load data # +--disable_warnings drop table if exists t1; +--enable_warnings create table t1 (a date, b date, c date not null, d date); load data infile '../../std_data/loaddata1.dat' into table t1 fields terminated by ','; |