maria:bb-10.7-MDEV-27575

Last commit made on 2022-02-22
Get this branch:
git clone -b bb-10.7-MDEV-27575 https://git.launchpad.net/maria

Branch merges

Branch information

Name:
bb-10.7-MDEV-27575
Repository:
lp:maria

Recent commits

b283ef3... by Nayuta Yanagisawa

MDEV-27575 SIGSEGV in intern_plugin_lock on SHUTDOWN when setting Spider as default tmp SE

Setting Spider as the default tmp storage engine results in the
server crash at its shutdown.

Spider cannot maintain any physical data, and thus setting it as
the default tmp storage engine is non-sense. We simply prohibit this
configuration by setting HTON_TEMPORARY_NOT_SUPPORTED to Spider.

c76bdc5... by Marko Mäkelä

Merge 10.6 into 10.7

f04b459... by Marko Mäkelä

Merge 10.5 into 10.6

38a8ac1... by Vladislav Vaintroub

Merge remote-tracking branch 'origin/10.6' into 10.7

cac995e... by Marko Mäkelä

Merge 10.4 into 10.5

6f4740f... by Marko Mäkelä

MDEV-27723 innodb.instant_alter,8k.rdiff does not apply on FreeBSD

The .rdiff files were not correctly adjusted in
commit 8f4a3bf07cc9d3f42899314411da344dabd66c5e (MDEV-25057).

f921db7... by Marko Mäkelä

Merge 10.3 into 10.4

8bc5bf2... by Vladislav Vaintroub

MDEV-26789 Fix stall of group commit waiters

Fixed a condition where designated group commit lead was woken in release,
but returned early without trying to take over the lock.

So, the group commit locks would be unowned, and the waiters could
be stalled, until another thread comes that would on whatever reasons
flush the redo log.

Also, use better criteria for choosing potential next group commit lead.

5b237e5... by Marko Mäkelä

Merge 10.2 into 10.3

73c391a... by Marko Mäkelä

MDEV-27583 InnoDB uses different constants for FK cascade error message in SQL vs error log

convert_error_code_to_mysql(): Use the correct limit FK_MAX_CASCADE_DEL
in the error message. The DICT_FK_MAX_RECURSIVE_LOAD applies to
the number of foreign key constraints in table definitions,
not to the number of rows that are visited while processing
a foreign key constraint.