- 14 Sep, 2023 2 commits
-
-
Marko Mäkelä authored
-
Marko Mäkelä authored
This fixes up commit 6cc88c3d Thanks to Markus Mäkelä for reporting the build failure.
-
- 13 Sep, 2023 2 commits
-
-
Brandon Nesterenko authored
- Removed commented out and unused lines. - Updated test to reference true failure of timeout rather than deadlock - Switched save variables from MTR to user - Forced relay-log purge to not potentially re-execute an already prepared transaction
-
Sergei Golubchik authored
-
- 12 Sep, 2023 4 commits
-
-
Marko Mäkelä authored
buf_read_page_low(): Use 64-bit arithmetics when computing the file byte offset. In other calls to fil_space_t::io() the offset was being computed correctly, for example by buf_page_t::physical_offset().
-
Marko Mäkelä authored
trx_purge_truncate_history(): Remove a debug assertion that had originally been added in commit 0de3be8c (MDEV-30671). In trx_t::commit_empty() we do not have any efficient way to rewind rseg.needs_purge to an accurate value that would satisfy this debug assertion. Note: No correctness property should be violated here. At the point where the debug assertion was located, we had already established that purge_sys.sees(rseg.needs_purge) holds, that is, it is safe to remove everything from rseg.
-
Marko Mäkelä authored
trx_undo_reuse_cached(): Assert that this is being invoked on the persistent rollback segment of the transaction, and remove dead code that was handling cached temporary undo log. This was missed in commit 51e62cb3 (MDEV-26782).
-
sjaakola authored
MariaDB async replication SQL thread was stopped for any failure in applying of replication events and error message logged for the failure was: "Node has dropped from cluster". The assumption was that event applying failure is always due to node dropping out. With optimistic parallel replication, event applying can fail for natural reasons and applying should be retried to handle the failure. This retry logic was never exercised because the slave SQL thread was stopped with first applying failure. To support optimistic parallel replication retrying logic this commit will now skip replication slave abort, if node remains in cluster (wsrep_ready==ON) and replication is configured for optimistic or aggressive retry logic. During the development of this fix, galera.galera_as_slave_nonprim test showed some problems. The test was analyzed, and it appears to need some attention. One excessive sleep command was removed in this commit, but it will need more fixes still to be fully deterministic. After this commit galera_as_slave_nonprim is successful, though. Signed-off-by: Julius Goryavsky <julius.goryavsky@mariadb.com>
-
- 11 Sep, 2023 13 commits
-
-
Thirunarayanan Balathandayuthapani authored
- Lifetime of temporary tables is expected to be short, it would seem to make sense to assume that all temporary tablespace pages will remain in the buffer pool. It doesn't make sense to have read-ahead for pages of temporary tablespace
-
Marko Mäkelä authored
buf_flush_page_cleaner(): Before finishing a batch, wake up any threads that are waiting for buf_pool.done_flush_LRU. This should fix a hung shutdown that we observed after SET GLOBAL innodb_buffer_pool_size started was executed to shrink the InnoDB buffer pool.
-
Marko Mäkelä authored
Starting with commit 4ff5311d log_write_up_to(trx->commit_lsn, true) in DDL operations could end up being a no-op, because trx->commit_lsn would be 0. trx_flush_log_if_needed(): Revert an incorrect attempt to ensure that DDL operations are crash-safe. trx_t::commit(std::vector<pfs_os_file_t> &), ha_innobase::rename_table(): Set trx_t::flush_log_later so that trx_t::commit_in_memory() will retain trx_t::commit_lsn for the final durability call. Tested by: Matthias Leich
-
Marko Mäkelä authored
lock_wait(): Never return the transient error code DB_LOCK_WAIT. In commit 78a04a4c (MDEV-29869) some assignments assign trx->error_state = DB_SUCCESS were removed, and it was possible that the field was left at its initial value DB_LOCK_WAIT. The test case for this is nondeterministic; without this fix, it would only occasionally fail. Reviewed by: Vladislav Lesin
-
Marko Mäkelä authored
MDEV-32096 Parallel replication lags because innobase_kill_query() may fail to interrupt a lock wait lock_sys_t::cancel(trx_t*): Remove, and merge to its only caller innobase_kill_query(). innobase_kill_query(): Before reading trx->lock.wait_lock, do acquire lock_sys.wait_mutex, like we did before commit e71e6133 (MDEV-24671). In this way, we should not miss a recently started lock wait by the killee transaction. lock_rec_lock(): Add a DEBUG_SYNC "lock_rec" for the test case. lock_wait(): Invoke trx_is_interrupted() before entering the wait, in case innobase_kill_query() was invoked some time earlier and some longer-running operation did not check for interrupts. As suggested by Vladislav Lesin, do not overwrite trx->error_state==DB_INTERRUPTED with DB_SUCCESS. This would avoid a call to trx_is_interrupted() when the test is modified to use the DEBUG_SYNC point lock_wait_start instead of lock_rec. Avoid some redundant loads of trx->lock.wait_lock; cache the value in the local variable wait_lock. Deadlock::check_and_resolve(): Take wait_lock as a parameter and return wait_lock (or -1 or nullptr). We only need to reload trx->lock.wait_lock if lock_sys.wait_mutex had been released and reacquired. trx_t::error_state: Correctly document the data member. trx_lock_t::was_chosen_as_deadlock_victim: Clarify that other threads may set the field (or flags in it) while holding lock_sys.wait_mutex. Thanks to Johannes Baumgarten for reporting the problem and testing the fix, as well as to Kristian Nielsen for suggesting the fix. Reviewed by: Vladislav Lesin Tested by: Matthias Leich
-
Marko Mäkelä authored
-
Marko Mäkelä authored
Some s390x environments include https://github.com/madler/zlib/pull/410 and a more pessimistic compressBound: (sourceLen * 16 + 2308) / 8 + 6. Let us adjust the recently enabled tests accordingly.
-
Marko Mäkelä authored
trx_undo_write_trx_xid(): Silence the debug assertion by passing a template parameter that causes us to not care that the contents of the page did not actually change and no log record would be written. This debug assertion could fail if XA PREPARE was executed multiple times with the same XID.
-
Marko Mäkelä authored
-
Marko Mäkelä authored
innodb_monitor_validate(): Let item_val_str() allocate the memory in THD, so that it will be available to innodb_monitor_update(). In this way, there is no need to allocate another buffer, and no problem if the call to innodb_monitor_update() is skipped due to an invalid value that is passed to another configuration parameter. There are some other callers to st_mysql_sys_var::val_str() that validate configuration parameters that are related to FULLTEXT INDEX, but they will allocate memory by invoking thd_strmake().
-
Marko Mäkelä authored
Currently include/have_innodb_4k.inc etc. files only check that the server is running with the corresponding page size. I think it would be more convenient if they actually enforced the setting.
-
Marko Mäkelä authored
The test innodb_zip.index_large_prefix_4k would not run unless it is invoked as ./mtr --mysqld=--innodb-page-size=4k innodb_zip.index_large_prefix_4k This test was originally developed to cover an option that was removed in commit 0c92794d. Starting with MariaDB Server 10.2, which introduced innodb_default_row_format=dynamic, the option innodb_large_prefix had become useless. Let us remove some of the stale tests and adjust the outcome to the expected behaviour.
-
Marko Mäkelä authored
Let us avoid inserting the rows fid=714 and fid=715, because we would evaluate g=NULL for them, and NULL values are not allowed in InnoDB SPATIAL INDEX. Also, let the test run on any page size, and on non-debug builds.
-
- 09 Sep, 2023 1 commit
-
-
Sergei Golubchik authored
and "Undefined subroutine &Manager::move"
-
- 08 Sep, 2023 7 commits
-
-
Sergei Golubchik authored
-
Sergei Golubchik authored
from upstream
-
Sergei Golubchik authored
-
Sergei Golubchik authored
to follow the similar upstream change
-
Daniel Black authored
-Wdeprecated-copy-with-user-provided-copy was causing a few errors on things that where defined in a way that was implicit. By removing code it now compiles without warnings. tested with fc38 / clang-16
-
Marko Mäkelä authored
ibuf_set_bitmap_for_bulk_load(): Port a bug fix that was made as part of commit 165564d3 (MDEV-30009) in MariaDB Server 10.5.19.
-
Alexander Barkov authored
Port the test case from MySQL to MariaDB: MySQL fix Bug#33813951, Change-Id: I2448e3f2f36925fe70d882ae5681a6234f0d5a98. Function test_simple_temporal() from MySQL ported from C++ to pure C. This includes one change: - DIE_UNLESS(field->type == MYSQL_TYPE_DATETIME); + DIE_UNLESS(field->type == MYSQL_TYPE_TIMESTAMP); The bound param of SELECT ? is TIMESTAMP in this code. MySQL returns it back as DATETIME. MariaDB preserves TIMESTAMP. Code packaged for commit by Daniel Black.
-
- 07 Sep, 2023 2 commits
-
-
Kristian Nielsen authored
The problem was that parallel replication of temporary tables using statement-based binlogging could overlap the COMMIT in one thread with a DML or DROP TEMPORARY TABLE in another thread using the same temporary table. Temporary tables are not safe for concurrent access, so this caused reference to freed memory and possibly other nastiness. The fix is to disable the optimisation with overlapping commits of one transaction with the start of a later transaction, when temporary tables are in use. Then the following event groups will be blocked from starting until the one using temporary tables is completed. This also fixes occasional test failures of rpl.rpl_parallel_temptable seen in Buildbot. Signed-off-by: Kristian Nielsen <knielsen@knielsen-hq.org>
-
Nayana Thorat authored
Fix debug mode build failure on s390x. Replaced builtin_ttest by __builtin_tx_nesting_depth() > 0 as a s390x equivalent version of the expression.
-
- 06 Sep, 2023 8 commits
-
-
Sergei Golubchik authored
recalculate long unique hash in Write_rows_log_event and Update_rows_log_event. normally generated columns (stored and indexed virtual) are deterministic and their values don't need to be recalculated on the slave as they're already present in the row image. but the long unique hash function was changed in MDEV-27653, so a row event from the old master will have the old hash, but a table created on the new slave will need a new hash.
-
Sachin authored
test case only
-
Sergei Golubchik authored
don't enable bulk insert when table->s->long_unique_table
-
Sergei Golubchik authored
as always when copying record[0] aside one needs to detach Field_blob::value's from it, and restore them when record[0] is restored from a backup.
-
Sergei Golubchik authored
clarify the help text
-
Sergei Golubchik authored
move user/group creation from %post to %pre as Fedora packaging guidelines say. This allows to use %attr() to set the correct ownership of files
-
Sergei Golubchik authored
MDEV-17711 Assertion `arena_for_set_stmt== 0' failed in LEX::set_arena_for_set_stmt upon SET STATEMENT restore SET STATEMENT variables between statements in a multi-statement
-
Sergei Golubchik authored
compaitibility with: * chacha - mobile devices * secure negotiation - openssl 3
-
- 05 Sep, 2023 1 commit
-
-
Monty authored
32 bit MariaDB crashed in innodb.innodb-16k and a few other tests. Fixed by using correct sizeof() calls. Histograms where not read if first read was without histograms.
-