summaryrefslogtreecommitdiff
path: root/mysql-test/suite/period/r/update.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/period/r/update.result')
-rw-r--r--mysql-test/suite/period/r/update.result9
1 files changed, 7 insertions, 2 deletions
diff --git a/mysql-test/suite/period/r/update.result b/mysql-test/suite/period/r/update.result
index f9aeda170df..b86537fc9fb 100644
--- a/mysql-test/suite/period/r/update.result
+++ b/mysql-test/suite/period/r/update.result
@@ -1,4 +1,4 @@
-create or replace table t (id int, s date, e date, period for apptime(s,e));
+create table t (id int, s date, e date, period for apptime(s,e));
insert into t values(1, '1999-01-01', '2018-12-12');
insert into t values(1, '1999-01-01', '2017-01-01');
insert into t values(1, '2017-01-01', '2019-01-01');
@@ -268,4 +268,9 @@ x s e xs xe xs=s and xe=e
create or replace table t1 (f int, s date, e date, period for app(s,e));
insert into t1 values (1,'2016-09-21','2019-06-14');
update ignore t1 for portion of app from '2019-03-13' to '2019-03-14' set f = 1;
-create or replace database test;
+drop table t,t1,t2,log_tbl;
+drop view v1;
+drop function f;
+drop function g;
+drop function h;
+drop procedure log;