Add an end-marker to ease future merges

This commit is contained in:
Marko Mäkelä 2018-05-29 16:52:59 +03:00
parent 18934fb583
commit 7269c70821
2 changed files with 3 additions and 0 deletions

View File

@ -109,3 +109,4 @@ ALTER TABLE t1 ADD UNIQUE KEY (f1);
ERROR 23000: Duplicate entry 'foo' for key 'f1'
ALTER TABLE t1 ADD KEY (f2);
DROP TABLE t1;
# End of 10.2 tests

View File

@ -117,3 +117,5 @@ LOCK TABLE t1 WRITE;
ALTER TABLE t1 ADD UNIQUE KEY (f1);
ALTER TABLE t1 ADD KEY (f2);
DROP TABLE t1;
--echo # End of 10.2 tests