diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2018-11-14 15:46:53 +0100 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2018-11-14 15:46:53 +0100 |
commit | 47274d902e63663522176614157b4eace8a17b8e (patch) | |
tree | a1e3cea86862af7d8e359cb0c7f578fd466c50d3 /mysql-test/t/partition_innodb.test | |
parent | 6cecb10a2f8b6536bed78ab6d3791d8befc9d732 (diff) | |
download | mariadb-git-47274d902e63663522176614157b4eace8a17b8e.tar.gz |
fix of test suite
Diffstat (limited to 'mysql-test/t/partition_innodb.test')
-rw-r--r-- | mysql-test/t/partition_innodb.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/partition_innodb.test b/mysql-test/t/partition_innodb.test index 5dbe9f467fa..5674a889023 100644 --- a/mysql-test/t/partition_innodb.test +++ b/mysql-test/t/partition_innodb.test @@ -1008,7 +1008,7 @@ CREATE ALGORITHM = MERGE VIEW v AS SELECT a, b FROM t1 STRAIGHT_JOIN t2 WHERE b INSERT INTO t1 VALUES (1),(2); INSERT IGNORE INTO t2 VALUES (2,2),('three',3),(4,4); -UPDATE v SET a = NULL ORDER BY a, b; +UPDATE v SET a = NULL; DROP view v; DROP TABLE t1, t2; |