revision-id: 16c96900dfd27770df762a22c72bc603177d1ac5 (mariadb-10.3.6-114-g16c96900dfd) parent(s): d3e37c1a59ebb4218a86a739e733aae9dd90ea41 author: Oleksandr Byelkin committer: Oleksandr Byelkin timestamp: 2018-05-06 22:21:47 +0200 message: fix of the test --- mysql-test/suite/sql_sequence/other.result | 1 + mysql-test/suite/sql_sequence/other.test | 1 + 2 files changed, 2 insertions(+) diff --git a/mysql-test/suite/sql_sequence/other.result b/mysql-test/suite/sql_sequence/other.result index c3c9f84a25e..ff58e35772b 100644 --- a/mysql-test/suite/sql_sequence/other.result +++ b/mysql-test/suite/sql_sequence/other.result @@ -208,4 +208,5 @@ ERROR HY000: Storage engine SEQUENCE of the table `test`.`s` doesn't have this o delete s,t1 from t1,s; ERROR HY000: Storage engine SEQUENCE of the table `test`.`s` doesn't have this option DROP SEQUENCE s; +DROP TABLE t1; # End of 10.3 tests diff --git a/mysql-test/suite/sql_sequence/other.test b/mysql-test/suite/sql_sequence/other.test index 668485e558f..5759b195950 100644 --- a/mysql-test/suite/sql_sequence/other.test +++ b/mysql-test/suite/sql_sequence/other.test @@ -176,6 +176,7 @@ delete t1,s from s,t1; --error ER_ILLEGAL_HA delete s,t1 from t1,s; DROP SEQUENCE s; +DROP TABLE t1; --echo # End of 10.3 tests