maria:bb-11.0-mdev-28992

Last commit made on 2024-04-26
Get this branch:
git clone -b bb-11.0-mdev-28992 https://git.launchpad.net/maria

Branch merges

Branch information

Name:
bb-11.0-mdev-28992
Repository:
lp:maria

Recent commits

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

MDEV-28992 Spider group by handler: Push down TIMESTAMPDIFF function

The macro ITEM_FUNC_TIMESTAMPDIFF_ARE_PUBLIC was removed in a previous
commit (1128b54aa4577da7e31c739ad9601bb11d476c72). We do not revert it
separately because it is too old and it is cleaner to "squash" the
changes here.

Similar to pr#2225, with the testcase adapted from that patch:

--8<---------------cut here---------------start------------->8---
From 884f7c6df16236748ca975339e0b1c267e195309 Mon Sep 17 00:00:00 2001
From: "Norio Akagi (norakagi)" <email address hidden>
Date: Wed, 3 Aug 2022 23:30:34 -0700
Subject: [PATCH] [MDEV-28992] Push down TIMESTAMP_DIFF in spider

This changes so that TIMESTAMP_DIFF function in a query is pushed down and works natively in Spider.
Instead of directly accessing item's member, now we can rely on a public accessor method to make it work.
Unit tests are added under spider.pushdown_timestamp_diff.

All new code of the whole pull request, including one or several files
that are either new files or modified ones, are contributed under the
BSD-new license. I am contributing on behalf of my employer
Amazon Web Services, Inc.
--8<---------------cut here---------------end--------------->8---

a43f82f... by Oleksandr "Sanja" Byelkin

Merge branch 'bb-10.11-release' into bb-11.0-release

# Conflicts:
# mysql-test/main/ssl_timeout.test
# sql/sql_parse.cc
# storage/archive/ha_archive.cc
# storage/innobase/btr/btr0btr.cc
# storage/innobase/btr/btr0cur.cc
# storage/innobase/buf/buf0buf.cc
# storage/innobase/ibuf/ibuf0ibuf.cc
# storage/spider/spd_db_mysql.cc
# storage/spider/spd_sys_table.cc

581976a... by Oleksandr "Sanja" Byelkin

Merge branch '10.6' into 10.11

8c79921... by Brandon Nesterenko

MDEV-33672: 10.11 Fix for Two Phase Alter Flags

Extends 89c907bd4f713b77e248f7c8e6247b5f3be18fb4 to account for
binlog_two_phase_alter flags in a Gtid log event. I.e., if the
FL_COMMIT_ALTER_E1 or FL_ROLLBACK_ALTER_E2 flags are set in the
event flags, yet the length of the event is too short to hold
the value, then set the event as invalid

720a0f6... by Marko Mäkelä

MDEV-33447 fixup for POWER 8

pmem_phwsync(): The implementation for POWER ISA v3.1 that is
compatible with libpmem.

pmem_fence(): A dummy implementation for older ISA. While such systems
are unlikely to support MAP_SYNC memory mappings, this could be useful
when running tests with memory-mapped /dev/shm/*/ib_logfile0
(the "fake PMEM"), to ensure that mariadb-backup will be able to
read the latest redo log contents.

pmem_persist_init(): Check the availability of POWER ISA v3.1.
Thanks to Daniel Black for suggesting this.

fb9af3f... by mscdex

fix build with WITH_EXTRA_CHARSETS=none in cmake

0ccdf54... by Monty <email address hidden>

Check and remove high stack usage

I checked all stack overflow potential problems found with
gcc -Wstack-usage=16384
and
clang -Wframe-larger-than=16384 -no-inline

Fixes:
Added '#pragma clang diagnostic ignored "-Wframe-larger-than="'
  to a lot of function to where stack usage large but resonable.
- Added stack check warnings to BUILD scrips when using clang and debug.

Function changed to use malloc instead allocating things on stack:
- read_bootstrap_query() now allocates line_buffer (20000 bytes) with
  malloc() instead of using stack. This has a small performance impact
  but this is not releant for bootstrap.
- mroonga grn_select() used 65856 bytes on stack. Changed it to use
  malloc().
- Wsrep_schema::replay_transaction() and
  Wsrep_schema::recover_sr_transactions().
- Connect zipOpen3()

Not fixed:
- mroonga/vendor/groonga/lib/expr.c grn_proc_call() uses
  43712 byte on stack. However this is not easy to fix as the stack
  used is caused by a lot of code generated by defines.
- Most changes in mroonga/groonga where only adding of pragmas to disable
  stack warnings.
- rocksdb/options/options_helper.cc uses 20288 of stack space.
  (no reason to fix except to get rid of the compiler warning)
- Causes using alloca() where the allocation size is resonable.
- An issue in libmariadb (reported to connectors).

c3460e6... by THIRUNARAYANAN BALATHANDAYUTHAPANI

MDEV-33970 Assertion `!m.first->second.is_bulk_insert()' failed in trx_undo_report_row_operation()

In case of partition insert, InnoDB fails to end the bulk insert
for one of the partition. It leads to bulk insert operation for
the consecutive delete statement.

trx_t::bulk_insert_apply_for_table(): Irrespective of bulk insert
value, InnoDB should end the bulk insert for the table.

07faba0... by Marko Mäkelä

MDEV-27924 fixup: cmake -DWITH_INNODB_EXTRA_DEBUG=ON

455a15f... by Marko Mäkelä

MDEV-33972: Memory corruption in innodb.insert_into_empty

trx_t::bulk_insert_apply_for_table(dict_table_t *table):
Do not write through an invalid iterator.
This fixes up commit 863f5996f25eadea6349f0133ad56f3f40e6d6af (MDEV-33868).