mariadb/sql
Marko Mäkelä 3cac3539cb MDEV-29445: Reimplement SET GLOBAL innodb_buffer_pool_size
We deprecate and ignore the parameter innodb_buffer_pool_chunk_size
and let the buffer pool size to be changed in arbitrary 1-megabyte
increments, all the way up to innodb_buffer_pool_size_max,
which must be specified at startup.

If innodb_buffer_pool_size_max is 0 or not specified, it will default
to the specified innodb_buffer_pool_size.  The maximum allowed value
for both parameters will be 4GiB-2MiB on 32-bit systems and
16EiB-8MiB on 64-bit systems.  This maximum is very likely to be
limited further by the operating system.

The status variable innodb_buffer_pool_resize_status will reflect
the status of shrinking the buffer pool. When no shrinking is in
progress, the string will be empty.

This was tested with the non-default --large-pages setting
only on Linux so far.  On Linux, HugeTLB mappings are apparently
not included in the reported Redident Set Size (RSS), and it is
apparently not possible to shrink the size of a HugeTLB mapping.
Therefore, SET GLOBAL innodb_buffer_pool_size will be refused
if the server was started on Linux with --large-pages (even if
no HugeTLB pages were successfully allocated).

The buffer pool will be mapped in a contiguous memory area that
will be aligned and partitioned into extents of 8 MiB on 64-bit systems
and 2 MiB on 32-bit systems.

Within an extent, the first few innodb_page_size blocks contain
buf_block_t objects that will cover the page frames in the rest
of the extent. In this way, there is a trivial mapping between
page frames and block descriptors and we do not need any
lookup tables like buf_pool.zip_hash or buf_pool_t::chunk_t::map.

We will always allocate the same number of block descriptors for
an extent, even if we do not need all the buf_block_t in the last
extent in case the innodb_buffer_pool_size is not an integer multiple
of the of extents size.

The minimum innodb_buffer_pool_size is 256*5/4 pages. At the default
innodb_page_size=16k this corresponds to 5 MiB. However, now that the
innodb_buffer_pool_size includes the memory allocated for the block
descriptors, the minimum would be innodb_buffer_pool_size=6m.

When the buffer pool is shrunk, InnoDB will try to inform the operating
system that the underlying memory for part of the virtual address range
is no longer needed and may be zeroed out. On many POSIX-like systems this
is done by madvise(MADV_DONTNEED) where available (Linux, FreeBSD, NetBSD,
OpenBSD, Dragonfly BSD, IBM AIX, Apple macOS). On Microsoft Windows,
VirtualFree(MEM_DECOMMIT) is invoked. On many systems, there is also
MADV_FREE, which would be a deferred variant of MADV_DONTNEED, not freeing
the virtual memory mapping immediately. We prefer immediate freeing so
that the resident set size of the process will reflect the current
innodb_buffer_pool_size. Shrinking the buffer pool is a rarely executed
intensive operation, and the immediate configuration of the MMU mappings
should not incur significant additional penalty.

Innodb_buffer_pool_resize_status: Remove. We will execute
buf_pool_t::resize() synchronously in the thread that is executing
SET GLOBAL innodb_buffer_pool_size. That operation will run until
it completes, or until a KILL statement is executed, the client
is disconnected, the buf_flush_page_cleaner() thread notices that
we are running out of memory, or the server is shut down.

opt_super_large_pages: Declare only on Solaris. Actually, this is
specific to the SPARC implementation of Solaris, but because we
lack access to a Solaris development environment, we will not revise
this for other MMU and ISA.

my_large_virtual_alloc(): A new function, similar to my_large_malloc().
On Microsoft Windows, buffer pool resizing is disabled if large pages
are being used.

my_virtual_mem_reserve(), my_virtual_mem_commit(),
my_virtual_mem_decommit(), my_virtual_mem_release():
New interface by Vladislav Vaintroub to separately reserve and release
virtual address space, as well as to commit and decommit memory within it.
The deferred commit after allocation works on Linux (large_pages=OFF)
and Microsoft Windows.

buf_pool_t::chunk_t::create(): Remove.

buf_pool_t::create(): Initialize all n_blocks of the buf_pool.free list.

buf_pool_t::allocate(): Renamed from buf_LRU_get_free_only().

buf_pool_t::LRU_warned: Changed to Atomic_relaxed<bool>,
only to be modified by the buf_flush_page_cleaner() thread.

buf_pool_t::shrink(): Attempt to shrink the buffer pool.
There are 3 possible outcomes: SHRINK_DONE (success),
SHRINK_IN_PROGRESS (the caller may keep trying),
and SHRINK_ABORT (we seem to be running out of buffer pool).
While traversing buf_pool.LRU, release the contended
buf_pool.mutex once in every 32 iterations in order to
reduce starvation. Use lru_scan_itr for efficient traversal,
similar to buf_LRU_free_from_common_LRU_list().

buf_pool_t::resize(): Before invoking shrink(), run one batch of
buf_flush_page_cleaner() in order to prevent LRU_warn().
Abort if shrink() recommends it, or no blocks were withdrawn in
the past 15 seconds, or the execution of the statement
SET GLOBAL innodb_buffer_pool_size was interrupted.

buf_pool_t::first_to_withdraw: The first block descriptor that is
out of the bounds of the shrunk buffer pool.

buf_pool_t::withdrawn: The list of withdrawn blocks.
If buf_pool_t::resize() is aborted before shrink() completes,
we must be able to resurrect the withdrawn blocks in the free list.

buf_pool_t::contains_zip(): Added a parameter for the
number of least significant pointer bits to disregard,
so that we can find any pointers to within a block
that is supposed to be free.

buf_pool_t::is_shrinking(): Return the total number or blocks that
were withdrawn or are to be withdrawn.

buf_pool_t::to_withdraw(): Return the number of blocks that will need to
be withdrawn.

buf_pool_t::usable_size(): Number of usable pages, considering possible
in-progress attempt at shrinking the buffer pool.

buf_pool_t::page_guess(): Try to buffer-fix a guessed block pointer.

buf_pool_t::get_info(): Replaces buf_stats_get_pool_info().

innodb_init_param(): Refactored. We must first compute
srv_page_size_shift and then determine the valid bounds of
innodb_buffer_pool_size.

buf_buddy_shrink(): Replaces buf_buddy_realloc().
Part of the work is deferred to buf_buddy_condense_free(),
which is being executed when we are not holding any
buf_pool.page_hash latch.

buf_buddy_condense_free(): Do not relocate blocks.

buf_buddy_free_low(): Do not care about buffer pool shrinking.
This will be handled by buf_buddy_shrink() and
buf_buddy_condense_free().

