mirror of
https://github.com/MariaDB/server.git
synced 2026-04-18 06:15:32 +02:00
Merge pull request #350 from grooverdan/10.1-TRX_SYS_PAGE_NO
fil_crypt_rotate_page - space_id should be compared to TRX_SYS_SPACE not space
This commit is contained in:
commit
85239bdfeb
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue