diff options
author | Nirbhay Choubey <nirbhay@mariadb.com> | 2017-01-18 11:44:47 -0500 |
---|---|---|
committer | Nirbhay Choubey <nirbhay@mariadb.com> | 2017-01-18 11:44:47 -0500 |
commit | a3a91332d006fd39a32e1f6d4663e11515ea944b (patch) | |
tree | 560c152c9f8146a4c1bcd52ad2a2fa454be48aec /mysql-test/t/strict.test | |
parent | 2805baf06c31dac21604148ec089300461790e3d (diff) | |
download | mariadb-git-bb-10.2-mdev7635.final.tar.gz |
MDEV-7635: Update tests to adapt to the new default sql_modebb-10.2-mdev7635.savedbb-10.2-mdev7635.final
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) |