maria:bb-sup37463

Last commit made on 2020-05-11
Get this branch:
git clone -b bb-sup37463 https://git.launchpad.net/maria

Branch merges

Branch information

Name:
bb-sup37463
Repository:
lp:maria

Recent commits

f267049... by Alexey Botchkov

The customized server_audit plugin to test if it affects.

d01d94d... by Sergey Petrunia

MDEV-17568: LATERAL DERIVED is not clearly visible in EXPLAIN FORMAT=JSON

Make LATERAL DERIVED tables visible in EXPLAIN FORMAT=JSON output.

8648b9b... by Marko Mäkelä

Merge 10.2 into 10.3

1cccd3c... by Marko Mäkelä

MDEV-7962: Fix cmake WITH_WSREP=OFF

commit d467bb7e5e7902cf763c86cae71fde4f08e2ae3e accidentally
broke the build without WSREP, by misplacing an #endif.

3f65ce5... by Marko Mäkelä

Merge 10.1 into 10.2

d467bb7... by Marko Mäkelä

MDEV-7962 post-push fixes

This is a partial backport of
commit 5e7e7153b439ea1b12588f5830d66b3a0cf13414 from 10.4.

assert_trx_is_free(): Assert !is_wsrep().

trx_init(): Do not initialize trx->wsrep, because it must have been
initialized already.

trx_commit_in_memory(): Invoke wsrep_commit_ordered(). This call
was being skipped, because the transaction object had already been
freed to the pool.

trx_rollback_for_mysql(), innobase_commit_low(),
innobase_rollback_trx(): Always reset trx->wsrep.

5a270e6... by Marko Mäkelä

Add missing have_debug.inc

7fb73ed... by Oleksandr "Sanja" Byelkin

Merge branch '10.2' into 10.3

42bba97... by THIRUNARAYANAN BALATHANDAYUTHAPANI

MDEV-22446 InnoDB aborts while adding instant column for discarded tablespace

- Instant alter should change the metadata alone when table is
discarded. It shouldn't try to add metadata record in clustered index.
Also make the clustered index to non-instant format.

2748c49... by THIRUNARAYANAN BALATHANDAYUTHAPANI

MDEV-19092 Server crash when renaming the column when
  FOREIGN_KEY_CHECKS is disabled

- Referenced index can be null While renaming the referenced column name.
In that case, rename the referenced column name in dict_foreign_t and
find the equivalent referenced index.