buf_buddy_alloc_zip(): Assert !buf_pool.contains_zip()
when we are allocating from the binary buddy system.
Previously we were asserting this on multiple recursion levels.

buf_buddy_block_free(), buf_buddy_free_low():
Assert !buf_pool.contains_zip().

buf_buddy_alloc_from(): Remove the redundant parameter j.

buf_flush_LRU_list_batch(): Add the parameter to_withdraw
to keep track of buf_pool.n_blocks_to_withdraw.

buf_do_LRU_batch(): Skip buf_free_from_unzip_LRU_list_batch()
if we are shrinking the buffer pool. In that case, we want
to minimize the page relocations and just finish as quickly
as possible.

trx_purge_attach_undo_recs(): Limit purge_sys.n_pages_handled()
in every iteration, in case the buffer pool is being shrunk
in the middle of a purge batch.

Reviewed by: Debarun Banerjee
2025-03-19 13:10:37 +02:00
..
share Merge branch '10.6' into 10.11 2025-01-10 13:14:42 +01:00
add_errmsg
authors.h Add Daniel Black to authors 2020-04-08 14:51:14 +04:00
backup.cc MDEV-33211 : Galera SST on maria-backup causes donor node to be unresponsive 2024-02-27 20:55:54 +02:00
backup.h MDEV-18465 Logging of DDL statements during backup 2021-05-19 22:54:13 +02:00
bounded_queue.h MDEV-34348: Consolidate cmp function declarations 2024-11-23 08:14:22 -07:00
client_settings.h Merge 10.1 into 10.2 2019-05-13 17:54:04 +03:00
CMakeLists.txt MDEV-33091 pcre2 headers aren't found on Solaris 2024-09-05 12:14:06 +10:00
compat56.cc Merge branch '10.3' into 10.4 2020-08-03 14:44:06 +02:00
compat56.h Fix all warnings given by UBSAN 2021-04-20 12:30:09 +03:00
contributors.h Update sponsors 2024-08-12 09:32:30 +01:00
create_options.cc Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
create_options.h Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
create_tmp_table.h MDEV-17399 JSON_TABLE. 2021-04-21 10:21:47 +04:00
cset_narrowing.cc MDEV-32113: utf8mb3_key_col=utf8mb4_value cannot be used for ref 2023-10-19 17:24:30 +03:00
cset_narrowing.h MDEV-32113: utf8mb3_key_col=utf8mb4_value cannot be used for ref 2023-10-19 17:24:30 +03:00
custom_conf.h MDEV-25602 get rid of __WIN__ in favor of standard _WIN32 2021-06-06 13:21:03 +02:00
datadict.cc Merge 10.5 into 10.6 2022-04-06 12:08:30 +03:00
datadict.h MDEV-18465 Logging of DDL statements during backup 2021-05-19 22:54:13 +02:00
ddl_log.cc Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
ddl_log.h Revert MDEV-25292 Atomic CREATE OR REPLACE TABLE 2022-10-27 23:13:41 +02:00
debug.cc Merge 10.5 into 10.6 2024-01-17 13:35:05 +02:00
debug.h Move debug_crash_here to it's own source files 2021-05-19 22:54:13 +02:00
debug_sync.cc Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
debug_sync.h Move debug_crash_here to it's own source files 2021-05-19 22:54:13 +02:00
derived_handler.cc MDEV-29284 ANALYZE doesn't work with pushed derived tables 2023-07-07 15:15:24 +07:00
derived_handler.h Apply clang-tidy to remove empty constructors / destructors 2023-02-09 16:09:08 +02:00
derror.cc MDEV-30810 errmsg-utf8.txt no longer uses charsets 2023-03-10 08:53:58 +11:00
derror.h Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
des_key_file.cc openssl: add a more specific DES support detection 2024-04-30 23:09:02 +10:00
des_key_file.h openssl: add a more specific DES support detection 2024-04-30 23:09:02 +10:00
discover.cc Merge 10.6 into 10.7 2022-03-14 11:30:32 +02:00
discover.h Merge branch '10.4' into 10.5 2023-01-27 13:54:14 +01:00
encryption.cc Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
event_data_objects.cc Merge 10.5 into 10.6 2024-06-24 13:09:47 +03:00
event_data_objects.h MDEV-33746 Supply missing override markings 2024-06-20 11:32:13 -04:00
event_db_repository.cc Merge 10.9 into 10.10 2023-06-27 17:43:31 +03:00
event_db_repository.h Apply clang-tidy to remove empty constructors / destructors 2023-02-09 16:09:08 +02:00
event_parse_data.cc Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
event_parse_data.h Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
event_queue.cc Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
event_queue.h Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
event_scheduler.cc Merge branch '10.5' into 10.6 2024-10-29 14:20:03 +01:00
event_scheduler.h Update FSF Address 2019-05-11 21:29:06 +03:00
events.cc Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
events.h perfschema memory related instrumentation changes 2020-03-10 19:24:22 +01:00
field.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
field.h Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
field_comp.cc MDEV-21348 - column compression memory leak 2020-04-02 00:57:00 +04:00
field_comp.h
field_conv.cc Merge branch '10.5' into 10.6 2025-01-29 11:17:38 +01:00
filesort.cc Merge 10.5 into 10.6 2025-01-20 09:57:37 +02:00
filesort.h Merge branch '10.5' into 10.6 2023-12-17 11:20:43 +01:00
filesort_utils.cc Merge 10.4 into 10.5 2020-07-15 14:51:22 +03:00
filesort_utils.h MDEV-34348: Consolidate cmp function declarations 2024-11-23 08:14:22 -07:00
gcalc_slicescan.cc Merge 10.6 into 10.11 2024-05-30 16:04:00 +03:00
gcalc_slicescan.h Apply clang-tidy to remove empty constructors / destructors 2023-02-09 16:09:08 +02:00
gcalc_tools.cc enable -Wenum-compare -Wenum-conversion 2022-05-15 20:37:51 +02:00
gcalc_tools.h MDEV-33746 Supply missing override markings 2024-06-20 11:32:13 -04:00
gen_lex_hash.cc gen_lex_hash: Omit deprecated register keywords 2019-07-23 15:23:27 +03:00
gen_lex_token.cc followup: rename generated files to have distinct names 2021-05-27 00:40:23 +02:00
gen_win_tzname_data.ps1 Update timezone data on Windows 2021-04-22 15:51:55 +02:00
gen_yy_files.cmake MDEV-21286: bison warnings on ubuntu 20.04 on deprecated directive in sql_yacc.yy 2021-09-22 07:27:02 +02:00
grant.cc MDEV-21702 Add a data type for privileges 2020-02-11 08:10:26 +04:00
grant.h MDEV-21702 Add a data type for privileges 2020-02-11 08:10:26 +04:00
group_by_handler.cc cleanup: Refactor select_limit in select lex 2021-04-21 14:08:58 +03:00
group_by_handler.h MDEV-26345 Spider GBH should execute original queries on the data node 2024-10-15 15:36:12 +11:00
gstream.cc perfschema memory related instrumentation changes 2020-03-10 19:24:22 +01:00
gstream.h Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
ha_handler_stats.h MDEV-34251 Conditional jump or move depends on uninitialised value in ha_handler_stats::has_stats 2024-10-03 13:45:26 +03:00
ha_partition.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
ha_partition.h Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
ha_sequence.cc MDEV-32350 Can't selectively restore sequences using innodb tables from backup 2024-10-16 17:24:46 +03:00
ha_sequence.h Merge branch '10.5' into 10.6 2024-10-29 14:20:03 +01:00
handle_connections_win.cc Fix clang-cl warning 2021-05-09 23:51:18 +02:00
handle_connections_win.h MDEV-23279 main.named_pipe test timeouts if called twice in a row 2020-08-10 17:33:48 +00:00
handler.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
handler.h Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
hash_filo.cc MDEV-25602 get rid of __WIN__ in favor of standard _WIN32 2021-06-06 13:21:03 +02:00
hash_filo.h Merge 10.4 into 10.5 2023-02-10 12:02:11 +02:00
hostname.cc Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
hostname.h Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
init.cc Merge branch '10.3' into 10.4 2019-05-19 20:55:37 +02:00
init.h Merge branch '10.3' into 10.4 2019-05-19 20:55:37 +02:00
innodb_priv.h Merge branch '10.3' into 10.4 2019-05-19 20:55:37 +02:00
item.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
item.h Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
item_buff.cc Apply clang-tidy to remove empty constructors / destructors 2023-02-09 16:09:08 +02:00
item_cmpfunc.cc Merge 10.6 -> 10.11 2024-12-05 10:11:58 +01:00
item_cmpfunc.h Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
item_create.cc Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
item_create.h Merge 10.6 -> 10.11 2024-12-05 10:11:58 +01:00
item_func.cc Merge 10.6 into 10.11 2025-01-08 12:51:26 +02:00
item_func.h Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
item_geofunc.cc Merge branch '10.6' into '10.11' 2025-02-02 23:17:20 +01:00
item_geofunc.h Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
item_jsonfunc.cc Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
item_jsonfunc.h Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
item_row.cc Merge branch '10.5' into 10.6 2024-07-16 15:54:22 +08:00
item_row.h Merge branch '10.5' into 10.6 2024-07-16 15:54:22 +08:00
item_strfunc.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
item_strfunc.h Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
item_subselect.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
item_subselect.h Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
item_sum.cc Merge branch '10.6' into 10.11 2025-01-10 13:14:42 +01:00
item_sum.h Merge branch '10.6' into 10.11 2025-01-10 13:14:42 +01:00
item_timefunc.cc Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
item_timefunc.h Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
item_vers.cc MDEV-34123 CONCAT Function Returns Unexpected Empty Set in Query 2024-10-08 11:58:46 +02:00
item_vers.h Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
item_windowfunc.cc MDEV-23479: Add a THD* argument to Item_func_or_sum::fix_length_and_dec() 2022-03-30 17:00:17 +05:30
item_windowfunc.h Merge branch '10.6' into 10.11 2024-07-22 15:14:50 +02:00
item_xmlfunc.cc Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
item_xmlfunc.h Merge branch '10.6' into 10.11 2024-07-22 15:14:50 +02:00
json_table.cc Merge 10.6 into 10.11 2024-10-03 10:55:08 +03:00
json_table.h Merge 10.6 into 10.11 2024-10-03 10:55:08 +03:00
key.cc Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
key.h MDEV-34348: Consolidate cmp function declarations 2024-11-23 08:14:22 -07:00
keycaches.cc MDEV-33746 Supply missing override markings 2024-06-20 11:32:13 -04:00
keycaches.h Merge 10.2 into 10.3 2019-10-18 09:05:27 +03:00
lex.h MDEV-31768: Alias MASTER_DEMOTE_TO_REPLICA for MASTER_DEMOTE_TO_SLAVE 2024-02-13 14:00:42 +11:00
lex_charset.cc MDEV-27009 Add UCA-14.0.0 collations 2022-08-10 15:04:24 +02:00
lex_charset.h MDEV-34288 SET NAMES DEFAULT crashes mariadbd --collation-server=utf8mb4_unicode_ci 2024-06-04 12:38:43 +04:00
lex_ident.h Backporting bugs fixes fixed by MDEV-31340 from 11.5 2024-05-21 14:58:01 +04:00
lex_string.h MDEV-30662 SQL/PL package body does not appear in I_S.ROUTINES.ROUTINE_DEFINITION 2023-07-14 13:26:26 +04:00
lex_symbol.h Update FSF Address 2019-05-11 21:29:06 +03:00
lock.cc Merge branch '10.6' into 10.10 2023-11-08 16:23:30 +01:00
lock.h MDEV-17554 Auto-create new partition for system versioned tables with history partitioned by INTERVAL/LIMIT 2022-05-06 15:11:02 +03:00
log.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
log.h Merge 10.6 into 10.11 2024-06-27 10:26:09 +03:00
log_event.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
log_event.h Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
log_event_client.cc Merge 10.6 into 10.11 2025-01-08 12:51:26 +02:00
log_event_data_type.h MDEV-27666 User variable not parsed as geometry variable in geometry function 2024-01-16 18:53:23 +04:00
log_event_old.cc Merge 10.6 into 10.11 2024-06-27 10:26:09 +03:00
log_event_old.h Merge 10.5 into 10.6 2024-06-24 13:09:47 +03:00
log_event_server.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
log_slow.h MDEV-32203 Raise notes when an index cannot be used on data type mismatch 2023-10-03 08:25:31 +03:00
main.cc Windows - Fix CMAKE_INTERPROCEDURAL_OPTIMIZATION build with MSVC 2021-05-09 23:51:18 +02:00
mariadb.h
mdl.cc Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
mdl.h Added Lock_time_ms and Table_catalog columns to metadata_lock_info 2024-07-03 13:20:33 +03:00
mem_root_array.h Merge branch '10.3' into 10.4 2019-05-19 20:55:37 +02:00
message.h Update FSF Address 2019-05-11 21:29:06 +03:00
message.mc MDEV-19068 - rename eventlog source to MariaDB. 2019-03-29 16:50:38 +01:00
message.rc MDEV-19068 - rename eventlog source to MariaDB. 2019-03-29 16:50:38 +01:00
mf_iocache.cc MDEV-25602 get rid of __WIN__ in favor of standard _WIN32 2021-06-06 13:21:03 +02:00
mf_iocache_encr.cc MDEV-34921 MemorySanitizer reports errors for non-debug builds 2024-09-13 14:34:08 +03:00
MSG00001.bin MDEV-19068 - rename eventlog source to MariaDB. 2019-03-29 16:50:38 +01:00
multi_range_read.cc Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
multi_range_read.h MDEV-34348: Consolidate cmp function declarations 2024-11-23 08:14:22 -07:00
my_apc.cc Merge branch '10.6' into 10.10 2023-11-08 16:23:30 +01:00
my_apc.h MDEV-32728: Wrong mutex usage 'LOCK_thd_data' and 'wait_mutex' 2023-11-08 14:50:43 +01:00
my_decimal.cc Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
my_decimal.h Added typedef decimal_digits_t (uint16) for number of digits in most 2021-05-19 22:27:27 +02:00
my_json_writer.cc Merge 10.6 into 10.11 2024-05-30 16:04:00 +03:00
my_json_writer.h Merge 10.6 into 10.8 2023-02-10 13:43:53 +02:00
myskel.m4.in Backport "Fix generation of bison output for out-of-source builds."to 10.5 2021-09-11 00:23:14 +02:00
mysql_install_db.cc MDEV-29445: Reimplement SET GLOBAL innodb_buffer_pool_size 2025-03-19 13:10:37 +02:00
mysql_upgrade_service.cc Merge branch 'preview-10.8-MDEV-26713-Windows-i18-support' into 10.8 2022-01-18 21:37:52 +01:00
mysqld.cc MDEV-29445: Reimplement SET GLOBAL innodb_buffer_pool_size 2025-03-19 13:10:37 +02:00
mysqld.h Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
mysqld_suffix.h Update FSF Address 2019-05-11 21:29:06 +03:00
net_serv.cc MDEV-34799: "Could not write packet" err message args off by 1 2024-08-22 13:02:23 -06:00
opt_histogram_json.cc Merge 10.6 into 10.10 2023-10-14 13:36:11 +03:00
opt_histogram_json.h Merge 10.6 into 10.10 2023-10-14 13:36:11 +03:00
opt_index_cond_pushdown.cc Remove not used IPC_COND_USED_INDEX 2021-05-19 22:54:14 +02:00
opt_range.cc MDEV-36118 Fix wrong result with MAX in loose index scan 2025-03-11 15:29:05 +11:00
opt_range.h MDEV-34620: Lots of index_merge created and discarded for many-way OR 2025-02-27 15:29:42 +02:00
opt_range_mrr.cc MDEV-26996 Reverse-ordered indexes: remove SEL_ARG::is_ascending 2022-01-26 18:43:06 +01:00
opt_split.cc Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
opt_subselect.cc Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
opt_subselect.h Merge 10.4 into 10.5 2022-06-09 12:22:55 +03:00
opt_sum.cc Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
opt_table_elimination.cc Merge 10.6 into 10.11 2024-06-27 10:26:09 +03:00
opt_trace.cc Merge 10.5 into 10.6 2024-01-17 13:35:05 +02:00
opt_trace.h MDEV-27306: SET STATEMENT optimizer_trace=1 Doesn't save the trace 2021-12-19 17:19:02 +03:00
opt_trace_context.h Fixes for previous not-complete-push 2020-03-09 14:53:35 +02:00
parse_file.cc Merge branch '10.5' into 10.6 2022-10-02 22:14:21 +02:00
parse_file.h Merge 10.5 into 10.6 2024-06-24 13:09:47 +03:00
partition_element.h Merge 10.6 into 10.8 2023-02-10 13:43:53 +02:00
partition_info.cc Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
partition_info.h MDEV-29873 MSAN uninitialized value errors in bcmp / 2023-07-27 19:43:45 +03:00
password.c Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
plistsort.c imporve clang build 2019-06-25 13:21:36 +03:00
privilege.h Merge branch '10.10' into 10.11 2022-11-02 13:08:01 +01:00
procedure.cc Don't reset StringBuffers in loops when not needed 2021-05-19 22:54:11 +02:00
procedure.h Merge branch '10.5' into 10.6 2024-07-16 15:54:22 +08:00
protocol.cc Merge branch '10.6' into 10.11 2023-12-18 11:19:04 +01:00
protocol.h Merge branch '10.6' into 10.11 2023-12-18 11:19:04 +01:00
proxy_protocol.cc perfschema memory related instrumentation changes 2020-03-10 19:24:22 +01:00
proxy_protocol.h
records.cc Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
records.h Merge 10.5 into 10.6 2020-08-12 14:39:53 +03:00
repl_failsafe.cc Merge 10.5 into 10.6 2024-06-24 13:09:47 +03:00
repl_failsafe.h Merge branch '10.3' into 10.4 2019-05-19 20:55:37 +02:00
replication.h Fix trivial spelling errors 2023-03-24 12:54:05 +11:00
rowid_filter.cc MDEV-34348: Consolidate cmp function declarations 2024-11-23 08:14:22 -07:00
rowid_filter.h Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
rpl_constants.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_filter.cc Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
rpl_filter.h Merge branch '10.6' into 10.11 2024-07-22 15:14:50 +02:00
rpl_gtid.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
rpl_gtid.h Merge 10.6 into 10.11 2024-06-27 10:26:09 +03:00
rpl_injector.cc Merge 10.4 into 10.5 2023-02-10 12:02:11 +02:00
rpl_injector.h Merge 10.4 into 10.5 2023-02-10 12:02:11 +02:00
rpl_mi.cc Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
rpl_mi.h Merge branch '10.6' into 10.11 2024-02-01 18:36:14 +01:00
rpl_parallel.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
rpl_parallel.h MDEV-35465 Async replication stops working on Galera async replica node when parallel replication is enabled 2024-12-03 15:05:32 +01:00
rpl_record.cc MDEV-29613 Improve WITH_DBUG_TRACE=OFF 2022-09-23 13:40:42 +03:00
rpl_record.h Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
rpl_record_old.cc Revert "MDEV-20342 Turn Field::flags from a member to a method" 2019-08-14 20:27:00 +04:00
rpl_record_old.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_reporting.cc MDEV-20220: Merge 5.7 P_S replication table 'replication_applier_status_by_worker 2021-04-08 17:19:51 +05:30
rpl_reporting.h rpl_reporting: sprintf -> snprintf 2023-03-24 12:04:16 +11:00
rpl_rli.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
rpl_rli.h Merge branch '10.5' into 10.6 2024-05-08 20:06:00 +02:00
rpl_tblmap.cc cleanup: PSI key is *always* the first argument 2020-03-10 19:24:23 +01:00
rpl_tblmap.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
rpl_utility.cc Vanilla cleanups and refactorings 2021-10-26 17:07:46 +02:00
rpl_utility.h MDEV-19710 Split the server side code in rpl_utility.cc into virtual methods in Type_handler 2019-06-07 12:47:24 +04:00
rpl_utility_server.cc MDEV-27018 IF and COALESCE lose "json" property 2022-01-21 19:28:48 +04:00
scheduler.cc Change connection_count back to static 2021-06-01 13:53:16 +10:00
scheduler.h Change connection_count back to static 2021-06-01 13:53:16 +10:00
select_handler.cc Added detection of memory overwrite with multi_malloc 2023-02-27 19:25:44 +02:00
select_handler.h Apply clang-tidy to remove empty constructors / destructors 2023-02-09 16:09:08 +02:00
semisync.cc Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
semisync.h Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
semisync_master.cc MDEV-35430: Add cast to semi-sync wait skip msg 2025-01-13 13:57:46 +11:00
semisync_master.h MDEV-34122: Assertion `entry' failed in Active_tranx::assert_thd_is_waiter 2024-10-21 15:35:54 -06:00
semisync_master_ack_receiver.cc Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
semisync_master_ack_receiver.h MDEV-33582 Add more warnings to be able to better diagnose network issues 2024-03-05 20:19:49 +02:00
semisync_slave.cc Merge 10.6 into 10.11 2024-03-28 09:16:57 +02:00
semisync_slave.h MDEV-32551: "Read semi-sync reply magic number error" warnings on master 2024-01-23 13:03:11 +02:00
service_wsrep.cc Merge branch '10.5' into 10.6 2025-01-29 11:17:38 +01:00
session_tracker.cc Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
session_tracker.h MDEV-34348: my_hash_get_key fixes 2024-11-23 08:14:22 -07:00
set_var.cc Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
set_var.h MDEV-34770 GCC warning fix 2024-12-04 18:22:31 +03:00
signal_handler.cc Merge branch '10.5' into '10.6' 2024-12-13 01:45:35 +01:00
slave.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
slave.h Merge branch '10.3' into 10.4 2023-05-02 10:09:27 +02:00
socketpair.c Added socketpair.c as a replacement for 'pipe()' call for Windows. 2024-01-23 13:03:11 +02:00
socketpair.h Added socketpair.c as a replacement for 'pipe()' call for Windows. 2024-01-23 13:03:11 +02:00
sp.cc Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
sp.h Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
sp_cache.cc MDEV-34348: my_hash_get_key fixes 2024-11-23 08:14:22 -07:00
sp_cache.h Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
sp_head.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sp_head.h Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sp_pcontext.cc perfschema memory related instrumentation changes 2020-03-10 19:24:22 +01:00
sp_pcontext.h Merge branch '10.5' into 10.6 2023-11-08 15:57:05 +01:00
sp_rcontext.cc MDEV-28963 Incompatible data type assignment through SP vars is not consistent with columns 2022-06-27 19:52:48 +04:00
sp_rcontext.h fix RESIGNAL to save and pass the m_row_count too 2021-10-26 17:29:40 +02:00
spatial.cc Merge 10.5 into 10.6 2022-12-13 16:58:58 +02:00
spatial.h Merge 10.5 into 10.6 2024-06-24 13:09:47 +03:00
sql_acl.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_acl.h Merge branch '10.6' into 10.11 2025-01-10 13:14:42 +01:00
sql_acl_getsort.inl Merge 10.5 -> 10.6 2024-12-05 09:20:36 +01:00
sql_admin.cc Merge branch '10.6' into 10.11 2024-07-22 15:14:50 +02:00
sql_admin.h Merge 10.5 into 10.6 2024-06-24 13:09:47 +03:00
sql_alloc.h Optimize Sql_alloc 2021-05-19 22:27:27 +02:00
sql_alter.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_alter.h Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_analyse.cc Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
sql_analyse.h Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
sql_analyze_stmt.cc MDEV-27021 Add explicit indication of SHOW EXPLAIN/ANALYZE. 2022-04-29 10:48:25 +03:00
sql_analyze_stmt.h Merge 10.6 into 10.9 2023-07-10 11:22:21 +03:00
sql_array.h Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
sql_audit.cc Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
sql_audit.h Merge 10.4 into 10.5 2021-08-18 18:22:35 +03:00
sql_base.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_base.h Merge 10.6 into 10.11 2025-01-08 12:51:26 +02:00
sql_basic_types.h don't show DBUG_ASSERT to plugins 2021-06-11 13:02:55 +02:00
sql_binlog.cc Merge 10.6 into 10.11 2024-01-18 19:22:23 +02:00
sql_binlog.h Update FSF Address 2019-05-11 21:29:06 +03:00
sql_bitmap.h Merge 10.4 into 10.5 2023-02-10 12:02:11 +02:00
sql_bootstrap.cc Check and remove high stack usage 2024-04-23 14:12:31 +03:00
sql_bootstrap.h MDEV-28701 Update Server HELP 2022-08-02 16:35:15 +10:00
sql_builtin.cc.in In case WITH_WSREP is enabled, build wsrep as plugin 2021-11-09 17:04:49 +02:00
sql_cache.cc Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
sql_cache.h MDEV-34348: my_hash_get_key fixes 2024-11-23 08:14:22 -07:00
sql_callback.h Update FSF Address 2019-05-11 21:29:06 +03:00
sql_class.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_class.h Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_client.cc Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
sql_cmd.h Merge branch '10.6' into '10.11' 2025-02-02 23:17:20 +01:00
sql_connect.cc Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
sql_connect.h MDEV-33990: SHOW STATUS counts ER_CON_COUNT_ERROR as Connection_errors_internal 2024-09-23 16:16:51 +02:00
sql_const.h MDEV-35750 Change MEM_ROOT allocation sizes to reduse calls to malloc() and avoid memory fragmentation 2025-01-05 16:40:11 +02:00
sql_crypt.cc Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
sql_crypt.h Apply clang-tidy to remove empty constructors / destructors 2023-02-09 16:09:08 +02:00
sql_cte.cc Merge branch '10.5' into 10.6 2024-01-11 12:59:22 +11:00
sql_cte.h Merge branch '10.4' into 10.5 2024-01-10 18:01:46 +11:00
sql_cursor.cc Merge 10.5 into 10.6 2024-06-24 13:09:47 +03:00
sql_cursor.h compilation fixes for sys-devel/gcc-11.2.0:11 2021-10-28 12:01:25 +02:00
sql_db.cc load_db_opt was always doing a file access if db.opt file did not exist 2025-02-26 12:40:07 +02:00
sql_db.h load_db_opt was always doing a file access if db.opt file did not exist 2025-02-26 12:40:07 +02:00
sql_debug.h Merge 10.5 into 10.6 2023-02-10 13:03:01 +02:00
sql_delete.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_delete.h MDEV-10014 Add RETURNING to INSERT 2019-10-14 10:29:31 +02:00
sql_derived.cc Merge branch '10.5' into 10.6 2024-08-03 09:04:24 +02:00
sql_derived.h Merge 10.3 -> 10.4 2021-06-30 18:41:46 +03:00
sql_digest.cc Merge 10.5 into 10.6 2021-06-01 11:39:38 +03:00
sql_digest.h Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
sql_digest_stream.h Update FSF address 2019-05-11 19:25:02 +03:00
sql_do.cc MDEV-34679 ER_BAD_FIELD uses non-localizable substrings 2024-10-17 21:37:37 +02:00
sql_do.h Update FSF Address 2019-05-11 21:29:06 +03:00
sql_error.cc Merge branch '10.6' into 10.11 2025-01-10 13:14:42 +01:00
sql_error.h Merge branch '10.6' into 10.11 2024-08-20 10:00:39 +02:00
sql_explain.cc Merge branch '10.6' into 10.11 2024-07-22 15:14:50 +02:00
sql_explain.h Merge branch '10.6' into 10.11 2024-07-22 15:14:50 +02:00
sql_expression_cache.cc Merge 10.6 into 10.11 2024-02-14 16:12:53 +02:00
sql_expression_cache.h MDEV-33746 Supply missing override markings 2024-06-20 11:32:13 -04:00
sql_get_diagnostics.cc MDEV-26611: ERROR_INDEX isn't intuitively clear 2021-10-05 12:44:55 +05:30
sql_get_diagnostics.h Merge 10.6 into 10.11 2024-06-27 10:26:09 +03:00
sql_handler.cc Merge branch '10.5' into 10.6 2024-12-17 11:06:09 +11:00
sql_handler.h Merge branch '10.3' into 10.4 2019-05-19 20:55:37 +02:00
sql_help.cc MDEV-35135 Assertion `!is_cond()' failed in Item_bool_func::val_int / do_select 2024-10-14 09:36:17 +02:00
sql_help.h MDEV-16708: Unsupported commands for prepared statements 2021-06-17 19:30:24 +02:00
sql_hset.h Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
sql_i_s.h MDEV-27009 Add UCA-14.0.0 collations 2022-08-10 15:04:24 +02:00
sql_insert.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_insert.h Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_join_cache.cc MDEV-35135 Assertion `!is_cond()' failed in Item_bool_func::val_int / do_select 2024-10-14 09:36:17 +02:00
sql_join_cache.h Merge 10.5 into 10.6 2024-06-24 13:09:47 +03:00
sql_lex.cc Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
sql_lex.h Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_lifo_buffer.h MDEV-34348: Consolidate cmp function declarations 2024-11-23 08:14:22 -07:00
sql_limit.h Merge 10.5 into 10.6 2023-05-23 12:25:39 +03:00
sql_list.cc MDEV-15530: Variable replicate_rewrite_db cannot be found in "show global variables" 2022-10-21 14:49:05 -06:00
sql_list.h Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
sql_load.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_load.h Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
sql_locale.cc Merge 10.6 into 10.11 2024-06-11 12:50:10 +03:00
sql_locale.h MDEV-23154 Add a data type my_repertoire_t 2020-07-13 19:50:07 +04:00
sql_manager.cc Fix windows build failure 2024-04-15 18:54:30 +02:00
sql_manager.h cleanup: fix and generalize handle_manager thread 2021-01-24 11:35:55 +01:00
sql_mode.cc MDEV-18153 Assertion 0' or Assertion btr_validate_index(index, 0)' failed in row_upd_sec_index_entry or error code 126: Index is corrupted upon UPDATE with TIME_ROUND_FRACTIONAL 2019-09-13 11:47:43 +04:00
sql_mode.h MDEV-18153 Assertion 0' or Assertion btr_validate_index(index, 0)' failed in row_upd_sec_index_entry or error code 126: Index is corrupted upon UPDATE with TIME_ROUND_FRACTIONAL 2019-09-13 11:47:43 +04:00
sql_parse.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_parse.h cleanup 2022-10-26 15:30:38 +02:00
sql_partition.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_partition.h Merge branch '10.6' into 10.9 2023-08-04 08:01:06 +02:00
sql_partition_admin.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_partition_admin.h Fix compiler errors 2024-07-03 12:45:30 +02:00
sql_plist.h Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
sql_plugin.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_plugin.h MDEV-35720 Add query_time to statistics 2024-12-30 16:13:20 +02:00
sql_plugin_compat.h Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
sql_plugin_services.inl Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_prepare.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_prepare.h MDEV-27595 Backport SQL service, introduced by MDEV-19275. 2023-11-05 23:35:31 +04:00
sql_priv.h MDEV-35958 Cost estimates for materialized derived tables are poor 2025-02-10 21:14:01 +02:00
sql_profile.cc Merge branch '10.5' into 10.6 2023-12-17 11:20:43 +01:00
sql_profile.h Merge branch '10.5' into 10.6 2023-12-17 11:20:43 +01:00
sql_reload.cc Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
sql_reload.h Merge branch '5.5' into 10.1 2019-05-11 22:19:05 +03:00
sql_rename.cc MDEV-27861: Creating partitioned tables should not be allowed with wsrep_osu_method=TOI and wsrep_strict_ddl=ON 2025-02-02 04:54:42 +01:00
sql_rename.h Added IF EXISTS to RENAME TABLE and ALTER TABLE 2020-03-24 20:47:41 +02:00
sql_repl.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_repl.h MDEV-32551: "Read semi-sync reply magic number error" warnings on master 2024-01-23 13:03:11 +02:00
sql_schema.cc MDEV-33746 Supply missing override markings 2024-06-20 11:32:13 -04:00
sql_schema.h Merge branch '10.4' into 10.5 2023-12-02 01:02:50 +01:00
sql_select.cc BKA join cache buffer is employed despite join_cache_level=3 (flat BNLH) 2025-02-27 16:47:25 +07:00
sql_select.h Merge 10.6 into 10.11 2025-01-02 12:39:56 +02:00
sql_sequence.cc MDEV-32350 Can't selectively restore sequences using innodb tables from backup 2024-10-16 17:24:46 +03:00
sql_sequence.h MDEV-29771 Server crashes in check_sequence_fields upon CREATE TABLE .. SEQUENCE=1 AS SELECT .. 2023-09-27 08:54:26 +02:00
sql_servers.cc MDEV-35641 bring call to use_all_columns() forward when reading from mysql.servers 2025-01-13 11:56:19 +11:00
sql_servers.h Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
sql_show.cc load_db_opt was always doing a file access if db.opt file did not exist 2025-02-26 12:40:07 +02:00
sql_show.h MDEV-33746 Supply missing override markings 2024-06-20 11:32:13 -04:00
sql_signal.cc fix RESIGNAL to save and pass the m_row_count too 2021-10-26 17:29:40 +02:00
sql_signal.h MDEV-33746 Supply missing override markings 2024-06-20 11:32:13 -04:00
sql_sort.h Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
sql_state.c Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
sql_statistics.cc Remove redundant if-statement in Index_prefix_calc::get_avg_frequency 2025-02-04 21:47:43 +02:00
sql_statistics.h Merge 10.6 into 10.11 2024-08-29 07:47:29 +03:00
sql_string.cc Merge 10.5 into 10.6 2024-03-27 15:00:56 +02:00
sql_string.h Merge branch '10.5' into 10.6 2024-07-16 15:54:22 +08:00
sql_table.cc Merge 10.6 into 10.11 2025-02-25 10:23:24 +02:00
sql_table.h Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
sql_test.cc Merge 10.6 into 10.11 2024-06-17 09:08:07 +03:00
sql_test.h Merge branch '10.3' into 10.4 2019-05-19 20:55:37 +02:00
sql_time.cc Merge 10.6 into 10.11 2024-05-30 16:04:00 +03:00
sql_time.h Merge 10.3 into 10.4 2020-07-31 18:09:08 +03:00
sql_trigger.cc Merge branch '10.6' into '10.11' 2025-02-02 23:17:20 +01:00
sql_trigger.h Merge 10.5 into 10.6 2025-01-20 09:57:37 +02:00
sql_truncate.cc Merge branch '10.6' into '10.11' 2025-02-02 23:17:20 +01:00
sql_truncate.h MDEV-33746 Supply missing override markings 2024-06-20 11:32:13 -04:00
sql_tvc.cc Merge branch '10.6' into 10.11 2024-07-22 15:14:50 +02:00
sql_tvc.h Merge branch '10.4' into 10.5 2023-09-25 13:06:57 +10:00
sql_type.cc Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
sql_type.h Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
sql_type_fixedbin.h Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
sql_type_fixedbin_storage.h Merge 10.5 into 10.6 2023-02-10 13:03:01 +02:00
sql_type_geom.cc Merge 10.6 into 10.10 2023-10-14 13:36:11 +03:00
sql_type_geom.h Merge 10.6 into 10.11 2024-01-18 19:22:23 +02:00
sql_type_int.h Merge branch '10.5' into 10.6 2023-08-01 15:08:52 +02:00
sql_type_json.cc cleanup: remove Type_collection::handler_by_name() 2023-07-04 16:37:29 +02:00
sql_type_json.h Apply clang-tidy to remove empty constructors / destructors 2023-02-09 16:09:08 +02:00
sql_type_real.h A cleanup for MDEV-19468: Adding a missing #include <cmath> 2019-05-15 16:33:13 +04:00
sql_type_string.cc MDEV-21581 Helper functions and methods for CHARSET_INFO 2020-01-28 12:29:23 +04:00
sql_type_string.h MDEV-20844 RBR from binary(16) to inet6 fails with error 171: The event was corrupt, leading to illegal data being read 2019-10-18 13:15:55 +04:00
sql_udf.cc MDEV-34348: my_hash_get_key fixes 2024-11-23 08:14:22 -07:00
sql_udf.h MDEV-34348: Miscellaneous fixes 2024-11-23 08:14:23 -07:00
sql_union.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_union.h MDEV-16546 System versioning setting to allow history modification 2022-10-26 15:30:38 +02:00
sql_update.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
sql_update.h Merge 10.2 into 10.3 2019-05-14 17:18:46 +03:00
sql_view.cc Merge branch '10.6' into '10.11' 2025-02-02 23:17:20 +01:00
sql_view.h Merge 10.5 into 10.6 2022-10-25 14:25:42 +03:00
sql_window.cc Merge 10.6 into 10.11 2025-01-08 12:51:26 +02:00
sql_window.h MDEV-33746 Supply missing override markings 2024-06-20 11:32:13 -04:00
sql_yacc.yy Merge 10.6 into 10.11 2024-12-19 15:38:53 +02:00
strfunc.cc Merge branch '10.5' into 10.6 2022-08-10 13:06:08 +02:00
strfunc.h MDEV-19863 Add const to TYPELIB pointers 2019-06-26 05:29:44 +04:00
structs.h Merge 10.6 into 10.11 2024-08-29 07:47:29 +03:00
sys_vars.cc MDEV-35958 Cost estimates for materialized derived tables are poor 2025-02-10 21:14:01 +02:00
sys_vars.inl Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
sys_vars_shared.h MDEV-33746 Supply missing override markings 2024-06-20 11:32:13 -04:00
table.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
table.h Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
table_cache.cc Merge 10.5 into 10.6 2024-11-29 12:37:46 +02:00
table_cache.h Merge branch '10.4' into 10.5 2024-01-10 18:01:46 +11:00
temporary_tables.cc Merge 10.6 into 10.11 2024-05-30 16:04:00 +03:00
thr_malloc.cc perfschema memory related instrumentation changes 2020-03-10 19:24:22 +01:00
thr_malloc.h perfschema memory related instrumentation changes 2020-03-10 19:24:22 +01:00
thread_cache.h Move all thread cache specific code to a new class 2020-05-06 13:50:35 +04:00
thread_pool_info.cc Merge branch '10.4' into 10.5 2023-12-02 01:02:50 +01:00
threadpool.h Merge 10.5 into 10.6 2024-06-24 13:09:47 +03:00
threadpool_common.cc MDEV-34533 post-fix 2024-11-05 21:32:48 +01:00
threadpool_generic.cc Merge branch '10.5' into 10.6 2024-05-08 20:06:00 +02:00
threadpool_generic.h MDEV-33746 Supply missing override markings 2024-06-20 11:32:13 -04:00
threadpool_win.cc MDEV-23224 Windows threadpool - use better threadpool_max_threads default. 2024-03-19 11:57:38 +01:00
threadpool_winsockets.cc MDEV-28995 Sporadic Assertion on shutdown in threadpool_winsockets.cc 2022-07-01 13:04:44 +02:00
threadpool_winsockets.h MDEV-22990 Threadpool : Optimize network/named pipe IO for Windows 2020-06-26 14:44:36 +02:00
transaction.cc Merge branch '10.6' into 10.11 2025-01-10 13:14:42 +01:00
transaction.h Merge branch '10.3' into 10.4 2019-05-19 20:55:37 +02:00
tzfile.h Update FSF Address 2019-05-11 21:29:06 +03:00
tztime.cc Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
tztime.h Merge 10.4 into 10.5 2023-02-10 12:02:11 +02:00
udf_example.c MDEV-25602 get rid of __WIN__ in favor of standard _WIN32 2021-06-06 13:21:03 +02:00
udf_example.def MDEV-15073: Generic UDAF parser code in server for windows functions 2018-11-27 14:33:39 +01:00
uniques.cc Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
uniques.h MDEV-34348: Fix casts relating to tree_walk_action 2024-11-23 08:14:23 -07:00
unireg.cc Merge 10.6 into 10.11 2024-02-14 16:12:53 +02:00
unireg.h Some changes to prepare for updated maria-backup 2024-02-26 19:45:11 +02:00
upgrade_conf_file.cc MDEV-27525 Invalid (non-UTF8) characters found for option 'plugin_dir' 2022-01-18 17:32:53 +01:00
vers_string.h Merge 10.4 into 10.5 2023-02-10 12:02:11 +02:00
win_tzname_data.h Update Windows TZ data from unicode source (2024b) 2024-11-15 12:18:06 +11:00
winmain.cc Merge 10.6 into 10.11 2024-02-21 13:08:23 +02:00
winservice.c MDEV-26713 UTF8 support on Windows, mysql_upgrade_service preparation 2021-12-15 19:13:57 +01:00
winservice.h fix clang-cl warnings 2022-02-02 01:35:40 +01:00
wsrep_allowlist_service.cc Merge 10.9 into 10.10 2022-09-06 10:51:18 +03:00
wsrep_allowlist_service.h MDEV-27246 Implement a method to add IPs to allowlist for Galera Cluster node addresses that can make SST/IST requests 2022-08-02 17:24:28 +03:00
wsrep_applier.cc Merge 10.5 into 10.6 2025-01-20 09:57:37 +02:00
wsrep_applier.h Use only MySQL code for TOI error vote 2024-09-01 02:58:27 +02:00
wsrep_binlog.cc Changed some malloc() calls to my_malloc() 2023-10-03 08:25:30 +03:00
wsrep_binlog.h MDEV-22021: Galera database could get inconsistent with rollback to savepoint 2020-03-31 09:59:37 +03:00
wsrep_check_opts.cc Reduce compilation dependencies on wsrep_mysqld.h 2022-08-31 11:05:23 +03:00
wsrep_client_service.cc Merge branch '10.5' into 10.6 2023-12-17 11:20:43 +01:00
wsrep_client_service.h MDEV-33746 Supply missing override markings 2024-06-20 11:32:13 -04:00
wsrep_client_state.h Galera4 2019-01-23 15:30:00 +04:00
wsrep_condition_variable.h MDEV-33746 Supply missing override markings 2024-06-20 11:32:13 -04:00
wsrep_dummy.cc Merge 10.5 into 10.6 2024-01-02 17:37:58 +02:00
wsrep_high_priority_service.cc MDEV-35157 : wrong binlog timestamps on secondary nodes of a galera cluster 2024-11-06 04:59:10 +01:00
wsrep_high_priority_service.h MDEV-33746 Supply missing override markings 2024-06-20 11:32:13 -04:00
wsrep_mutex.h Merge 10.6 into 10.11 2024-06-27 10:26:09 +03:00
wsrep_mysqld.cc Merge 10.6 into 10.11 2025-02-25 10:23:24 +02:00
wsrep_mysqld.h Merge branch '10.6' into '10.11' 2025-02-02 23:17:20 +01:00
wsrep_mysqld_c.h Update FSF address 2019-05-11 19:25:02 +03:00
wsrep_notify.cc Merge branch '10.6' into 10.11 2024-05-10 20:02:18 +02:00
wsrep_on.h MDEV-31660 : Assertion `client_state.transaction().active() in wsrep_append_key 2023-09-29 12:54:04 +02:00
wsrep_plugin.cc Merge 10.6 into 10.11 2024-01-03 15:37:57 +02:00
wsrep_priv.h MDEV-31413 : Node has been dropped from the cluster on Startup / Shutdown with async replica 2023-08-08 03:25:56 +02:00
wsrep_schema.cc Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
wsrep_schema.h Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
wsrep_server_service.cc MDEV-33064: Sync trx->wsrep state from THD on trx start 2025-01-14 02:17:22 +01:00
wsrep_server_service.h MDEV-32363 Shut down Galera networking and logging on fatal signal 2024-09-01 02:48:19 +02:00
wsrep_server_state.cc Merge 10.6 into 10.11 2024-10-03 10:55:08 +03:00
wsrep_server_state.h Merge branch '10.6' into '10.11' 2024-09-02 03:49:03 +02:00
wsrep_sst.cc Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
wsrep_sst.h Merge 10.3 into 10.4 2022-06-27 10:14:37 +03:00
wsrep_status.cc Fix compile error. 2022-03-18 20:50:10 +01:00
wsrep_status.h MDEV-26971: Support for progress reporting from SST scripts. 2022-03-18 16:38:41 +01:00
wsrep_storage_service.cc MDEV-15532 after-merge fixes from Monty 2020-12-02 16:16:29 +02:00
wsrep_storage_service.h MDEV-33746 Supply missing override markings 2024-06-20 11:32:13 -04:00
wsrep_thd.cc Merge branch '10.5' into 10.6 2025-01-29 11:17:38 +01:00
wsrep_thd.h Merge 10.5 into 10.6 2024-01-03 14:24:47 +02:00
wsrep_trans_observer.h Merge 10.6 into 10.11 2023-12-21 13:19:17 +02:00
wsrep_types.h MDEV-27246 Implement a method to add IPs to allowlist for Galera Cluster node addresses that can make SST/IST requests 2022-08-02 17:24:28 +03:00
wsrep_utils.cc Merge branch '10.6' into 10.11 2024-10-29 15:24:38 +01:00
wsrep_utils.h Merge 10.6 into 10.10 2023-10-14 13:36:11 +03:00
wsrep_var.cc Merge branch '10.6' into '10.11' 2025-02-02 23:17:20 +01:00
wsrep_var.h Merge branch '10.6' into '10.11' 2025-02-02 23:17:20 +01:00
wsrep_xid.cc Do not compare uninitialized data 2020-03-28 21:20:29 +02:00
wsrep_xid.h Galera GTID support 2020-01-29 15:06:06 +02:00
xa.cc Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
xa.h Revert "MDEV-35019 Provide a way to enable "rollback XA on disconnect" behavior we had before 10.5.2" 2024-10-16 13:23:47 +02:00