~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/fast_update_sqlmode.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 t;
 
3
set tokudb_disable_slow_update=1;
 
4
create table t (id int primary key, x int not null);
 
5
insert into t values (1,0);
 
6
update noar t set x=42 where id=1;
 
7
update noar t set x=x+1 where id=1;
 
8
update noar t set x=x-1 where id=1;
 
9
set session sql_mode="NO_ENGINE_SUBSTITUTION,traditional";
 
10
update noar t set x=42 where id=1;
 
11
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
 
12
update noar t set x=x+1 where id=1;
 
13
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
 
14
update noar t set x=x-1 where id=1;
 
15
ERROR 42000: Table 't' uses an extension that doesn't exist in this XYZ version
 
16
set session sql_mode="NO_ENGINE_SUBSTITUTION";
 
17
drop table t;