maria:10.6-MDEV-24071

Last commit made on 2022-07-05
Get this branch:
git clone -b 10.6-MDEV-24071 https://git.launchpad.net/maria

Branch merges

Branch information

Name:
10.6-MDEV-24071
Repository:
lp:maria

Recent commits

9d17235... by Vladislav Vaintroub

MDEV-24071 - repro

fixed a couple of assertions or crashes in the server.
Now Innodb is acting up

494a75c... by Vladislav Vaintroub

MDEV-28888 : Embedded MariaDB does not build on Windows

Add limited support for building embedded library (DLL only).

0c62b6d... by Anel Husakovic <email address hidden>

Format properly mtr report for the test case that is not completed

- Fixes 29e8c154172bd6b9dccd9757fddace93be6ad194 (MDEV-25857)
Review by: <@mariadb.com>

62a20f8... by Marko Mäkelä

Merge 10.5 into 10.6

b546913... by Marko Mäkelä

Valgrind: Disable tests that would often time out

Starting with 10.5, InnoDB crash recovery tests seem to time out
more easily under Valgrind, which emulates multiple threads by
interleaving them in a single operating system thread.

These tests will still be covered by
AddressSanitizer and MemorySanitizer.

f096870... by Marko Mäkelä

Merge 10.4 into 10.5

ba3354f... by Vladislav Vaintroub

MDEV-28995 Sporadic Assertion on shutdown in threadpool_winsockets.cc

Remove the affected assert.
Wait for all AIO_buffer_cache::release_buffer() to finish before
AIO_buffer_cache::clear().

392ee57... by Marko Mäkelä

Merge 10.3 into 10.4

990cde8... by THIRUNARAYANAN BALATHANDAYUTHAPANI

MDEV-28912 NON-UNIQUE FTS_DOC_ID index mistaken as FTS_DOC_ID_INDEX

- InnoDB mistakenly identifies the non-unique FTS_DOC_ID index as
FTS_DOC_ID_INDEX while loading the table. dict_load_indexes()
should check whether the index is unique before assigning
fts_doc_id_index

7c35ad1... by Marko Mäkelä

MDEV-28389 fixup: Fix pre-GCC 10 -Wconversion

Before version 10, GCC would think that a right shift of an
unsigned char returns int. Let us explicitly cast that back,
to silence a bogus -Wconversion warning.