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

« back to all changes in this revision

Viewing changes to mysql-test/suite/archive/archive_debug.test

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2013-12-22 10:27:05 UTC
  • Revision ID: package-import@ubuntu.com-20131222102705-mndw7s12mz0szrcn
Tags: upstream-5.5.32
Import upstream version 5.5.32

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--source include/have_archive.inc
 
2
--source include/have_debug.inc
 
3
 
 
4
--echo #
 
5
--echo # BUG#12402794 - 60976: CRASH, VALGRIND WARNING AND MEMORY LEAK
 
6
--echo #                       WITH PARTITIONED ARCHIVE TABLES
 
7
--echo #
 
8
CREATE TABLE t1(a INT) ENGINE=ARCHIVE;
 
9
INSERT INTO t1 VALUES(1);
 
10
SET SESSION debug_dbug='d,simulate_archive_open_failure';
 
11
CHECK TABLE t1;
 
12
SET SESSION debug_dbug=DEFAULT;
 
13
DROP TABLE t1;