maria:bb-10.11-tmp

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

Branch merges

Branch information

Name:
bb-10.11-tmp
Repository:
lp:maria

Recent commits

cb69a81... by Sergey Petrunia

MDEV-21095: Make Optimizer Trace support Index Condition Pushdown

Fixes over previous patches: do tracing of attached conditions
close to where we generate them.

Fix the tracing code to print the right conditions.

9eba044... by Rex Johnston

MDEV-21092,MDEV-21095,MDEV-29997: Optimizer Trace for index condition pushdown, partition pruning, exists-to-in

        Add Optimizer Tracing for:
        - Index Condition Pushdown
        - Partition Pruning
        - Exists-to-IN optimization

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.