diff options
Diffstat (limited to 'mysql-test/suite/encryption/r/innochecksum.result')
-rw-r--r-- | mysql-test/suite/encryption/r/innochecksum.result | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/suite/encryption/r/innochecksum.result b/mysql-test/suite/encryption/r/innochecksum.result index 2a37ae1aa00..5dc6ed90acc 100644 --- a/mysql-test/suite/encryption/r/innochecksum.result +++ b/mysql-test/suite/encryption/r/innochecksum.result @@ -20,7 +20,8 @@ CREATE TABLE t6 (a INT AUTO_INCREMENT PRIMARY KEY, b TEXT) ENGINE=InnoDB; # Run innochecksum on t3 # no encryption corrupting the field should not have effect # Run innochecksum on t6 -# no encryption corrupting the field should not have effect +# In new checksum format, checksum calculated for whole page. +# So It should affected. # Restore the original tables # Corrupt FIL_PAGE_FILE_FLUSH_LSN_OR_KEY_VERSION+4 (post encryption checksum) # Run innochecksum on t2 @@ -33,4 +34,5 @@ CREATE TABLE t6 (a INT AUTO_INCREMENT PRIMARY KEY, b TEXT) ENGINE=InnoDB; # Run innochecksum on t3 # Run innochecksum on t6 # Restore the original tables +# restart DROP TABLE t1, t2, t3, t4, t5, t6; |