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/join_outer.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/join_outer.test')
-rw-r--r-- | mysql-test/t/join_outer.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/join_outer.test b/mysql-test/t/join_outer.test index a3a1278ef1e..70b412202c1 100644 --- a/mysql-test/t/join_outer.test +++ b/mysql-test/t/join_outer.test @@ -1691,14 +1691,14 @@ drop table t0, t1; --echo # (this is a regression after fix for MDEV-4817) --echo # CREATE TABLE t1 (id INT, d DATE NOT NULL); -INSERT INTO t1 VALUES (1,'0000-00-00'),(2,'0000-00-00'); +INSERT IGNORE INTO t1 VALUES (1,'0000-00-00'),(2,'0000-00-00'); CREATE TABLE t2 (i INT); SELECT * FROM t1 LEFT JOIN t2 ON (id=i) WHERE NULL OR d IS NULL; DROP TABLE t1,t2; CREATE TABLE t1 (i1 INT, d1 DATE NOT NULL); -INSERT INTO t1 VALUES (1,'2012-12-21'),(2,'0000-00-00'); +INSERT IGNORE INTO t1 VALUES (1,'2012-12-21'),(2,'0000-00-00'); CREATE TABLE t2 (i2 INT, j2 INT); INSERT INTO t2 VALUES (1,10),(2,20); |