Skip to content

Commit 0d90b8b

Browse files
committed
Merge branch '5.5' into 10.0
2 parents 9a3ff07 + df80420 commit 0d90b8b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

mysql-test/r/events_1.result

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ create table t_event3 (a int, b float);
114114
drop event if exists event3;
115115
Warnings:
116116
Note 1305 Event event3 does not exist
117-
create event event3 on schedule every 50 + 10 minute starts date_add("20100101", interval 5 minute) ends date_add("20151010", interval 5 day) comment "portokala_comment" DO insert into t_event3 values (unix_timestamp(), rand());
117+
create event event3 on schedule every 50 + 10 minute starts date_add("20100101", interval 5 minute) ends date_add("20251010", interval 5 day)
118+
comment "portokala_comment" DO insert into t_event3 values (unix_timestamp(), rand());
118119
select count(*) from t_event3;
119120
count(*)
120121
0

mysql-test/t/events_1.test

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ drop event existant;
125125

126126
create table t_event3 (a int, b float);
127127
drop event if exists event3;
128-
create event event3 on schedule every 50 + 10 minute starts date_add("20100101", interval 5 minute) ends date_add("20151010", interval 5 day) comment "portokala_comment" DO insert into t_event3 values (unix_timestamp(), rand());
128+
create event event3 on schedule every 50 + 10 minute starts date_add("20100101", interval 5 minute) ends date_add("20251010", interval 5 day)
129+
comment "portokala_comment" DO insert into t_event3 values (unix_timestamp(), rand());
129130
let $wait_condition=SELECT count(*)=0 from t_event3;
130131
--source include/wait_condition.inc
131132
select count(*) from t_event3;

0 commit comments

Comments
 (0)