~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/fileops.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
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
 
2
DROP TABLE IF EXISTS t1,t2;
 
3
create table t1 (a int, b int, c int, key(a), key(b));
 
4
DROP TABLE t1;
 
5
create table t1 (a int, b int, c int, primary key(a), key(b));
 
6
DROP TABLE t1;
 
7
create table t1 (a int, b int, c int, key(a), key(b));
 
8
insert into t1 values (1,10,100);
 
9
select * from t1;
 
10
a       b       c
 
11
1       10      100
 
12
DROP TABLE t1;
 
13
create table t1 (a int, b int, c int, primary key(a), key(b));
 
14
insert into t1 values (1,10,100);
 
15
select * from t1;
 
16
a       b       c
 
17
1       10      100
 
18
DROP TABLE t1;
 
19
create table t1 (a int, b int, c int, key(a), key(b));
 
20
rename table t1 to t2;
 
21
DROP TABLE t2;
 
22
create table t1 (a int, b int, c int, primary key(a), key(b));
 
23
rename table t1 to t2;
 
24
DROP TABLE t2;
 
25
create table t1 (a int, b int, c int, key(a), key(b));
 
26
insert into t1 values (1,10,100);
 
27
select * from t1;
 
28
a       b       c
 
29
1       10      100
 
30
rename table t1 to t2;
 
31
select * from t2;
 
32
a       b       c
 
33
1       10      100
 
34
DROP TABLE t2;
 
35
create table t1 (a int, b int, c int, primary key(a), key(b));
 
36
insert into t1 values (1,10,100);
 
37
select * from t1;
 
38
a       b       c
 
39
1       10      100
 
40
rename table t1 to t2;
 
41
select * from t2;
 
42
a       b       c
 
43
1       10      100
 
44
DROP TABLE t2;
 
45
create table t1 (a int, b int, c int, key(a), key(b));
 
46
rename table t1 to t2;
 
47
insert into t2 values (1,10,100);
 
48
select * from t2;
 
49
a       b       c
 
50
1       10      100
 
51
DROP TABLE t2;
 
52
create table t1 (a int, b int, c int, primary key(a), key(b));
 
53
rename table t1 to t2;
 
54
insert into t2 values (1,10,100);
 
55
select * from t2;
 
56
a       b       c
 
57
1       10      100
 
58
DROP TABLE t2;
 
59
create table t1 (a int, b int, c int, key(a), key(b));
 
60
alter table t1 add index (c), add index (a,b);
 
61
DROP TABLE t1;
 
62
create table t1 (a int, b int, c int, primary key(a), key(b));
 
63
alter table t1 add index (c), add index (a,b);
 
64
DROP TABLE t1;
 
65
create table t1 (a int, b int, c int, key(a), key(b));
 
66
alter table t1 drop index b;
 
67
DROP TABLE t1;
 
68
create table t1 (a int, b int, c int, primary key(a), key(b));
 
69
alter table t1 drop index b;
 
70
DROP TABLE t1;
 
71
create table t1 (a int, b int, c int, key(a), key(b));
 
72
insert into t1 values (1,10,100);
 
73
alter table t1 add index (c), add index (a,b);
 
74
select c from t1;
 
75
c
 
76
100
 
77
select a,b from t1;
 
78
a       b
 
79
1       10
 
80
DROP TABLE t1;
 
81
create table t1 (a int, b int, c int, primary key(a), key(b));
 
82
insert into t1 values (1,10,100);
 
83
alter table t1 add index (c), add index (a,b);
 
84
select c from t1;
 
85
c
 
86
100
 
87
select a,b from t1;
 
88
a       b
 
89
1       10
 
90
DROP TABLE t1;
 
91
create table t1 (a int, b int, c int, key(a), key(b));
 
92
alter table t1 add index (c), add index (a,b), drop index b;
 
93
DROP TABLE t1;
 
94
create table t1 (a int, b int, c int, primary key(a), key(b));
 
95
alter table t1 add index (c), add index (a,b), drop index b;
 
96
DROP TABLE t1;
 
97
create table t1 (a int, b int, c int, key(a), key(b));
 
98
insert into t1 values (1,10,100);
 
99
alter table t1 add index (c), add index foo (a,b), drop index b;
 
100
select c from t1;
 
101
c
 
102
100
 
103
select a,b from t1 use index (foo);
 
104
a       b
 
105
1       10
 
106
DROP TABLE t1;
 
107
create table t1 (a int, b int, c int, primary key(a), key(b));
 
108
insert into t1 values (1,10,100);
 
109
alter table t1 add index (c), add index foo (a,b), drop index b;
 
110
select c from t1;
 
111
c
 
112
100
 
113
select a,b from t1 use index (foo);
 
114
a       b
 
115
1       10
 
116
DROP TABLE t1;
 
117
create table t1 (a int, b int, c int, key(a), key(b));
 
118
insert into t1 values (1,10,100);
 
119
select * from t1;
 
120
a       b       c
 
121
1       10      100
 
122
truncate table t1;
 
123
insert into t1 values (2,20,200);
 
124
select * from t1;
 
125
a       b       c
 
126
2       20      200
 
127
DROP TABLE t1;
 
128
create table t1 (a int, b int, c int, primary key(a), key(b));
 
129
insert into t1 values (1,10,100);
 
130
select * from t1;
 
131
a       b       c
 
132
1       10      100
 
133
truncate table t1;
 
134
insert into t1 values (2,20,200);
 
135
select * from t1;
 
136
a       b       c
 
137
2       20      200
 
138
DROP TABLE t1;
 
139
create table t1 (a int, b int, c int, key(a), key(b));
 
140
insert into t1 values (1,10,100);
 
141
select * from t1;
 
142
a       b       c
 
143
1       10      100
 
144
alter table t1 add index (c), drop index b;
 
145
select c from t1;
 
146
c
 
147
100
 
148
rename table t1 to t2;
 
149
select * from t2;
 
150
a       b       c
 
151
1       10      100
 
152
alter table t2 add index (b), drop index c;
 
153
select b from t2;
 
154
b
 
155
10
 
156
truncate table t2;
 
157
insert into t2 values (2,20,200);
 
158
select * From t2;
 
159
a       b       c
 
160
2       20      200
 
161
drop table t2;