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

« back to all changes in this revision

Viewing changes to storage/tokudb/mysql-test/tokudb_bugs/r/xa-3.result

  • Committer: Package Import Robot
  • Author(s): James Page, Otto Kekäläinen
  • Date: 2014-02-17 16:51:52 UTC
  • mfrom: (2.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20140217165152-k315d3175g865kkx
Tags: 5.5.35-1
[ Otto Kekäläinen ]
* New upstream release, fixing the following security issues:
  - Buffer overflow in client/mysql.cc (Closes: #737597).
    - CVE-2014-0001
  - http://www.oracle.com/technetwork/topics/security/cpujan2014-1972949.html
    - CVE-2013-5891
    - CVE-2013-5908
    - CVE-2014-0386
    - CVE-2014-0393
    - CVE-2014-0401
    - CVE-2014-0402
    - CVE-2014-0412
    - CVE-2014-0420
    - CVE-2014-0437
* Upstream https://mariadb.atlassian.net/browse/MDEV-4902
  fixes compatibility with Bison 3.0 (Closes: #733002)
* Updated Russian debconf translation (Closes: #734426)
* Updated Japanese debconf translation (Closes: #735284)
* Updated French debconf translation (Closes: #736480)
* Renamed SONAME properly (Closes: #732967)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
drop table if exists t1, t2;
 
2
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=innodb;
 
3
CREATE TABLE t2 (b INT PRIMARY KEY) ENGINE=tokudb;
 
4
BEGIN;
 
5
SELECT @@log_bin;
 
6
@@log_bin
 
7
0
 
8
INSERT INTO t1 VALUES (1);
 
9
INSERT INTO t2 VALUES (2);
 
10
SET SESSION debug="d,crash_commit_before";
 
11
Warnings:
 
12
Warning 1287    '@@debug' is deprecated and will be removed in a future release. Please use '@@debug_dbug' instead
 
13
COMMIT;
 
14
ERROR HY000: Lost connection to MySQL server during query
 
15
select * from t1;
 
16
a
 
17
select * from t2;
 
18
b
 
19
drop table t1, t2;
 
20
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=innodb;
 
21
CREATE TABLE t2 (b INT PRIMARY KEY) ENGINE=tokudb;
 
22
BEGIN;
 
23
SELECT @@log_bin;
 
24
@@log_bin
 
25
0
 
26
INSERT INTO t1 VALUES (1);
 
27
INSERT INTO t2 VALUES (2);
 
28
SET SESSION debug="d,crash_commit_after_prepare";
 
29
Warnings:
 
30
Warning 1287    '@@debug' is deprecated and will be removed in a future release. Please use '@@debug_dbug' instead
 
31
COMMIT;
 
32
ERROR HY000: Lost connection to MySQL server during query
 
33
select * from t1;
 
34
a
 
35
select * from t2;
 
36
b
 
37
drop table t1, t2;
 
38
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=innodb;
 
39
CREATE TABLE t2 (b INT PRIMARY KEY) ENGINE=tokudb;
 
40
BEGIN;
 
41
SELECT @@log_bin;
 
42
@@log_bin
 
43
0
 
44
INSERT INTO t1 VALUES (1);
 
45
INSERT INTO t2 VALUES (2);
 
46
SET SESSION debug="d,crash_commit_after";
 
47
Warnings:
 
48
Warning 1287    '@@debug' is deprecated and will be removed in a future release. Please use '@@debug_dbug' instead
 
49
COMMIT;
 
50
ERROR HY000: Lost connection to MySQL server during query
 
51
select * from t1;
 
52
a
 
53
1
 
54
select * from t2;
 
55
b
 
56
2
 
57
drop table t1, t2;