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

« back to all changes in this revision

Viewing changes to storage/tokudb/mysql-test/tokudb/r/cluster_filter_varchar_prefix.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
*** Bug #22169 ***
 
3
DROP TABLE IF EXISTS t1;
 
4
create table t1 (a int, b varchar(20), c int, key (b(3)) clustering=yes);
 
5
insert into t1 values (1,"100000",100);
 
6
insert into t1 values (2,"200000",200);
 
7
insert into t1 values (3,"300000",300);
 
8
insert into t1 values (4,"400000",400);
 
9
insert into t1 values (5,"500000",500);
 
10
select b from t1 where b > "10";
 
11
b
 
12
100000
 
13
200000
 
14
300000
 
15
400000
 
16
500000
 
17
alter table t1 drop key b;
 
18
alter table t1 add key b(b(2)) clustering=yes;
 
19
select b from t1 where b > "10";
 
20
b
 
21
100000
 
22
200000
 
23
300000
 
24
400000
 
25
500000
 
26
DROP TABLE t1;