diff options
Diffstat (limited to 'mysql-test/t/strict.test')
-rw-r--r-- | mysql-test/t/strict.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/t/strict.test b/mysql-test/t/strict.test index 93b31499bef..9d69dc83dd6 100644 --- a/mysql-test/t/strict.test +++ b/mysql-test/t/strict.test @@ -1234,7 +1234,7 @@ i int comment 123456789*123456789*123456789*123456789* 123456789*123456789*123456789*123456789* 123456789*123456789*123456789*123456789*'); -set @@sql_mode= @org_mode; +set @@sql_mode= 'NO_ENGINE_SUBSTITUTION'; create table t1 (i int comment '123456789*123456789*123456789*123456789* @@ -1268,6 +1268,7 @@ create table t1 select column_name, column_comment from information_schema.columns where table_schema = 'test' and table_name = 't1'; drop table t1; +set @@sql_mode= @org_mode; set names utf8; create table t1 (i int) |