summaryrefslogtreecommitdiff
path: root/mysql-test/suite/period/t/create.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/period/t/create.test')
-rw-r--r--mysql-test/suite/period/t/create.test5
1 files changed, 2 insertions, 3 deletions
diff --git a/mysql-test/suite/period/t/create.test b/mysql-test/suite/period/t/create.test
index c55f8fe31f7..2e3de795698 100644
--- a/mysql-test/suite/period/t/create.test
+++ b/mysql-test/suite/period/t/create.test
@@ -1,5 +1,4 @@
-create or replace table t (id int primary key, s date, e date,
- period for mytime(s,e));
+create table t (id int primary key, s date, e date, period for mytime(s,e));
--echo # CONSTRAINT CHECK (s < e) is added implicitly, and shouldn't be shown
--echo # this is important for correct command-based replication
show create table t;
@@ -79,4 +78,4 @@ insert t values (2, '2001-01-01', '2001-01-01');
show status like "Feature_application_time_periods";
-create or replace database test;
+drop table t;