diff options
author | Nirbhay Choubey <nirbhay@mariadb.com> | 2017-02-08 15:28:00 -0500 |
---|---|---|
committer | Nirbhay Choubey <nirbhay@mariadb.com> | 2017-02-10 06:30:42 -0500 |
commit | 8b2e642aa214db729161252b96f36bfbae3add21 (patch) | |
tree | 006dcc588623c7c7ee508eca3534259f62244f2c /mysql-test/suite/vcol/r/vcol_trigger_sp_innodb.result | |
parent | f556aa9b5f3685dfcf1b365d2461316cbd16e169 (diff) | |
download | mariadb-git-8b2e642aa214db729161252b96f36bfbae3add21.tar.gz |
MDEV-7635: Update tests to adapt to the new default sql_mode
Diffstat (limited to 'mysql-test/suite/vcol/r/vcol_trigger_sp_innodb.result')
-rw-r--r-- | mysql-test/suite/vcol/r/vcol_trigger_sp_innodb.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/suite/vcol/r/vcol_trigger_sp_innodb.result b/mysql-test/suite/vcol/r/vcol_trigger_sp_innodb.result index 0a82f1006e7..dae34569d1b 100644 --- a/mysql-test/suite/vcol/r/vcol_trigger_sp_innodb.result +++ b/mysql-test/suite/vcol/r/vcol_trigger_sp_innodb.result @@ -128,6 +128,7 @@ DROP TABLE t1,t2; # # Examine the number of times triggers are recalculated for updates # +SET sql_mode = 'NO_ENGINE_SUBSTITUTION'; CREATE TABLE t1 ( a INTEGER UNSIGNED NULL DEFAULT NULL, b CHAR(10) NULL DEFAULT NULL, @@ -215,9 +216,11 @@ a b c blob_a blob_b blob_c drop trigger t1_ins; drop trigger t1_update; drop table t1; +SET sql_mode = DEFAULT; # # Same test, but with virtual keys # +SET sql_mode = 'NO_ENGINE_SUBSTITUTION'; CREATE TABLE t1 ( a INTEGER UNSIGNED NULL DEFAULT NULL, b CHAR(10) NULL DEFAULT NULL, @@ -304,3 +307,4 @@ a b c blob_a blob_b blob_c drop trigger t1_ins; drop trigger t1_update; drop table t1; +SET sql_mode = DEFAULT; |