mariadb/mysql-test/suite/innodb/r
Thirunarayanan Balathandayuthapani caad34df54 MDEV-32968 InnoDB fails to restore tablespace first page from doublewrite buffer when page is empty
- InnoDB fails to find the space id from the page0 of
the tablespace. In that case, InnoDB can use
doublewrite buffer to recover the page0 and write
into the file.

- buf_dblwr_t::init_or_load_pages(): Loads only the pages
which are valid.(page lsn >= checkpoint). To do that,
InnoDB has to open the redo log before system
tablespace, read the latest checkpoint information.

recv_dblwr_t::find_first_page():
1) Iterate the doublewrite buffer pages and find the 0th page
2) Read the tablespace flags, space id from the 0th page.
3) Read the 1st, 2nd and 3rd page from tablespace file and
compare the space id with the space id which is stored
in doublewrite buffer.
4) If it matches then we can write into the file.
5) Return space which matches the pages from the file.

SysTablespace::read_lsn_and_check_flags(): Remove the
retry logic for validating the first page. After
restoring the first page from doublewrite buffer,
assign tablespace flags by reading the first page.

recv_recovery_read_max_checkpoint(): Reads the maximum
checkpoint information from log file

recv_recovery_from_checkpoint_start(): Avoid reading
the checkpoint header information from log file

