diff options
author | unknown <brian@zim.(none)> | 2007-01-05 22:28:53 -0800 |
---|---|---|
committer | unknown <brian@zim.(none)> | 2007-01-05 22:28:53 -0800 |
commit | 702a25ddb86c3231bee2a97fae5ddb14067540c2 (patch) | |
tree | d129f7bae8bba390978853746006ef4620a07d04 | |
parent | 1162af9f0151ca3a7cbd74a7cb6108c4455cda57 (diff) | |
download | mariadb-git-702a25ddb86c3231bee2a97fae5ddb14067540c2.tar.gz |
Fix for when shell version of mysql-test-run is called.
mysql-test/t/warnings-master.opt:
Added skip-innodb option (which was what it once was...)
mysql-test/t/warnings.test:
Removed un-needed variable setting. Bug only had to do with unterimated string.
-rw-r--r-- | mysql-test/t/warnings-master.opt | 1 | ||||
-rw-r--r-- | mysql-test/t/warnings.test | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/mysql-test/t/warnings-master.opt b/mysql-test/t/warnings-master.opt index e69de29bb2d..bea071a9c9b 100644 --- a/mysql-test/t/warnings-master.opt +++ b/mysql-test/t/warnings-master.opt @@ -0,0 +1 @@ +--skip-innodb diff --git a/mysql-test/t/warnings.test b/mysql-test/t/warnings.test index ce246e5543b..c9aba4549c2 100644 --- a/mysql-test/t/warnings.test +++ b/mysql-test/t/warnings.test @@ -150,8 +150,6 @@ drop table t1; # Bug#20778: strange characters in warning message 1366 when called in SP # -let $engine_type= innodb; - CREATE TABLE t1( f1 CHAR(20) ); CREATE TABLE t2( f1 CHAR(20), f2 CHAR(25) ); CREATE TABLE t3( f1 CHAR(20), f2 CHAR(25), f3 DATE ); |