maria:bb-10.11-MDEV-28526

Last commit made on 2022-12-02
Get this branch:
git clone -b bb-10.11-MDEV-28526 https://git.launchpad.net/maria

Branch merges

Branch information

Name:
bb-10.11-MDEV-28526
Repository:
lp:maria

Recent commits

ff19638... by Yuchen Pei

MDEV-28526 Spider: remove conn_kind member variables

The conn_kind, which stands for "connection kind", is no longer useful
because the HandlerSocket support is deleted and Spider now has only
one connection kind, SPIDER_CONN_KIND_MYSQL. Remove conn_kind and
related code.

Signed-off-by: Yuchen Pei <email address hidden>
Reviewed-by: Nayuta Yanagisawa <email address hidden>

b81b194... by Marko Mäkelä

Merge 10.10 into 10.11

a27bfb2... by Marko Mäkelä

Merge 10.9 into 10.10

3ba8828... by Marko Mäkelä

Merge 10.8 into 10.9

0751bfb... by Marko Mäkelä

Merge 10.7 into 10.8

b7ae4d4... by Marko Mäkelä

Merge 10.6 into 10.7

4783f37... by Marko Mäkelä

MDEV-30069 fixup: Do not truncate files on recovery

recv_sys_t::recover_deferred(): If the file has been determined
to be large enough, skip the call to os_file_set_size(), which
would use the current value of FSP_SIZE, which during a multi-batch
recovery can be smaller than the actual file size.

os_file_io(): Also display the file offset in the warning message about
partial I/O.

15ab2e1... by Marko Mäkelä

MDEV-30132 Crash after recovery, with InnoDB: Tried to read ...

os_file_read(): Merged with os_file_read_no_error_handling().
Crashing on a partial page read is as unhelpful as crashing on a
corrupted page read (commit 0b47c126e31cddda1e94588799599e138400bcf8).
Report the file name if it is available via IORequest.

fc1403d... by Marko Mäkelä

Cleanup: Remove fil_space_t::is_deferred()

The public data member can be checked directly by the only caller.

1188ef4... by Marko Mäkelä

MDEV-30132 Crash after recovery, with InnoDB: Tried to read ... bytes at offset

fil_space_t::prepare_acquired(): Do not attempt to extend (or shrink)
files that will be processed by recv_sys_t::recover_deferred().