Datafile::validate_first_page(): Throw error in case
of first page validation fails.
2024-01-15 14:08:27 +05:30
..
101_compatibility.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
add_constraint.result
add_foreign_key.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
alter_algorithm,INPLACE.rdiff MDEV-16288 ALTER TABLE…ALGORITHM=DEFAULT does not override alter_algorithm 2020-05-04 09:35:38 +05:30
alter_algorithm,INSTANT.rdiff MDEV-16288 ALTER TABLE…ALGORITHM=DEFAULT does not override alter_algorithm 2020-05-04 09:35:38 +05:30
alter_algorithm,NOCOPY.rdiff MDEV-16288 ALTER TABLE…ALGORITHM=DEFAULT does not override alter_algorithm 2020-05-04 09:35:38 +05:30
alter_algorithm.result MDEV-16288 ALTER TABLE…ALGORITHM=DEFAULT does not override alter_algorithm 2020-05-04 09:35:38 +05:30
alter_algorithm2.result Merge 10.3 into 10.4 2020-05-05 20:33:10 +03:00
alter_candidate_key.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
alter_copy.result MDEV-30551 InnoDB recovery hangs when buffer pool ran out of memory 2023-02-14 14:35:35 +05:30
alter_crash.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
alter_foreign_crash.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
alter_inplace_perfschema.result MDEV-16548 - Innodb fails to start on older kernels that don't support F_DUPFD_CLOEXEC 2019-05-24 13:21:14 +04:00
alter_key_block_size-11757.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
alter_kill.result Merge 10.3 into 10.4 2019-04-05 11:41:03 +03:00
alter_large_dml.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
alter_mdl_timeout.result MDEV-24547 Update fails when online alter does rollback due to MDL time out 2021-01-19 16:18:37 +05:30
alter_missing_tablespace.result Merge 10.3 into 10.4 2020-03-20 22:06:55 +02:00
alter_not_null,COPY,NON-STRICT.rdiff
alter_not_null,COPY,STRICT.rdiff
alter_not_null,INPLACE,STRICT.rdiff
alter_not_null.result
alter_not_null_debug,STRICT.rdiff
alter_not_null_debug.result MDEV-23805 Make Online DDL to Instant DDL when table is empty 2021-11-12 17:46:35 +05:30
alter_partitioned.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
alter_partitioned_debug.result
alter_partitioned_xa.result
alter_persistent_autoinc.result MDEV-26224 InnoDB fails to remove AUTO_INCREMENT attribute 2022-04-21 15:23:21 +03:00
alter_primary_key.result MDEV-23805 Make Online DDL to Instant DDL when table is empty 2021-11-12 17:46:35 +05:30
alter_rename_existing.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
alter_table.result Merge 10.4 into 10.5 2023-12-18 08:59:07 +02:00
alter_table_upgrade.result MDEV-29481 mariadb-upgrade prints confusing statement 2022-10-22 14:22:20 +04:00
alter_varchar_change.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
analyze_table.result Fix for using uninitialized memory 2020-05-15 15:10:58 +03:00
auto_increment_dup.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
autoinc_debug.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
autoinc_persist.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
binlog_consistent.result
blob-crash.result MDEV-13626: Import and adjust innodb.blob-crash 2019-07-02 15:18:12 +03:00
blob-update-debug.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
blob_cmp_empty.result MDEV-27746 Wrong comparision of BLOB's empty preffix with non-preffixed BLOB causes rows count mismatch for clustered and secondary indexes during non-locking read 2022-02-11 12:26:27 +03:00
blob_unique2pk.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
buf_pool_resize_oom.result MDEV-27094 Debug builds include useless InnoDB "disabled" options 2022-04-22 12:48:40 +03:00
cascade_lock_wait.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
change_column_collation.result MDEV-26294 Duplicate entries in unique index not detected when changing collation 2022-07-04 08:04:44 +03:00
check_ibd_filesize,4k.rdiff MDEV-13013 InnoDB unnecessarily extends data files 2022-08-17 11:08:49 +05:30
check_ibd_filesize,8k.rdiff MDEV-13013 InnoDB unnecessarily extends data files 2022-08-17 11:08:49 +05:30
check_ibd_filesize,32k.rdiff MDEV-13013 InnoDB unnecessarily extends data files 2022-08-17 11:08:49 +05:30
check_ibd_filesize,64k.rdiff MDEV-13013 InnoDB unnecessarily extends data files 2022-08-17 11:08:49 +05:30
check_ibd_filesize.result MDEV-13013 InnoDB unnecessarily extends data files 2022-08-17 11:08:49 +05:30
corrupted_during_recovery.result MDEV-21572 buf_page_get_gen() should apply buffered page initialized 2020-03-23 16:41:48 +05:30
count_distinct.result
create-index-debug.result
create-index.result
create_isl_with_direct.result Updated mtr files to support different compiled in options 2019-09-01 19:17:35 +03:00
create_select.result Merge 10.1 into 10.2 2019-07-22 15:28:05 +03:00
cursor-restore-locking.result MDEV-31355 innodb_undo_log_truncate=ON fails to wait for purge of enough transaction history 2023-06-08 09:17:52 +03:00
data_types.result MDEV-19216 Assertion ...SYS_FOREIGN failed in btr_node_ptr_max_size 2023-07-03 16:09:18 +03:00
ddl_purge.result MDEV-23805 Make Online DDL to Instant DDL when table is empty 2021-11-12 17:46:35 +05:30
deadlock_detect.result
deadlock_in_subqueries_join.result MDEV-10087 mysqld_update()/mysql_delete() continues execution even after subquery with JOIN gets error from storage engine 2022-11-09 21:00:24 +03:00
deadlock_on_lock_upgrade.result MDEV-10962 Deadlock with 3 concurrent DELETEs by unique key 2023-07-06 15:06:10 +03:00
default_row_format_alter,compact.rdiff MDEV-23345 Assertion not_redundant() == old.not_redundant() 2020-08-04 11:49:52 +03:00
default_row_format_alter,redundant.rdiff MDEV-23345 Assertion not_redundant() == old.not_redundant() 2020-08-04 11:49:52 +03:00
default_row_format_alter.result MDEV-31025 Redundant table alter fails when fixed column 2023-04-19 17:11:14 +05:30
default_row_format_compatibility.result MDEV-27882 Innodb - recognise MySQL-8.0 innodb flags and give a specific error message 2022-11-11 10:21:28 +11:00
default_row_format_create,dynamic.rdiff
default_row_format_create,redundant.rdiff Merge 10.2 into 10.3 2021-10-21 13:41:04 +03:00
default_row_format_create.result Merge 10.2 into 10.3 2021-10-21 13:41:04 +03:00
defrag_mdl-9155.result
dml_purge.result MDEV-31355 innodb_undo_log_truncate=ON fails to wait for purge of enough transaction history 2023-06-08 09:17:52 +03:00
doublewrite.result MDEV-32968 InnoDB fails to restore tablespace first page from doublewrite buffer when page is empty 2024-01-15 14:08:27 +05:30
doublewrite_debug.result MDEV-33098 The test innodb.doublewrite_debug occasionally fails to start up InnoDB 2024-01-03 15:08:22 +05:30
drop_table_background.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
dropdb.result
encryption_threads_shutdown.result MDEV-24612: innodb hangs if it's initialization is broken before encryption threads are started 2021-01-19 06:43:56 +03:00
file_format_defaults.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
fk_col_alter.result MDEV-32638 MariaDB crashes with foreign_key_checks=0 when changing a column and adding a foreign key at the same time 2023-11-02 14:33:05 +05:30
fk_drop_alter.result MDEV-22230 : Unexpected ER_ERROR_ON_RENAME upon DROP non-existing FOREIGN KEY 2023-11-26 18:46:00 +05:30
flush.result MDEV-24049 InnoDB: Failing assertion: node->is_open() in fil_space_t::flush_low 2020-10-29 09:15:35 +02:00
foreign-keys.result MDEV-32833 InnoDB wrong error message 2023-11-29 10:52:25 +02:00
foreign_key.result Merge branch '10.4' into 10.5 2023-12-02 01:02:50 +01:00
foreign_key_debug.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
foreign_key_not_windows.result MDEV-29409 Buffer overflow in my_wc_mb_filename() on RENAME TABLE 2022-08-30 12:02:56 +03:00
full_crc32_import.result Merge remote-tracking branch '10.4' into 10.5 2023-03-31 21:32:41 +02:00
gap_lock_split.result MDEV-30671 InnoDB undo log truncation fails to wait for purge of history 2023-02-24 14:24:44 +02:00
gap_locks.result MDEV-24224 Gap lock on delete in 10.5 using READ COMMITTED 2020-11-18 10:27:18 +02:00
group_commit.result
group_commit_binlog_pos.result
group_commit_binlog_pos_no_optimize_thread.result
group_commit_crash.result
group_commit_crash_no_optimize_thread.result
group_commit_force_recovery.result MDEV-24302: RESET MASTER hangs 2021-03-29 15:16:23 +03:00
group_commit_no_optimize_thread.result
help_url.result
ibuf_not_empty.result MDEV-33156 Crash on innodb_buf_flush_list_now=ON and innodb_force_recovery=6 2024-01-03 12:08:21 +02:00
implicit_gap_lock_convertion.result MDEV-26206 gap lock is not set if implicit lock exists 2021-08-17 16:09:55 +03:00
import_bugs.result MDEV-26148 SEGV or Assertion `!page_is_comp(page) == !(index->table)->not_redundant()' 2021-07-27 20:30:33 +03:00
import_corrupted.result MDEV-20931 fixup 2021-08-19 11:29:32 +03:00
import_tablespace_race.result MDEV-29144 ER_TABLE_SCHEMA_MISMATCH or crash on DISCARD/IMPORT 2022-12-09 10:42:19 +02:00
import_update_stats.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
index_length.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
index_merge_threshold.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
index_tree_operation.result MDEV-22242 B-trees can become extremely skewed 2020-04-14 18:43:03 +03:00
index_vcol_purge_startup.result MDEV-25792 server hangs on early shutdown if InnoDB needs to purge indexed virtual columns 2021-05-27 16:46:21 +02:00
information_schema_grants.result Merge 10.4 into 10.5 2023-01-03 17:08:42 +02:00
innodb-16k.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb-32k-crash.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
innodb-32k.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb-64k-crash.result Merge branch '10.3' into 10.4 2019-12-09 15:09:41 +01:00
innodb-64k.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb-ac-non-locking-select.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb-agregate.result
innodb-alter-autoinc.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb-alter-debug.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
innodb-alter-nullable.result MDEV-18819 ALTER_COLUMN_VCOL is not set for generated stored columns 2019-10-30 16:47:43 +01:00
innodb-alter-table.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
innodb-alter-tempfile.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
innodb-alter-timestamp.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
innodb-alter.result Merge branch '10.4' into 10.5 2023-12-02 01:02:50 +01:00
innodb-analyze.result Merge 10.4 into 10.5 2020-04-25 21:57:52 +03:00
innodb-autoinc-18274.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb-autoinc-44030.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
innodb-autoinc-56228.result
innodb-autoinc-61209.result
innodb-autoinc-optimize.result
innodb-autoinc-part.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb-autoinc.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
innodb-bigblob.result
innodb-blob.result Remove deprication from mariadbd --debug 2023-11-28 16:33:22 +02:00
innodb-bug-14068765.result
innodb-bug-14084530.result
innodb-change-buffer-recovery.result MDEV-27734 Set innodb_change_buffering=none by default 2022-02-09 08:36:41 +02:00
innodb-consistent.result
innodb-corrupted-table.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb-dict.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb-enlarge-blob.result
innodb-fk-virtual.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb-fk-warnings.result MDEV-26439 Typo in Foreign Key error message 2021-08-19 12:05:02 +03:00
innodb-fk.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
innodb-fkcheck.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb-get-fk.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
innodb-index,debug.rdiff
innodb-index-debug.result Remove deprication from mariadbd --debug 2023-11-28 16:33:22 +02:00
innodb-index-online,crypt.rdiff
innodb-index-online-delete.result
innodb-index-online-fk.result MDEV-29092 FOREIGN_KEY_CHECKS does not prevent non-copy alter from creating invalid FK structure 2023-12-06 14:29:17 +05:30
innodb-index-online-norebuild.result
innodb-index-online-purge.result
innodb-index-online.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
innodb-index.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
innodb-index_ucs2.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb-isolation.result Updated optimizer costs in multi_range_read_info_const() and sql_select.cc 2020-03-27 03:58:32 +02:00
innodb-lock-inherit-read_commited.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb-lock-schedule-algorithm.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
innodb-lock.result
innodb-lru-force-no-free-page.result
innodb-mdev-7408.result
innodb-mdev-7513.result Merge branch '10.3' into 10.4 2019-12-09 15:09:41 +01:00
innodb-mdev7046.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb-on-duplicate-update.result
innodb-online-alter-gis.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb-page_compression_none.result MDEV-30825 innodb_compression_algorithm=0 (none) increments Innodb_num_pages_page_compression_error 2023-10-18 19:18:50 +11:00
innodb-read-view.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb-replace-debug.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
innodb-replace.result
innodb-rollback.result MDEV-18632: wsrep_is_wsrep_xid: Conditional jump or move depends on uninitialised value 2019-02-19 16:12:00 +02:00
innodb-semi-consistent.result
innodb-stats-initialize-failure.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
innodb-stats-modified-counter.result MDEV-19940 Clean up INFORMATION_SCHEMA.INNODB_ tables 2019-07-04 00:09:16 +03:00
innodb-stats-sample.result Merge 10.4 into 10.5 2020-04-25 21:57:52 +03:00
innodb-system-table-view.result Merge 10.4 into 10.5 2022-09-20 13:17:02 +03:00
innodb-table-online,crypt.rdiff
innodb-table-online.result Merge branch '10.4' into 10.5 2023-12-02 01:02:50 +01:00
innodb-timeout.result
innodb-trim.result
innodb-truncate.result MDEV-29092 FOREIGN_KEY_CHECKS does not prevent non-copy alter from creating invalid FK structure 2023-12-06 14:29:17 +05:30
innodb-ucs2.result
innodb-update-insert.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb-virtual-columns-debug.result MDEV-20143 innodb.innodb-virtual-columns-debug failed in buildbot with wrong result 2019-09-10 16:14:50 +03:00
innodb-virtual-columns.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb-virtual-columns2.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb-wl5522,crc32.rdiff MDEV-12026: Implement innodb_checksum_algorithm=full_crc32 2019-02-19 18:50:19 +02:00
innodb-wl5522,strict_crc32.rdiff MDEV-12026: Implement innodb_checksum_algorithm=full_crc32 2019-02-19 18:50:19 +02:00
innodb-wl5522-1.result MDEV-29972 Crash emitting "Unsupported meta-data version number" error message 2023-12-12 15:09:31 +11:00
innodb-wl5522-debug.result Merge 10.4 into 10.5 2022-12-13 14:39:18 +02:00
innodb-wl5522.result Merge remote-tracking branch 'origin/10.4' into 10.5 2023-04-05 16:16:19 +04:00
innodb-wl5980-alter.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
innodb-wl5980-debug.result MDEV-13625: Add the test innodb.innodb-wl5980-debug 2019-07-18 17:01:59 +03:00
innodb-xa.result MDEV-31928 Assertion xid ... < 128 failed in trx_undo_write_xid() 2023-08-17 10:31:55 +03:00
innodb.result Merge branch '10.4' into 10.5 2023-12-02 01:02:50 +01:00
innodb_28867993.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
innodb_autoinc_lock_mode_zero.result
innodb_blob_truncate.result
innodb_buffer_pool_dump_pct.result MDEV-20139 innodb.innodb_buffer_pool_dump_pct failed in buildbot with timeout 2023-12-12 11:43:23 +02:00
innodb_buffer_pool_fail.result Merge 10.3 into 10.4 2021-04-14 10:33:59 +03:00
innodb_buffer_pool_load_now.result MDEV-22242 B-trees can become extremely skewed 2020-04-14 18:43:03 +03:00
innodb_buffer_pool_resize.result
innodb_buffer_pool_resize_temporary.result MDEV-27094 Debug builds include useless InnoDB "disabled" options 2022-04-22 12:48:40 +03:00
innodb_buffer_pool_resize_with_chunks.result MDEV-27467: innodb to enforce the minimum innodb_buffer_pool_size in SET GLOBAL 2022-01-19 11:10:45 +11:00
innodb_bug21704.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb_bug30423.result
innodb_bug30919.result
innodb_bug34300.result Fix various spelling errors still found in code 2021-03-22 18:10:39 +11:00
innodb_bug35220.result MDEV-18650: Options deprecated in previous versions - storage_engine 2020-02-13 13:42:01 +02:00
innodb_bug38231.result MDEV-18650: Options deprecated in previous versions - storage_engine 2020-02-13 13:42:01 +02:00
innodb_bug39438.result MDEV-18650: Options deprecated in previous versions - storage_engine 2020-02-13 13:42:01 +02:00
innodb_bug40360.result
innodb_bug40565.result
innodb_bug41904.result
innodb_bug42419.result
innodb_bug44032.result
innodb_bug44369.result
innodb_bug44571.result
innodb_bug45357.result
innodb_bug46000.result
innodb_bug46676.result
innodb_bug47621.result
innodb_bug47622.result
innodb_bug47777.result
innodb_bug48024.result
innodb_bug49164.result
innodb_bug51378.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb_bug51920.result
innodb_bug52199.result
innodb_bug52663.result
innodb_bug53046.result
innodb_bug53290.result
innodb_bug53592.result MDEV-18650: Options deprecated in previous versions - old_alter_table 2020-02-13 13:42:01 +02:00
innodb_bug53674.result
innodb_bug53756.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
innodb_bug54044.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb_bug56143.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb_bug56716.result
innodb_bug56947.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
innodb_bug57252.result Fixed access to unitialized memory when using unique HASH key 2019-08-13 17:19:00 +03:00
innodb_bug57255.result
innodb_bug57904.result
innodb_bug59307.result
innodb_bug59410.result
innodb_bug59641.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
innodb_bug59733.result
innodb_bug60049.result Remove useless test innodb.innodb_bug60049 2021-02-15 18:12:31 +02:00
innodb_bug60196.result
innodb_bug60229.result MDEV-17544 No warning when trying to name a primary key constraint. 2019-07-30 21:57:48 +04:00
innodb_bug68148.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
innodb_bug84958.result MDEV-30671 InnoDB undo log truncation fails to wait for purge of history 2023-02-24 14:24:44 +02:00
innodb_bug11754376.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
innodb_bug12400341.result MDEV-19570 Deprecate and ignore innodb_undo_logs, remove innodb_rollback_segments 2019-05-23 17:34:47 +03:00
innodb_bug12661768.result
innodb_bug13510739.result
innodb_bug14007649.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb_bug14147491.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
innodb_bug14676111.result Merge 10.3 into 10.4 2019-03-25 17:18:15 +02:00
innodb_bug27216817.result
innodb_bug30113362.result Merge branch '10.3' into 10.4 2020-01-24 14:50:23 +01:00
innodb_bulk_create_index.result
innodb_bulk_create_index_debug.result MDEV-20310: Make InnoDB crash tests Valgrind-friendly 2019-08-13 13:32:27 +03:00
innodb_bulk_create_index_replication.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb_bulk_create_index_small.result
innodb_corrupt_bit.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
innodb_ctype_big5.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
innodb_ctype_latin1.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
innodb_ctype_ldml.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
innodb_ctype_tis620.result Merge 10.4 into 10.5 2022-11-30 13:10:52 +02:00
innodb_ctype_utf8.result Merge branch '10.4' into 10.5 2023-11-08 12:59:00 +01:00
innodb_defrag_binlog.result
innodb_defrag_concurrent.result MDEV-20370 Crash after OPTIMIZE TABLE on TEMPORARY TABLE 2020-03-17 16:28:16 +02:00
innodb_defrag_stats.result Merge 10.3 into 10.4 2021-09-29 16:03:02 +03:00
innodb_defrag_stats_many_tables.result
innodb_defragment.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
innodb_defragment_fill_factor.result MDEV-22242 B-trees can become extremely skewed 2020-04-14 18:43:03 +03:00
innodb_defragment_small.result
innodb_force_pk.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
innodb_force_recovery.result Merge 10.4 into 10.5 2022-02-25 13:27:41 +02:00
innodb_force_recovery_rollback.result Merge 10.3 into 10.4 2020-07-31 18:09:08 +03:00
innodb_gis.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
innodb_i_s_innodb_locks.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb_i_s_innodb_trx.result Merge branch '10.4' into 10.5 2023-12-02 01:02:50 +01:00
innodb_information_schema.result Merge branch '10.4' into 10.5 2022-02-01 20:33:04 +01:00
innodb_information_schema_buffer.result MDEV-15053 Reduce buf_pool_t::mutex contention 2020-06-05 12:35:46 +03:00
innodb_information_schema_tables.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb_lock_wait_timeout_1.result MDEV-19544 Remove innodb_locks_unsafe_for_binlog 2019-05-23 10:25:12 +03:00
innodb_multi_update.result MDEV-24346 valgrind error in main.precedence 2020-12-19 11:44:42 +01:00
innodb_mutexes.result
innodb_mysql.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
innodb_mysql_rbk.result
innodb_notembedded.result
innodb_page_compressed.result Clean up the page_compressed tests 2022-04-25 10:19:12 +03:00
innodb_prefix_index_restart_server.result MDEV-21245 InnoDB: Using a partial-field key prefix in search 2023-12-14 09:57:38 +11:00
innodb_query_cache.result
innodb_rename_index.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
innodb_scrub.result MDEV-23855: Improve InnoDB log checkpoint performance 2020-10-26 17:09:01 +02:00
innodb_skip_innodb_is_tables.result Merge branch '10.4' into 10.5 2023-11-08 12:59:00 +01:00
innodb_stats.result Run innodb.innodb_stats test with EITS disabled. 2020-12-11 17:33:44 +03:00
innodb_stats_auto_recalc.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb_stats_auto_recalc_ddl.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb_stats_auto_recalc_lots.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb_stats_auto_recalc_on_nonexistent.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb_stats_create_on_corrupted.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
innodb_stats_create_table.result
innodb_stats_drop_locked.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
innodb_stats_external_pages.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb_stats_fetch.result MDEV-32890 LeakSanitizer errors in mem_heap_create_block_func upon query from I_S.INNODB_SYS_TABLES with LIMIT ROWS EXAMINED 2023-11-28 13:42:08 +05:30
innodb_stats_fetch_corrupted.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
innodb_stats_fetch_nonexistent.result
innodb_stats_flag_global,off.rdiff MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb_stats_flag_global.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb_stats_persistent.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb_stats_persistent_debug.result
innodb_stats_rename_table.result
innodb_stats_rename_table_if_exists.result
innodb_stats_sample_pages.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb_stats_table_flag_auto_recalc.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb_stats_table_flag_sample_pages.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb_status_variables.result Merge branch '10.4' into 10.5 2022-05-18 09:50:26 +02:00
innodb_sys_semaphore_waits.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
innodb_sys_var_valgrind.result MDEV-30453 Setting innodb_buffer_pool_filename to an empty string attempts to delete the data directory on shutdown 2023-03-29 16:49:10 +03:00
innodb_timeout_rollback.result
innodb_trx_weight.result MDEV-18650: Options deprecated in previous versions - storage_engine 2020-02-13 13:42:01 +02:00
innodb_uninstall.result
innodb_ut_format_name.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
innodb_wl6326.result MDEV-22242 B-trees can become extremely skewed 2020-04-14 18:43:03 +03:00
insert-before-delete.result MDEV-30225 RR isolation violation with locking unique search 2022-12-20 11:31:49 +03:00
insert_debug.result
instant_alter,4k.rdiff MDEV-28304 innodb.instant_alter,8k.rdiff does not apply on FreeBSD 2022-04-13 09:23:52 +03:00
instant_alter,8k.rdiff MDEV-28304 innodb.instant_alter,8k.rdiff does not apply on FreeBSD 2022-04-13 09:23:52 +03:00
instant_alter,32k.rdiff Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
instant_alter,64k.rdiff Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
instant_alter.result MDEV-28822 Table from older version requires table rebuild when adding column to table with multi-column index 2022-10-26 09:34:28 +04:00
instant_alter_bugs.result Merge 10.4 into 10.5 2023-12-18 08:59:07 +02:00
instant_alter_charset,redundant.rdiff MDEV-26294 Duplicate entries in unique index not detected when changing collation 2022-07-04 08:04:44 +03:00
instant_alter_charset.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
instant_alter_crash.result MDEV-26198 Assertion `0' failed in row_log_table_apply_op during 2023-03-14 13:34:23 +05:30
instant_alter_debug,redundant.rdiff Merge 10.4 into 10.5 2021-07-02 16:19:25 +03:00
instant_alter_debug.result MDEV-31355 innodb_undo_log_truncate=ON fails to wait for purge of enough transaction history 2023-06-08 09:17:52 +03:00
instant_alter_extend,utf8.rdiff MDEV-22771 Instant extension of CHAR column is wrongly allowed 2020-07-20 14:15:56 +03:00
instant_alter_extend.result MDEV-22771 Instant extension of CHAR column is wrongly allowed 2020-07-20 14:15:56 +03:00
instant_alter_import.result Merge 10.4 into 10.5 2022-12-13 14:39:18 +02:00
instant_alter_index_rename.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
instant_alter_inject.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
instant_alter_limit,4k.rdiff MDEV-21787 Alter table failure tries to access uninitialized column 2020-05-26 20:27:13 +05:30
instant_alter_limit,8k.rdiff MDEV-21787 Alter table failure tries to access uninitialized column 2020-05-26 20:27:13 +05:30
instant_alter_limit,16k.rdiff MDEV-21787 Alter table failure tries to access uninitialized column 2020-05-27 12:16:58 +05:30
instant_alter_limit,32k.rdiff MDEV-21787 Alter table failure tries to access uninitialized column 2020-05-26 20:27:13 +05:30
instant_alter_limit,64k.rdiff MDEV-21787 Alter table failure tries to access uninitialized column 2020-05-26 20:27:13 +05:30
instant_alter_limit.result MDEV-20949: Merge 10.3 into 10.4 2019-11-14 13:22:29 +02:00
instant_alter_null.result
instant_alter_purge,release.rdiff Merge 10.3 into 10.4 2020-10-29 13:38:38 +02:00
instant_alter_purge.result MDEV-31355 innodb_undo_log_truncate=ON fails to wait for purge of enough transaction history 2023-06-08 09:17:52 +03:00
instant_alter_rollback.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
instant_alter_upgrade.result MDEV-26577 InnoDB: Failing assertion: dict_tf2_is_valid(flags, flags2) during ADD COLUMN 2022-06-27 16:00:34 +03:00
instant_auto_inc.result MDEV-12836 Avoid table rebuild when removing of auto_increment settings 2019-03-20 19:18:21 +01:00
instant_drop.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
leaf_page_corrupted_during_recovery.result MDEV-22242 B-trees can become extremely skewed 2020-04-14 18:43:03 +03:00
lock_delete_updated.result MDEV-29433 innodb.lock_delete_updated is unstable 2022-09-08 13:36:30 +03:00
lock_deleted.result
lock_update_split_rc.result MDEV-28709 unexpected X lock on Supremum in READ COMMITTED 2022-10-25 00:52:10 +03:00
log_buffer_size.result MDEV-32364 Server crashes when starting server with high innodb_log_buffer_size 2023-10-06 14:16:01 +03:00
log_corruption.result MDEV-24412: Create a separate test 2022-11-30 06:57:32 +02:00
log_data_file_size.result
log_file.result Merge branch 10.4 into 10.5 2021-12-26 12:51:04 +01:00
log_file_name.result MDEV-32968 InnoDB fails to restore tablespace first page from doublewrite buffer when page is empty 2024-01-15 14:08:27 +05:30
log_file_name_debug.result Merge 10.4 into 10.5 2022-09-26 13:34:38 +03:00
log_file_size.result MDEV-14425 deprecate and ignore innodb_log_files_in_group 2020-02-19 12:21:59 +03:00
log_upgrade.result MDEV-24412: Create a separate test 2022-11-30 06:57:32 +02:00
max_record_size,4k,compact,innodb.rdiff MDEV-19292 "Row size too large" error when creating table with lots columns when row format is DYNAMIC or COMPRESSED 2019-07-05 17:02:21 +03:00
max_record_size,4k,dynamic,innodb.rdiff MDEV-19292 "Row size too large" error when creating table with lots columns when row format is DYNAMIC or COMPRESSED 2019-07-05 17:02:21 +03:00
max_record_size,4k,innodb,redundant.rdiff MDEV-19292 "Row size too large" error when creating table with lots columns when row format is DYNAMIC or COMPRESSED 2019-07-05 17:02:21 +03:00
max_record_size,8k,compact,innodb.rdiff MDEV-19292 "Row size too large" error when creating table with lots columns when row format is DYNAMIC or COMPRESSED 2019-07-05 17:02:21 +03:00
max_record_size,8k,dynamic,innodb.rdiff MDEV-19292 "Row size too large" error when creating table with lots columns when row format is DYNAMIC or COMPRESSED 2019-07-05 17:02:21 +03:00
max_record_size,16k,compact,innodb.rdiff MDEV-19292 "Row size too large" error when creating table with lots columns when row format is DYNAMIC or COMPRESSED 2019-07-05 17:02:21 +03:00
max_record_size,16k,dynamic,innodb.rdiff MDEV-19292 "Row size too large" error when creating table with lots columns when row format is DYNAMIC or COMPRESSED 2019-07-05 17:02:21 +03:00
max_record_size,16k,innodb,redundant.rdiff MDEV-19292 "Row size too large" error when creating table with lots columns when row format is DYNAMIC or COMPRESSED 2019-07-05 17:02:21 +03:00
max_record_size,32k,compact,innodb.rdiff MDEV-19292 "Row size too large" error when creating table with lots columns when row format is DYNAMIC or COMPRESSED 2019-07-05 17:02:21 +03:00
max_record_size,32k,dynamic,innodb.rdiff MDEV-19292 "Row size too large" error when creating table with lots columns when row format is DYNAMIC or COMPRESSED 2019-07-05 17:02:21 +03:00
max_record_size,32k,innodb,redundant.rdiff MDEV-19292 "Row size too large" error when creating table with lots columns when row format is DYNAMIC or COMPRESSED 2019-07-05 17:02:21 +03:00
max_record_size,64k,compact,innodb.rdiff MDEV-19292 "Row size too large" error when creating table with lots columns when row format is DYNAMIC or COMPRESSED 2019-07-05 17:02:21 +03:00
max_record_size,64k,dynamic,innodb.rdiff MDEV-19292 "Row size too large" error when creating table with lots columns when row format is DYNAMIC or COMPRESSED 2019-07-05 17:02:21 +03:00
max_record_size,64k,innodb,redundant.rdiff MDEV-19292 "Row size too large" error when creating table with lots columns when row format is DYNAMIC or COMPRESSED 2019-07-05 17:02:21 +03:00
max_record_size.result MDEV-19292 "Row size too large" error when creating table with lots columns when row format is DYNAMIC or COMPRESSED 2019-07-05 17:02:21 +03:00
mdev-117.result
mdev-14846.result MDEV-14846 InnoDB: assertion on trx->state because of deadlock error ignored 2021-10-11 12:26:43 +03:00
mdev-15707.result
missing_tablespaces.result MDEV-19886 InnoDB returns misleading ER_NO_SUCH_TABLE_IN_ENGINE 2019-06-27 15:39:04 +03:00
mon_lock_wait_current_count.result MDEV-30658 lock_row_lock_current_waits counter in information_schema.innodb_metrics may become negative 2023-10-05 18:27:54 +03:00
monitor.result Merge 10.4 into 10.5 2023-09-11 11:29:31 +03:00
multi_repair-7404.result
mvcc.result Merge 10.2 into 10.3 2020-07-31 13:51:28 +03:00
mvcc_secondary.result MDEV-25459 MVCC read from index on CHAR or VARCHAR wrongly omits rows 2021-04-24 09:26:49 +03:00
no_pad.result MDEV-26743 InnoDB: CHAR+nopad does not work well 2023-11-10 06:17:23 +04:00
page_cleaner.result MDEV-24917 Page cleaner wrongly remains idle 2021-02-18 18:20:50 +02:00
page_id_innochecksum.result MDEV-19781 Add page id matching check in innochecksum tool 2019-06-28 18:58:52 +05:30
page_reorganize.result Remove deprication from mariadbd --debug 2023-11-28 16:33:22 +02:00
purge.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
purge_secondary.result Merge 10.4 into 10.5 2022-10-06 08:29:56 +03:00
read_only_recover_committed.result Merge branch 10.3 into 10.4 2021-12-25 12:13:03 +01:00
read_only_recovery.result MDEV-31813 SET GLOBAL innodb_max_purge_lag_wait hangs if innodb_read_only 2023-08-24 10:08:51 +03:00
readahead.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
records_in_range,4k.rdiff MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
records_in_range,8k.rdiff MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
records_in_range.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
recovery_memory.result MDEV-30552 fixup: Fix the test for non-debug 2023-02-16 10:16:38 +02:00
recovery_shutdown.result MDEV-29559 Recovery of INSERT_HEAP_DYNAMIC into secondary index fails 2022-09-19 11:46:25 +03:00
rename_table.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
rename_table_debug.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
restart,4k,innodb.rdiff MDEV-27467: innodb to enforce the minimum innodb_buffer_pool_size in SET GLOBAL 2022-01-19 11:10:45 +11:00
restart,8k,innodb.rdiff MDEV-27467: innodb to enforce the minimum innodb_buffer_pool_size in SET GLOBAL 2022-01-19 11:10:45 +11:00
restart,16k,innodb.rdiff MDEV-27467: innodb to enforce the minimum innodb_buffer_pool_size in SET GLOBAL 2022-01-19 11:10:45 +11:00
restart,32k,innodb.rdiff MDEV-27467: innodb to enforce the minimum innodb_buffer_pool_size in SET GLOBAL 2022-01-19 11:10:45 +11:00
restart,64k,innodb.rdiff MDEV-27467: innodb to enforce the minimum innodb_buffer_pool_size in SET GLOBAL 2022-01-19 11:10:45 +11:00
restart.result Merge 10.3 into 10.4 2022-12-13 11:37:33 +02:00
row_format_redundant.result Merge 10.4 into 10.5 2020-09-23 11:32:43 +03:00
row_lock.result
row_size_error_log_warnings_3.result MDEV-20194 test adjustment for s390x 2023-08-22 09:00:51 +03:00
scrub.result MDEV-32163 Crash recovery fails after DROP TABLE in system tablespace 2023-09-14 15:17:27 +03:00
scrub_debug.result MDEV-32028 InnoDB scrubbing doesn't write zero while freeing the extent 2023-08-28 20:27:19 +05:30
skip_symbolic_links.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
snapshot.result
sp_temp_table.result
sql_mode_pad_char_to_full_length.result MDEV-28190 sql_mode makes MDEV-371 virtual column expressions nondeterministic 2023-04-06 16:17:50 +04:00
stat_tables.result MDEV-20354 All but last insert ignored in InnoDB tables when table locked 2019-10-30 23:14:44 +01:00
stats_persistent.result Merge 10.3 into 10.4 2022-06-27 10:14:37 +03:00
stored_fk.result MDEV-18114 Foreign Key Constraint actions don't affect Virtual Column 2023-08-02 14:45:31 +02:00
strict_mode.result MDEV-32128 wrong table name in innodb's "row too big" errors 2023-09-08 19:15:33 +02:00
system_tables.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
table_definition_cache_debug.result MDEV-23855: Remove fil_system.LRU and reduce fil_system.mutex contention 2020-10-26 17:09:01 +02:00
table_flags,32k,debug.rdiff
table_flags,32k,release.rdiff
table_flags,64k,debug.rdiff
table_flags,64k,release.rdiff
table_flags,debug.rdiff
table_flags.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
table_index_statistics.result
tablespace_per_table_not_windows.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
tablespace_per_table_windows.result MDEV-13626 Merge InnoDB test cases from MySQL 5.7 2023-11-08 12:17:14 +02:00
temp_table.result
temp_table_savepoint.result Partition the test innodb.temp_table_savepoint 2020-06-08 12:55:04 +03:00
temporary_table.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
temporary_table_optimization.result Merge remote-tracking branch 'origin/10.4' into 10.5 2022-09-14 16:24:51 +04:00
tmpdir.result
trigger.result
trigger_error.result
truncate.result Merge 10.2 into 10.3 2020-09-22 14:33:03 +03:00
truncate_crash.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
truncate_foreign.result MDEV-24532 Table corruption ER_NO_SUCH_TABLE_IN_ENGINE .. on table with foreign key 2021-03-02 15:23:56 +02:00
truncate_missing.result Merge 10.3 into 10.4 2022-09-13 16:36:38 +03:00
trx_id_future.result MDEV-20425: Enable a test for debug builds 2019-09-05 16:37:32 +03:00
trx_sys_t_find_lf_hash_error.result MDEV-31185 rw_trx_hash_t::find() unpins pins too early 2023-05-19 15:50:20 +03:00
undo_log.result MDEV-20832 Don't print "row size too large" warnings in error log if innodb_strict_mode=OFF and log_warnings<=2 2019-11-20 19:48:03 +07:00
undo_space_dblwr.result MDEV-31851 After crash recovery, undo tablespace fails to open 2023-10-17 18:41:21 +05:30
undo_truncate.result Merge 10.3 into 10.4 2022-03-15 08:10:35 +02:00
undo_truncate_recover.result Merge 10.4 into 10.5 2019-08-16 14:35:32 +03:00
update-cascade.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
update_time.result Merge branch '10.3' into 10.4 2022-08-02 14:15:39 +02:00
update_time_wl6658.result Write information about restart in .result 2019-04-01 19:47:24 +03:00
xa_debug.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
xa_prepare_reset_supremum_lock.result MDEV-30165 X-lock on supremum for prepared transaction for RR 2023-09-21 20:07:53 +03:00
xa_recovery.result Merge 10.3 into 10.4 2020-06-05 18:05:22 +03:00
xa_recovery_debug.result Merge 10.3 into 10.4 2020-04-16 12:12:26 +03:00