diff options
author | Eugene Kosov <claprix@yandex.ru> | 2020-03-18 18:22:38 +0300 |
---|---|---|
committer | Eugene Kosov <claprix@yandex.ru> | 2020-03-20 21:35:42 +0300 |
commit | 54b2da9535614f3115723bb026b6ef56064f0c82 (patch) | |
tree | 1830873e0984222f2123c06b67eb5cc5e5216c60 | |
parent | 1f53335d3740648c167b5d0a8217b66731228395 (diff) | |
download | mariadb-git-54b2da9535614f3115723bb026b6ef56064f0c82.tar.gz |
correct comment in buf_page_is_corrupted()
-rw-r--r-- | storage/innobase/buf/buf0buf.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innobase/buf/buf0buf.cc b/storage/innobase/buf/buf0buf.cc index 6b8784adb89..8881ab5eb7a 100644 --- a/storage/innobase/buf/buf0buf.cc +++ b/storage/innobase/buf/buf0buf.cc @@ -1081,7 +1081,7 @@ buf_page_is_corrupted( /* A page filled with NUL bytes is considered not corrupted. The FIL_PAGE_FILE_FLUSH_LSN field may be written nonzero for - the first page of each file of the system tablespace. + the first page of the system tablespace. Ignore it for the system tablespace. */ if (!checksum_field1 && !checksum_field2) { /* Checksum fields can have valid value as zero. |