maria:bb-11.2-mdev-32046

Last commit made on 2023-09-13
Get this branch:
git clone -b bb-11.2-mdev-32046 https://git.launchpad.net/maria

Branch merges

Branch information

Name:
bb-11.2-mdev-32046
Repository:
lp:maria

Recent commits

f1a3a30... by Yuchen Pei <email address hidden>

MDEV-32046 [testing] a no-op change to kick CI for failure reprod

eece7f1... by THIRUNARAYANAN BALATHANDAYUTHAPANI

- Rename the DBUG_EXECUTE_IF from sys_shrink_buffer_pool_full to
sys_shrink_buffer_pool to make it as generic name.

9b9067f... by Sergei Golubchik

mtr: s/mysqltest_embedded/mariadb-test-embedded/

avoid deprecation warning

9ad7c89... by Oleksandr "Sanja" Byelkin

Fix of incorrect merge of MDEV-31877: ASAN errors in Exec_time_tracker::get_cycles with innodb slow log verbosity
(8d210fc2aa7ca08450055e2db3249b0f18e61bdb)

29a0289... by Oleksandr "Sanja" Byelkin

Merge branch '11.2' into mariadb-11.2.1

73915d2... by Daniel Bartholomew <email address hidden>

bump the VERSION

18ddde4... by Sergei Golubchik

Merge branch '11.1' into 11.2

9bc25d9... by Sergei Golubchik

update results for ps2 mode

don't use ps2 mode for selects with side effects

8aa1a9e... by Nikita Malyavin

MDEV-31812 Add switch to old_mode to disable non-locking ALTER

Add LOCK_ALTER_TABE_COPY bit to old_mode. Disables online copy by default,
but still allows to force it with explicit lock=none

a1af525... by Nikita Malyavin

MDEV-31804 Assertion `thd->m_transaction_psi == __null' fails

... upon replicating online ALTER

When an online event is applied and slave_exec_mode is idempotent,
Write_rows_log_event::do_before_row_operations had reset
thd->lex->sql_command to SQLCOM_REPLACE.

This led to that a statement was detected as a row-type during binlogging,
and was logged as not standalone.

So the corresponding Gtid_log_event, when applied on replica, did not exit
early and created a new PSI transaction. Hence the difference with
non-online ALTER.