maria:bb-10.10-mdev-27912

Last commit made on 2023-03-22
Get this branch:
git clone -b bb-10.10-mdev-27912 https://git.launchpad.net/maria

Branch merges

Branch information

Name:
bb-10.10-mdev-27912
Repository:
lp:maria

Recent commits

6ffd775... by Yuchen Pei

MDEV-27912 Fixing inconsistency w.r.t. expect files in tests.

mtr uses group suffix, but some existing inc and test files use
server_id for expect files. This patch aims to fix that.

For spider:

With this change we will not have to maintain a separate version of
restart_mysqld.inc for spider, that duplicates code, just because
spider tests use different names for expect files, and shutdown_mysqld
requires magical names for them.

With this change spider tests will also be able to use other features
provided by restart_mysqld.inc without code duplication, like the
parameter $restart_parameters (see e.g. the testcase mdev_29904.test
in commit ef1161e5d4f).

Tests run after this change: default, spider, rocksdb, galera, using
the following command

mtr --parallel=auto --force --max-test-fail=0 --skip-core-file
mtr --suite spider,spider/*,spider/*/* \
    --skip-test="spider/oracle.*|.*/t\..*" --parallel=auto --big-test \
    --force --max-test-fail=0 --skip-core-file
mtr --suite galera --parallel=auto
mtr --suite rocksdb --parallel=auto

78d0d74... by Marko Mäkelä

Merge 10.9 into 10.10

eec1d6c... by Marko Mäkelä

Merge 10.8 into 10.9

e4b83f0... by Marko Mäkelä

Merge 10.6 into 10.8

32a53a6... by Marko Mäkelä

MDEV-26827 fixup: Remove a bogus assertion

We can have dirty_blocks=0 when buf_flush_page_cleaner() is being woken up
to write out or evict pages from the buf_pool.LRU list.

df08731... by Marko Mäkelä

Merge 10.9 into 10.10

1147e32... by Marko Mäkelä

Merge 10.8 into 10.9

fa56adf... by Marko Mäkelä

Merge 10.6 into 10.8

e8e0559... by THIRUNARAYANAN BALATHANDAYUTHAPANI

MDEV-30870 Undo tablespace name displays wrongly for I_S queries

- INNODB_SYS_TABLESPACES in information schema should display
innodb_undo001, innodb_undo002 etc as tablespace name for undo
tablespaces

18e4978... by THIRUNARAYANAN BALATHANDAYUTHAPANI

MDEV-29975 InnoDB fails to release savepoint during bulk insert

- InnoDB does rollback the whole transaction and discards the
savepoint when there is a failure happens during bulk
insert operation. When server request to release the savepoint,
InnoDB should return DB_SUCCESS when it deals with bulk
insert operation