~ubuntu-branches/ubuntu/raring/mysql-5.5/raring-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2013-01-16 08:29:25 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20130116082925-znscu5xswxo6pmw2
Tags: 5.5.29-0ubuntu1
* SECURITY UPDATE: Update to 5.5.29 to fix security issues (LP: #1100264)
  - http://www.oracle.com/technetwork/topics/security/cpujan2013-1515902.html
* debian/patches/CVE-2012-5611.patch: removed, included upstream.
* debian/patches/38_scripts__mysqld_safe.sh__signals.patch: refreshed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
test.corrupt_bit_test_ā check   Warning InnoDB: The B-tree of index "idxē" is corrupted.
41
41
test.corrupt_bit_test_ā check   error   Corrupt
42
42
select c from corrupt_bit_test_ā;
43
 
ERROR HY000: Incorrect key file for table 'corrupt_bit_test_ā'; try to repair it
 
43
ERROR HY000: Index corrupt_bit_test_ā is corrupted
44
44
select z from corrupt_bit_test_ā;
45
 
ERROR HY000: Incorrect key file for table 'corrupt_bit_test_ā'; try to repair it
 
45
ERROR HY000: Index corrupt_bit_test_ā is corrupted
46
46
show warnings;
47
47
Level   Code    Message
48
48
Warning 179     InnoDB: Index "idxē" for table "test"."corrupt_bit_test_ā" is marked as corrupted
49
 
Error   1034    Incorrect key file for table 'corrupt_bit_test_ā'; try to repair it
 
49
Error   1712    Index corrupt_bit_test_ā is corrupted
50
50
insert into corrupt_bit_test_ā values (10001, "a", 20001, 20001);
51
51
select * from corrupt_bit_test_ā use index(primary) where a = 10001;
52
52
a       b       c       z
63
63
test.corrupt_bit_test_ā check   error   Corrupt
64
64
set names utf8;
65
65
select z from corrupt_bit_test_ā;
66
 
ERROR HY000: Incorrect key file for table 'corrupt_bit_test_ā'; try to repair it
 
66
ERROR HY000: Index corrupt_bit_test_ā is corrupted
67
67
drop index idxē on corrupt_bit_test_ā;
68
68
select z from corrupt_bit_test_ā limit 10;
69
69
z