~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-security

« back to all changes in this revision

Viewing changes to mysql-test/t/events_1.test

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2015-12-10 10:24:40 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20151210102440-gc0g1cbg3awuezyl
Tags: 5.5.47-1ubuntu0.14.04.1
* SECURITY UPDATE: New upstream release 5.5.47
  - CVE-2016-0546
  - CVE-2016-0505
  - CVE-2016-0596
  - CVE-2016-0597
  - CVE-2016-0616
  - CVE-2016-0598
  - CVE-2016-0600
  - CVE-2016-0606
  - CVE-2016-0608
  - CVE-2016-0609
  - CVE-2016-2047
  - Adds the mariadb-slow.log into the logrotate file, as the file
    name mariadb-slow.log is the log name in the default config file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
 
126
126
create table t_event3 (a int, b float);
127
127
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("20201010", 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(curdate(), interval 5 minute) ends date_add(curdate(), interval 5 day) comment "portokala_comment" DO insert into t_event3 values (unix_timestamp(), rand());
129
129
let $wait_condition=SELECT count(*)=0 from t_event3;
130
130
--source include/wait_condition.inc
131
131
select count(*) from t_event3;