Skip to content

Tags: blaze2012/server

Tags

mariadb-10.3.3

Toggle mariadb-10.3.3's commit message
Initialize MYSQL_LOCK->flags variable

This could crash in mysql_unlock_tables in servers compiled with DBUG

mariadb-10.1.30

Toggle mariadb-10.1.30's commit message
Make a test more robust

Sometimes, the test would fail with a result difference for
the READ UNCOMMITTED read, because the incremental backup
would finish before redo log was written for all the rows
that were inserted in the second batch.

To fix that, cause a redo log write by creating another
transaction. The transaction rollback (which internally does commit)
will be flushed to the redo log, and before that, all the preceding
changes will be flushed to the redo log as well.

mariadb-10.2.11

Toggle mariadb-10.2.11's commit message
Additions to the list of unstable tests for 10.2.11

mariadb-10.1.29

Toggle mariadb-10.1.29's commit message
MDEV-14205 Windows : fix race condition writing into error log and se…

…tvbuf

Do not do reopen_fstreams/setbuf twice during server startup on Windows.
fprintf(stderr,..) might crash, if setbuf is executed at the same time.

mariadb-galera-10.0.33

Toggle mariadb-galera-10.0.33's commit message
MW-388

Test uses now debug and debug_sync.

mariadb-10.2.10

Toggle mariadb-10.2.10's commit message
Add a missing space to an error message

mariadb-10.0.33

Toggle mariadb-10.0.33's commit message
List of unstable tests for 10.0.33 release

mariadb-galera-5.5.58

Toggle mariadb-galera-5.5.58's commit message
Fix test failure on perfschema.all_instances.

mariadb-5.5.58

Toggle mariadb-5.5.58's commit message
Bug#26361149 MYSQL SERVER CRASHES AT: COL IN(IFNULL(CONST, COL), NAME…

…_CONST('NAME', NULL))

based on:

commit f7316aa
Author: Ajo Robert <ajo.robert@oracle.com>
Date:   Thu Aug 24 17:03:21 2017 +0530

    Bug#26361149  MYSQL SERVER CRASHES AT: COL IN(IFNULL(CONST,
                           COL), NAME_CONST('NAME', NULL))

    Backport of Bug#19143243 fix.

    NAME_CONST item can return NULL_ITEM type in case of incorrect arguments.
    NULL_ITEM has special processing in Item_func_in function.
    In Item_func_in::fix_length_and_dec an array of possible comparators is
    created. Since NAME_CONST function has NULL_ITEM type, corresponding
    array element is empty. Then NAME_CONST is wrapped to ITEM_CACHE.
    ITEM_CACHE can not return proper type(NULL_ITEM) in Item_func_in::val_int(),
    so the NULL_ITEM is attempted compared with an empty comparator.
    The fix is to disable the caching of Item_name_const item.

mariadb-10.3.2

Toggle mariadb-10.3.2's commit message
fixes for --embedded