~ubuntu-branches/ubuntu/vivid/mariadb-5.5/vivid-proposed

« back to all changes in this revision

Viewing changes to storage/tokudb/mysql-test/rpl/r/rpl_tokudb_update_unique_uc0_lookup1.result

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2014-11-14 21:04:24 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20141114210424-xlyna0ozl11647o5
Tags: 5.5.40-0ubuntu0.14.10.1
* SECURITY UPDATE: Update to 5.5.40 to fix security issues (LP: #1391676)
  - CVE-2014-6507
  - CVE-2014-6491
  - CVE-2014-6500
  - CVE-2014-6469
  - CVE-2014-6555
  - CVE-2014-6559
  - CVE-2014-6494
  - CVE-2014-6496
  - CVE-2014-6464
* Add bsdutils as mariadb-server dependency like upstream does in 5.5.40.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include/master-slave.inc
 
2
[connection master]
 
3
drop table if exists t;
 
4
create table t (a bigint not null, b bigint not null, c bigint not null, primary key(a), unique key(c)) engine=tokudb;
 
5
insert into t values (1,0,-1);
 
6
insert into t values (2,0,-2),(3,0,-3);
 
7
insert into t values (4,0,-4);
 
8
include/diff_tables.inc [master:test.t, slave:test.t]
 
9
update t set b=b+1 where a=2;
 
10
update t set b=b+2 where a=1;
 
11
update t set b=b+3 where a=4;
 
12
update t set b=b+4 where a=3;
 
13
update t set b=b+1 where 1<=a and a<=3;
 
14
select unix_timestamp() into @tstart;
 
15
select unix_timestamp() into @tend;
 
16
select @tend-@tstart <= 5;
 
17
@tend-@tstart <= 5
 
18
0
 
19
select * from t;
 
20
a       b       c
 
21
1       3       -1
 
22
2       2       -2
 
23
3       5       -3
 
24
4       3       -4
 
25
include/diff_tables.inc [master:test.t, slave:test.t]
 
26
drop table if exists t;
 
27
include/rpl_end.inc