Commit fe38d7ca authored by Marko Mäkelä's avatar Marko Mäkelä

Remove redundant statements from a test

parent e441c32a
...@@ -197,8 +197,6 @@ DROP TABLE t1; ...@@ -197,8 +197,6 @@ DROP TABLE t1;
# #
# MDEV-27214 Import with disabled keys corrupts meta-data like rows, indexes, ... # MDEV-27214 Import with disabled keys corrupts meta-data like rows, indexes, ...
# #
SET UNIQUE_CHECKS=0;
SET FOREIGN_KEY_CHECKS=0;
CREATE TABLE `t1` ( CREATE TABLE `t1` (
`id` int(11) NOT NULL, `id` int(11) NOT NULL,
`a` int(11) DEFAULT NULL, `a` int(11) DEFAULT NULL,
......
...@@ -214,8 +214,6 @@ DROP TABLE t1; ...@@ -214,8 +214,6 @@ DROP TABLE t1;
--echo # MDEV-27214 Import with disabled keys corrupts meta-data like rows, indexes, ... --echo # MDEV-27214 Import with disabled keys corrupts meta-data like rows, indexes, ...
--echo # --echo #
SET UNIQUE_CHECKS=0;
SET FOREIGN_KEY_CHECKS=0;
CREATE TABLE `t1` ( CREATE TABLE `t1` (
`id` int(11) NOT NULL, `id` int(11) NOT NULL,
`a` int(11) DEFAULT NULL, `a` int(11) DEFAULT NULL,
...@@ -231,5 +229,4 @@ SELECT TABLE_ROWS, AVG_ROW_LENGTH>0 FROM INFORMATION_SCHEMA.TABLES ...@@ -231,5 +229,4 @@ SELECT TABLE_ROWS, AVG_ROW_LENGTH>0 FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_NAME='t1' AND TABLE_SCHEMA='test'; WHERE TABLE_NAME='t1' AND TABLE_SCHEMA='test';
DROP TABLE t1; DROP TABLE t1;
--echo # End of 10.6 tests --echo # End of 10.6 tests
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment