mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Fixed small error on compression failure error text.
This commit is contained in:
@@ -149,7 +149,7 @@ fil_compress_page(
|
||||
|
||||
if (err != LZO_E_OK || write_size > UNIV_PAGE_SIZE-header_len) {
|
||||
fprintf(stderr,
|
||||
"InnoDB: Warning: Compression failed for space %lu name %s len %lu err %d write_size %lu",
|
||||
"InnoDB: Warning: Compression failed for space %lu name %s len %lu err %d write_size %lu\n",
|
||||
space_id, fil_space_name(space), len, err, write_size);
|
||||
srv_stats.pages_page_compression_error.inc();
|
||||
*out_len = len;
|
||||
|
||||
@@ -149,7 +149,7 @@ fil_compress_page(
|
||||
|
||||
if (err != LZO_E_OK || write_size > UNIV_PAGE_SIZE-header_len) {
|
||||
fprintf(stderr,
|
||||
"InnoDB: Warning: Compression failed for space %lu name %s len %lu err %d write_size %lu",
|
||||
"InnoDB: Warning: Compression failed for space %lu name %s len %lu err %d write_size %lu\n",
|
||||
space_id, fil_space_name(space), len, err, write_size);
|
||||
srv_stats.pages_page_compression_error.inc();
|
||||
*out_len = len;
|
||||
|
||||
Reference in New Issue
Block a user