~ubuntu-branches/ubuntu/wily/mysql-5.6/wily

« back to all changes in this revision

Viewing changes to mysql-test/suite/innodb_stress/t/innodb_bigstress_blob_nocompress.test

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2015-07-21 07:09:29 UTC
  • mfrom: (1.2.6)
  • Revision ID: package-import@ubuntu.com-20150721070929-7sec4519udrl7m53
Tags: 5.6.25-0ubuntu1
* SECURITY UPDATE: Update to 5.6.25 to fix security issues (LP: #1475294)
  - http://www.oracle.com/technetwork/topics/security/cpujul2015-2367936.html
  - CVE-2015-2582
  - CVE-2015-2611
  - CVE-2015-2617
  - CVE-2015-2620
  - CVE-2015-2639
  - CVE-2015-2641
  - CVE-2015-2643
  - CVE-2015-2648
  - CVE-2015-2661
  - CVE-2015-4737
  - CVE-2015-4752
  - CVE-2015-4757
  - CVE-2015-4761
  - CVE-2015-4767
  - CVE-2015-4769
  - CVE-2015-4771
  - CVE-2015-4772

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# stress tests: blobs=yes, crash=no, compress=no
 
2
 
 
3
# Don't test this under valgrind, memory leaks will occur
 
4
--source include/not_valgrind.inc
 
5
--source include/have_innodb.inc
 
6
--source include/master-slave.inc
 
7
--source include/big_test.inc
 
8
 
 
9
SET GLOBAL innodb_file_format=Barracuda;
 
10
 
 
11
let $MYSQL_BASEDIR = `SELECT @@BASEDIR`;
 
12
 
 
13
--disable_warnings
 
14
DROP TABLE IF EXISTS t1;
 
15
--enable_warnings
 
16
 
 
17
# create the actual table
 
18
CREATE TABLE t1(id INT AUTO_INCREMENT PRIMARY KEY,
 
19
                msg_prefix VARCHAR(255),
 
20
                msg longtext,
 
21
                msg_length int,
 
22
                msg_checksum varchar(128),
 
23
                KEY msg_i(msg_prefix))
 
24
ENGINE=INNODB;
 
25
 
 
26
let $use_blob=1;
 
27
let $do_crash=0;
 
28
let $do_compress=0;
 
29
 
 
30
--let $num_crashes = 1
 
31
--let $num_workers = 10
 
32
--let $num_transactions = 2000
 
33
--let $kill_db_after = 0
 
34
--let $num_records = 1000
 
35
--let $max_rows = 4096
 
36
 
 
37
--source suite/innodb_stress/include/innodb_stress.inc
 
38
 
 
39
SET GLOBAL innodb_file_format=Default;
 
40