Merge pull request #352 from grooverdan/10.1-xtradb-fil_crypt_rotate_page

xtradb: fil_crypt_rotate_page, space_id should be compared to TRX_SYS_SPACE
This commit is contained in:
Jan Lindström 2017-04-05 09:43:36 +03:00 committed by GitHub
commit 64a37f6cab

View file

@ -1951,7 +1951,7 @@ fil_crypt_rotate_page(
return;
}
if (space == TRX_SYS_SPACE && offset == TRX_SYS_PAGE_NO) {
if (space_id == TRX_SYS_SPACE && offset == TRX_SYS_PAGE_NO) {
/* don't encrypt this as it contains address to dblwr buffer */
return;
}