~ubuntu-branches/ubuntu/utopic/mariadb-5.5/utopic-security

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2014-04-17 20:55:22 UTC
  • mfrom: (2.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20140417205522-wof4l36nxhlkn89m
* New upstream release, fixing the following security issues:
  * Corresponding MariaDB CVEs for Oracle SPU April 2014 (Closes: #745330)
    - CVE-2014-0384 
    - CVE-2014-2419 
    - CVE-2014-2430 
    - CVE-2014-2431 
    - CVE-2014-2432 
    - CVE-2014-2436 
    - CVE-2014-2438 
    - CVE-2014-2440
* Re-enabled TokuDB with "if arch amd64" in d/rules
* Applied patch to log init output better
  (Closes https://mariadb.atlassian.net/browse/MDEV-5957)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
2
2
set global tokudb_checkpoint_on_flush_logs=ON;
3
3
# Establish connection conn1 (user = root)
4
 
select DB, command, state, info from information_schema.processlist where id!= connection_id();
 
4
select DB, command, state, info from information_schema.processlist where id != connection_id();
5
5
DB      command state   info
6
6
test    Sleep           NULL
7
7
flush logs;
8
 
select DB, command, state, info from information_schema.processlist where id!= connection_id();
 
8
select DB, command, state, info from information_schema.processlist where id != connection_id();
9
9
DB      command state   info
10
10
test    Sleep           NULL
11
11
set tokudb_checkpoint_lock=1;
12
12
flush logs;;
13
 
select DB, command, state, info from information_schema.processlist where id!= connection_id();
 
13
select DB, command, state, info from information_schema.processlist where id != connection_id();
14
14
DB      command state   info
15
15
test    Query   NULL    flush logs
16
16
set tokudb_checkpoint_lock=0;