~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

Viewing changes to mysql-test/suite/innodb/r/innodb_bug-13628249.result

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
call mtr.add_suppression('InnoDB: Failed to find tablespace for table \'"mysql"."slave_master_info"\' in the cache');
 
2
call mtr.add_suppression('InnoDB: Failed to find tablespace for table \'"mysql"."slave_relay_log_info"\' in the cache');
 
3
call mtr.add_suppression('InnoDB: Failed to find tablespace for table \'"mysql"."slave_worker_info"\' in the cache');
 
4
call mtr.add_suppression('InnoDB: Failed to find tablespace for table \'"test"."t1"\' in the cache');
 
5
call mtr.add_suppression('InnoDB: Allocated tablespace [0-9]+, old maximum was [0-9]+');
 
6
# Stop server
 
7
# Restart server.
 
8
# Restart server.
 
9
CREATE TABLE t1(c1 INT PRIMARY KEY) ENGINE=InnoDB STATS_PERSISTENT=0;
 
10
BEGIN;
 
11
INSERT INTO t1 VALUES(1), (2), (3), (4);
 
12
SET SESSION debug="+d,crash_commit_before";
 
13
COMMIT;
 
14
ERROR HY000: Lost connection to MySQL server during query
 
15
SELECT COUNT(*) IN (0,4) yes FROM t1;
 
16
yes
 
17
1
 
18
SELECT COUNT(*) IN (0,4) yes FROM t1;
 
19
yes
 
20
1
 
21
SELECT COUNT(*) IN (0,4) yes FROM t1;
 
22
yes
 
23
1
 
24
DROP TABLE t1;