We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56c4b01 commit 1f69ff4Copy full SHA for 1f69ff4
storage/xtradb/os/os0file.cc
@@ -5303,16 +5303,16 @@ os_aio_windows_handle(
5303
case OS_FILE_WRITE:
5304
if (slot->message1 && slot->page_compression && slot->page_buf) {
5305
ret_val = os_file_write(slot->name, slot->file, slot->page_buf,
5306
- slot->offset, slot->len);
+ slot->offset, slot->len);
5307
} else {
5308
5309
ret_val = os_file_write(slot->name, slot->file, slot->buf,
5310
5311
}
5312
break;
5313
case OS_FILE_READ:
5314
ret_val = os_file_read(slot->file, slot->buf,
5315
+ slot->offset, slot->len, slot->page_compression);
5316
5317
default:
5318
ut_error;
0 commit comments