mariadb/mysql-test/suite/rpl/r
Monty e62dc52420 MDEV-25292 Atomic CREATE OR REPLACE TABLE
Atomic CREATE OR REPLACE allows to keep an old table intact if the
command fails or during the crash. That is done by renaming the
original table to temporary name, as a backup and restoring it if the
CREATE fails. When the command is complete and logged the backup
table is deleted.

Atomic replace algorithm

  Two DDL chains are used for CREATE OR REPLACE:
  ddl_log_state_create (C) and ddl_log_state_rm (D).

  1. (C) Log rename of ORIG to TMP table (Rename TMP to original).
  2. Rename orignal to TMP.
  3. (C) Log CREATE_TABLE_ACTION of ORIG (drops ORIG);
  4. Do everything with ORIG (like insert data)
  5. (D) Log drop of TMP
  6. Write query to binlog (this marks (C) to be closed in
     case of failure)
  7. Execute drop of TMP through (D)
  8. Close (C) and (D)

  If there is a failure before 6) we revert the changes in (C)
  Chain (D) is only executed if 6) succeded (C is closed on
  crash recovery).

Foreign key errors will be found at the 1) stage.

Additional notes

  - CREATE TABLE without REPLACE and temporary tables is not affected
    by this commit.
    set @@drop_before_create_or_replace=1 can be used to
    get old behaviour where existing tables are dropped
    in CREATE OR REPLACE.

  - CREATE TABLE is reverted if binlogging the query fails.

  - Engines having HTON_EXPENSIVE_RENAME flag set are not affected by
    this commit. Conflicting tables marked with this flag will be
    deleted with CREATE OR REPLACE.

  - Replication execution is not affected by this commit.
    - Replication will first drop the conflicting table and then
      creating the new one.

  - CREATE TABLE .. SELECT XID usage is fixed and now there is no need
    to log DROP TABLE via DDL_CREATE_TABLE_PHASE_LOG (see comments in
    do_postlock()). XID is now correctly updated so it disables
    DDL_LOG_DROP_TABLE_ACTION. Note that binary log is flushed at the
    final stage when the table is ready. So if we have XID in the
    binary log we don't need to drop the table.

  - Three variations of CREATE OR REPLACE handled:

    1. CREATE OR REPLACE TABLE t1 (..);
    2. CREATE OR REPLACE TABLE t1 LIKE t2;
    3. CREATE OR REPLACE TABLE t1 SELECT ..;

  - Test case uses 6 combinations for engines (aria, aria_notrans,
    myisam, ib, lock_tables, expensive_rename) and 2 combinations for
    binlog types (row, stmt). Combinations help to check differences
    between the results. Error failures are tested for the above three
    variations.

  - expensive_rename tests CREATE OR REPLACE without atomic
    replace. The effect should be the same as with the old behaviour
    before this commit.

  - Triggers mechanism is unaffected by this change. This is tested in
    create_replace.test.

  - LOCK TABLES is affected. Lock restoration must be done after new
    table is created or TMP is renamed back to ORIG

  - Moved ddl_log_complete() from send_eof() to finalize_ddl(). This
    checkpoint was not executed before for normal CREATE TABLE but is
    executed now.

  - CREATE TABLE will now rollback also if writing to the binary
    logging failed. See rpl_gtid_strict.test

backup ddl log changes

- In case of a successfull CREATE OR REPLACE we only log
  the CREATE event, not the DROP TABLE event of the old table.

ddl_log.cc changes

  ddl_log_execute_action() now properly return error conditions.
  ddl_log_disable_entry() added to allow one to disable one entry.
  The entry on disk is still reserved until ddl_log_complete() is
  executed.

On XID usage

  Like with all other atomic DDL operations XID is used to avoid
  inconsistency between master and slave in the case of a crash after
  binary log is written and before ddl_log_state_create is closed. On
  recovery XIDs are taken from binary log and corresponding DDL log
  events get disabled.  That is done by
  ddl_log_close_binlogged_events().

On linking two chains together

  Chains are executed in the ascending order of entry_pos of execute
  entries. But entry_pos assignment order is undefined: it may assign
  bigger number for the first chain and then smaller number for the
  second chain. So the execution order in that case will be reverse:
  second chain will be executed first.

  To avoid that we link one chain to another. While the base chain
  (ddl_log_state_create) is active the secondary chain
  (ddl_log_state_rm) is not executed. That is: only one chain can be
  executed in two linked chains.

  The interface ddl_log_link_chains() was defined in "MDEV-22166
  ddl_log_write_execute_entry() extension".

Atomic info parameters in HA_CREATE_INFO

  Many functions in CREATE TABLE pass the same parameters. These
  parameters are part of table creation info and should be in
  HA_CREATE_INFO (or whatever). Passing parameters via single
  structure is much easier for adding new data and
  refactoring.

InnoDB changes
  Added ha_innobase::can_be_renamed_to_backup() to check if
  a table with foreign keys can be renamed.

Aria changes:
- Fixed issue in Aria engine with CREATE + locked tables
  that data was not properly commited in some cases in
  case of crashes.

Known issues:
- InnoDB tables with foreign key definitions are not fully supported
  with atomic create and replace:
  - ha_innobase::can_be_renamed_to_backup() can detect some cases
    where InnoDB does not support renaming table with foreign key
    constraints.  In this case MariaDB will drop the old table before
    creating the new one.
    The detected cases are:
    - The new and old table is using the same foreign key constraint
      name.
    - The old table has self referencing constraints.
  - If the old and new table uses the same name for a constraint the
    create of the new table will fail. The orignal table will be
    restored in this case.
  - The above issues will be fixed in a future commit.
- CREATE OR REPLACE TEMPORARY table is not full atomic. Any conflicting
  table will always be dropped before creating a new one. (Old behaviour).
2025-03-18 18:28:16 +01:00
..
circular_serverid0.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
create_or_replace2.result MariaDB 11.4.4 release 2024-11-08 07:17:00 +01:00
create_or_replace_mix.result MDEV-25292 Atomic CREATE OR REPLACE TABLE 2025-03-18 18:28:16 +01:00
create_or_replace_mix2.result MDEV-25292 Atomic CREATE OR REPLACE TABLE 2025-03-18 18:28:16 +01:00
create_or_replace_row.result MDEV-25292 Atomic CREATE OR REPLACE TABLE 2025-03-18 18:28:16 +01:00
create_or_replace_statement.result MDEV-25292 Atomic CREATE OR REPLACE TABLE 2025-03-18 18:28:16 +01:00
create_select.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
failed_create_view-6409.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
grant_replication_slave.result MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
ignore_table_autoinc-9737.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
kill_hard-6290.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
kill_race_condition.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
last_insert_id.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
master_last_event_time_row.result MDEV-34765: rpl.master_last_event_time_stmt fails with Result Length Mismatch 2024-08-22 20:25:10 -06:00
master_last_event_time_stmt.result MDEV-34765: rpl.master_last_event_time_stmt fails with Result Length Mismatch 2024-08-22 20:25:10 -06:00
max_binlog_total_size.result MDEV-31404 Implement binlog_space_limit 2024-02-14 15:02:21 +01:00
mdev-31448_kill_ooo_finish_optimistic.result Merge branch '10.4' into 10.5 2023-12-02 01:02:50 +01:00
mdev_17588.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
mdev_24667.result MDEV-24667 LOAD DATA INFILE on temporary table not written to slave binlog 2022-03-25 10:49:48 +02:00
myisam_external_lock.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
mysql-wsrep#110-2.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
parallel_backup.result Merge 10.5 into 10.6 2024-04-17 14:14:58 +03:00
parallel_backup_lsu_off.result Merge 10.5 into 10.6 2024-04-17 14:14:58 +03:00
parallel_backup_slave_binlog_off.result Merge 10.5 into 10.6 2024-04-17 14:14:58 +03:00
parallel_backup_xa_debug.result MDEV-35110 Deadlock on Replica during BACKUP STAGE BLOCK_COMMIT on XA transactions 2024-10-28 13:29:21 +02:00
parallel_conflicts.result Split rpl_parallel into two tests to make it easier 2016-09-01 21:11:47 +03:00
password_expiration.result MDEV-7597 Expiration of user passwords 2019-02-21 15:04:03 +01:00
purge_binlog.result Merge branch 'bb-11.5-release' into bb-11.6-release 2024-08-06 17:28:38 +02:00
rename.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
replace.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl000001.a.result
rpl000001.b.result
rpl_000010.result MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_000011.result MDEV-16239 Many test in rpl suite fails 2019-10-08 13:34:25 +05:30
rpl_000013.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_000017.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_15867.result MDEV-16192 Table 't' is specified twice, both as a target for 'CREATE' and... 2018-07-18 20:58:59 +05:30
rpl_15919.result Merge 10.1 into 10.2 2018-11-06 08:41:48 +02:00
rpl_alter.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_alter_db.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_alter_extra_persistent.result MDEV-30985 Replica stops with error on ALTER ONLINE with Geometry Types 2023-08-15 10:16:13 +02:00
rpl_alter_innodb.result rename rpl/rpl_alter_instant -> rpl/rpl_alter_innodb 2023-08-15 10:16:12 +02:00
rpl_alter_online_debug.result MDEV-31804 Assertion `thd->m_transaction_psi == __null' fails 2023-08-15 14:00:28 +02:00
rpl_alter_rollback.result MDEV-11675. Convert the new session var to bool type and test changes 2022-01-31 22:57:39 +02:00
rpl_auditing.result MDEV-33393 audit plugin do not report user did the action.. 2024-02-14 00:02:29 +04:00
rpl_auto_increment.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_auto_increment_11932.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_auto_increment_bug33029.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_auto_increment_bug45679.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
rpl_auto_increment_update_failure.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_autogen_query_multi_byte_char.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_begin_commit_rollback.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
rpl_binlog_cache_disk_full_loaddata.result MDEV-33145 Add FLUSH GLOBAL STATUS 2024-05-27 12:39:03 +02:00
rpl_binlog_cache_disk_full_row.result MDEV-33145 Add FLUSH GLOBAL STATUS 2024-05-27 12:39:03 +02:00
rpl_binlog_commit_by_rotate.result MDEV-32014 Rename binlog cache temporary file to binlog file 2024-10-17 07:53:59 -06:00
rpl_binlog_compress.result test suite for compressed binlog event 2016-10-19 20:20:47 +02:00
rpl_binlog_corruption.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_binlog_dump_slave_gtid_state_info.result Merge 10.6 into 10.11 2024-11-29 13:43:17 +02:00
rpl_binlog_dup_entry.result MDEV-19158: MariaDB 10.2.22 is writing duplicate entries into binary log 2019-05-14 16:06:55 +05:30
rpl_binlog_errors.result Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
rpl_binlog_grant.result MDEV-20076: SHOW GRANTS does not quote role names properly 2020-02-05 17:22:26 +01:00
rpl_binlog_index.result Merge 10.1 into 10.2 2020-09-22 15:21:43 +03:00
rpl_binlog_rollback_cleanup.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_bit.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_bit_npk.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_blackhole.result MDEV-17544 No warning when trying to name a primary key constraint. 2019-07-30 21:57:48 +04:00
rpl_blackhole_row_annotate.result Merge branch 'bb-11.5-release' into bb-11.6-release 2024-08-06 17:28:38 +02:00
rpl_bug26395.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_bug31076.result MDEV-29625 Some clients/scripts refer to old slow log variables 2022-10-04 12:28:04 +02:00
rpl_bug33931.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
rpl_bug37426.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_bug38694.result Merge with MySQL 5.1.55 2011-02-20 18:51:43 +02:00
rpl_bug41902.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
rpl_cant_read_event_incident.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_change_master.result MDEV-32976: Un-deprecate MASTER_USE_GTID=Current_Pos 2024-03-15 18:18:42 +01:00
rpl_change_master_demote.result Merge branch '11.2' into 11.4 2024-08-04 17:27:48 +02:00
rpl_change_master_find_log_pos_err.result MDEV-25284: Assertion `info->type == READ_CACHE || info->type == WRITE_CACHE' failed 2021-10-18 10:43:51 -06:00
rpl_charset.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_charset_sjis.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_checksum.result Merge 10.6 into 10.11 2025-01-08 12:51:26 +02:00
rpl_checksum_cache.result MDEV-33145 Add FLUSH GLOBAL STATUS 2024-05-27 12:39:03 +02:00
rpl_circular_for_4_hosts.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_circular_semi_sync.result Merge branch '11.3' into 11.4 2024-02-15 13:53:21 +01:00
rpl_colSize.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_commit_after_flush.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_concurrency_error.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
rpl_conditional_comments.result Merge branch '10.1' into 10.2 2020-05-02 08:44:17 +02:00
rpl_connection.result MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_corruption.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_create_database.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_create_drop_db.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_create_drop_event.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
rpl_create_drop_function.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_create_drop_index.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_create_drop_procedure.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_create_drop_role.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_create_drop_trigger.result Fixing a bug in the recent commit that added trigger names into error messages 2017-04-23 12:57:26 +04:00
rpl_create_drop_udf.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_create_drop_user.result MDEV-17658 change the structure of mysql.user table 2018-12-12 00:31:44 +01:00
rpl_create_drop_view.result MDEV-23764 Slave crashes in ha_storage_engine_is_enabled upon rename of view 2020-10-24 11:15:51 +02:00
rpl_create_if_not_exists.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_create_or_replace_fail.result MDEV-25292 Atomic CREATE OR REPLACE TABLE 2025-03-18 18:28:16 +01:00
rpl_create_tmp_table_if_not_exists.result 10.0-base merge 2014-02-03 15:22:39 +01:00
rpl_critical_errors.result
rpl_critical_errors.result.txt
rpl_csv.result MDEV-35233: RBR does not work with CSV tables 2024-12-17 17:34:29 +01:00
rpl_ctype_collate_implicit.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_ctype_latin1.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_current_user.result MDEV-20604: Duplicate key value is silently truncated to 64 characters in print_keydup_error 2020-04-01 11:34:32 +02:00
rpl_ddl.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_deadlock_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_deadlock_show_slave_status.result MDEV-10653: SHOW SLAVE STATUS Can Deadlock an Errored Slave 2023-12-11 07:45:23 -07:00
rpl_default.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_delayed_slave,parallel.rdiff Remove dates from all rdiff files 2025-01-05 16:40:11 +02:00
rpl_delayed_slave.result Merge branch '10.6' into 10.11 2024-02-01 18:36:14 +01:00
rpl_delayed_slave2.result MDEV-7145: Delayed replication 2016-10-16 23:44:44 +02:00
rpl_delete_no_where.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_do_grant.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_domain_id_filter.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_domain_id_filter_io_crash.result MDEV-14357: rpl.rpl_domain_id_filter_io_crash failed in buildbot with wrong result 2024-02-12 05:48:18 -07:00
rpl_domain_id_filter_master_crash.result MDEV-33582 Add more warnings to be able to better diagnose network issues 2024-03-05 20:19:49 +02:00
rpl_domain_id_filter_parallel.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_domain_id_filter_restart.result MDEV-10684: rpl.rpl_domain_id_filter_restart fails in buildbot 2024-04-11 09:49:20 -06:00
rpl_drop.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_drop_db.result cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
rpl_drop_db_fail.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_drop_temp.result MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-03-18 18:27:27 +01:00
rpl_drop_temp_table_invalid_lex.result MDEV-19716: ASAN use-after-poison in Query_log_event::Query_log_event / THD::log_events_and_free_tmp_shares 2020-12-08 11:59:58 +05:30
rpl_drop_view.result Change error message when using DROP VIEW on a non existing view from 2017-04-07 18:22:06 +04:00
rpl_dual_pos_advance.result MDEV-17812 Use MariaDB in error messages instead of MySQL 2020-04-08 06:09:42 +00:00
rpl_dump_request_retry_warning.result MDEV-14203: rpl.rpl_extra_col_master_myisam, rpl.rpl_slave_load_tmpdir_not_exist failed in buildbot with a warning 2020-07-23 12:54:40 +05:30
rpl_EE_err.result Changed FLUSH TABLES to not change share version 2018-12-09 22:12:26 +02:00
rpl_empty_master_host.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_empty_string_is_null.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_err_ignoredtable.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_events.result Merge branch '10.2' into 10.3 2019-05-12 17:20:23 +02:00
rpl_extra_col_master_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_extra_col_master_myisam.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_extra_col_slave_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_extra_col_slave_minimal.result Fix recalculation of vcols in binlog_row_image=minimal 2023-08-15 10:16:11 +02:00
rpl_extra_col_slave_myisam.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_fail_register.result MDEV-32168: slave_error_param condition is never checked from the wait_for_slave_param.inc 2023-11-16 10:41:11 +01:00
rpl_failed_optimize.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_filter_dbs_dynamic.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_filter_revoke_missing_user.result MDEV-28530: Revoking privileges from a non-existing user on a master breaks replication on the slave in the presence of replication filters 2022-09-03 13:04:44 +03:00
rpl_filter_set_var_missing_data.result MDEV-28294: set default role bypasses Replicate_Wild_Ignore_Table: mysql.% 2022-08-22 18:23:56 +03:00
rpl_filter_tables_dynamic.result Merge 10.1 into 10.2 2020-09-03 09:10:03 +03:00
rpl_filter_tables_not_exist.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_filter_wild_tables_dynamic.result Merge 10.1 into 10.2 2020-09-03 09:10:03 +03:00
rpl_flush_logs.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_flushlog_loop.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_foreign_key_innodb.result MDEV-25530 Error 1451 on slave: Cannot delete or update a parent row: a foreign key constraint fails 2021-04-29 13:17:31 +02:00
rpl_free_items.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_from_mysql80.result Merge branch '10.6' into 10.11 2025-01-30 11:55:13 +01:00
rpl_function_defaults.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_geometry.result MDEV-30985 Replica stops with error on ALTER ONLINE with Geometry Types 2023-08-15 10:16:13 +02:00
rpl_get_lock.result MDEV-33582 Add more warnings to be able to better diagnose network issues 2024-03-05 20:19:49 +02:00
rpl_get_master_version_and_clock.result MDEV-22189: Change error messages inside code to have mariadb instead of 2021-05-24 11:38:13 +05:30
rpl_gis_user_var.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_grant.result MDEV-17658 change the structure of mysql.user table 2018-12-12 00:31:44 +01:00
rpl_gtid_basic.result MDEV-32976: Un-deprecate MASTER_USE_GTID=Current_Pos 2024-03-15 18:18:42 +01:00
rpl_gtid_crash.result Merge 10.6 into 10.11 2024-03-28 09:16:57 +02:00
rpl_gtid_crash_myisam.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_gtid_delete_domain.result MDEV-32168: slave_error_param condition is never checked from the wait_for_slave_param.inc 2023-11-16 10:41:11 +01:00
rpl_gtid_errorhandling.result MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-03-18 18:27:27 +01:00
rpl_gtid_errorlog.result MDEV-32168: slave_error_param condition is never checked from the wait_for_slave_param.inc 2023-11-28 19:10:42 +01:00
rpl_gtid_excess_initial_delay.result MDEV-28839: remove current_pos where not intentionally being tested 2023-02-13 21:04:52 +00:00
rpl_gtid_glle_no_terminate.result MDEV-4991: GTID binlog indexing 2024-01-27 12:09:54 +01:00
rpl_gtid_grouping.result MDEV-33582 Add more warnings to be able to better diagnose network issues 2024-03-05 20:19:49 +02:00
rpl_gtid_header_valid.result MDEV-33672: 10.11 Fix for Two Phase Alter Flags 2024-04-24 13:19:36 +02:00
rpl_gtid_ignored.result MDEV-16421 Make system tables crash safe 2018-08-14 12:18:38 +03:00
rpl_gtid_index.result MDEV-4991: GTID binlog indexing 2024-01-27 12:09:54 +01:00
rpl_gtid_master_promote.result MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_gtid_mdev4473.result MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_gtid_mdev4474.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_gtid_mdev4484.result Move deletion of old GTID rows to slave background thread 2018-12-07 07:10:40 +01:00
rpl_gtid_mdev4485.result MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_gtid_mdev4820.result Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
rpl_gtid_mdev9033.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_gtid_misc.result MDEV-28839: remove current_pos where not intentionally being tested 2023-02-13 21:04:52 +00:00
rpl_gtid_nobinlog.result MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_gtid_reconnect.result MDEV-28839: remove current_pos where not intentionally being tested 2023-02-13 21:04:52 +00:00
rpl_gtid_slave_filtering.result MDEV-26632: multi source replication filters breaking GTID semantic 2023-12-11 12:04:49 +01:00
rpl_gtid_sort.result MDEV-28839: remove current_pos where not intentionally being tested 2023-02-13 21:04:52 +00:00
rpl_gtid_startpos.result Merge branch '10.6' into 10.11 2023-12-18 11:19:04 +01:00
rpl_gtid_stop_start.result Merge branch '10.6' into 10.11 2024-04-30 16:56:49 +02:00
rpl_gtid_strict.result MDEV-25292 Atomic CREATE OR REPLACE TABLE 2025-03-18 18:28:16 +01:00
rpl_gtid_thread_id.result MDEV-7850: Extend GTID Binlog Events with Thread Id 2024-05-03 13:58:19 -06:00
rpl_gtid_until.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_gtid_until_before_after_gtids.result MDEV-27247: Add keywords "SQL_BEFORE_GTIDS" and "SQL_AFTER_GTIDS" for START SLAVE UNTIL 2023-10-23 06:40:05 -06:00
rpl_heartbeat.result Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
rpl_heartbeat_2slaves.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_heartbeat_basic.result Merge branch '10.6' into 10.11 2023-12-18 11:19:04 +01:00
rpl_heartbeat_debug.result MDEV-33582 Add more warnings to be able to better diagnose network issues 2024-03-05 20:19:49 +02:00
rpl_heartbeat_ssl.result MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_hrtime.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_hrtime_row.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_idempotency.result Merge branch '10.1' into 10.2 2018-12-30 18:30:29 +01:00
rpl_ignore_grant.result Merge 10.2 into 10.3 2021-03-18 12:34:48 +02:00
rpl_ignore_revoke.result MDEV-17658 change the structure of mysql.user table 2018-12-12 00:31:44 +01:00
rpl_ignore_table.result Merge 10.3 into 10.4 2022-12-13 11:37:33 +02:00
rpl_ignore_table_update.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_incident.result MDEV-21360 debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
rpl_incompatible_heartbeat.result MDEV-16146: MariaDB slave stops with following errors. 2021-04-30 20:34:31 +05:30
rpl_init_slave.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_init_slave_errors.result MDEV-21360 debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
rpl_innodb_bug28430.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_innodb_bug30888.result Removed "<select expression> INTO <destination>" deprication. 2023-02-03 11:57:50 +03:00
rpl_innodb_mixed_ddl.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
rpl_innodb_mixed_dml.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_insert.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_insert_delayed,stmt.rdiff Remove dates from all rdiff files 2025-01-05 16:40:11 +02:00
rpl_insert_delayed.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_insert_id.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_insert_id_pk.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_insert_ignore.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_invoked_features.result Merge branch '11.2' into 11.3 2023-12-21 02:14:59 +01:00
rpl_iodku,stmt.rdiff Remove dates from all rdiff files 2025-01-05 16:40:11 +02:00
rpl_iodku.result MDEV-28310 Missing binlog data for INSERT .. ON DUPLICATE KEY UPDATE 2022-05-06 22:16:42 +03:00
rpl_ip_mix.result MDEV-16239 Many test in rpl suite fails 2019-10-08 13:34:25 +05:30
rpl_ip_mix2.result MDEV-16239 Many test in rpl suite fails 2019-10-08 13:34:25 +05:30
rpl_ipv4_as_ipv6.result MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_ipv6.result MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_killed_ddl.result Merge branch '10.1' into 10.2 2019-05-04 17:04:55 +02:00
rpl_known_bugs_detection.result Merge 10.1 into 10.2 2019-08-12 18:25:35 +03:00
rpl_lcase_tblnames_rewrite_db.result Merge 10.1 into 10.2 2018-11-06 08:41:48 +02:00
rpl_LD_INFILE.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_loaddata.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_loaddata_charset.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_loaddata_fatal.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_loaddata_local.result Added missing test file 2023-05-05 13:15:14 +03:00
rpl_loaddata_m.result MDEV-9077 Use sys schema in bootstrapping, incl. mtr 2021-03-18 08:02:48 +01:00
rpl_loaddata_map.result cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
rpl_loaddata_s.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_loaddata_simple.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_loaddata_symlink.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_loadfile.result cleanup: select ... into tests 2025-02-11 20:31:25 +01:00
rpl_locale.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_log_pos.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_lost_events_on_rotate.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_manual_change_index_file.result Merge branch '10.9' into 10.10 2023-08-05 20:34:09 +02:00
rpl_many_optimize.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_mariadb_slave_capability.result MDEV-33331: IO Thread Relay Log Inconsistent Statistics After MDEV-32551 2024-01-31 22:18:31 +01:00
rpl_mark_optimize_tbl_ddl.result Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
rpl_master_pos_wait.result Generate a warning(note) and write to error log if master_pos_wait() fails. 2024-05-27 12:39:02 +02:00
rpl_mdev-11092.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_mdev359.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_mdev382.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_mdev6020.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_mdev6386.result MDEV-28839: remove current_pos where not intentionally being tested 2023-02-13 21:04:52 +00:00
rpl_mdev8193.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
rpl_mdev10863.result MDEV-16421 Make system tables crash safe 2018-08-14 12:18:38 +03:00
rpl_mdev12179.result Removed "<select expression> INTO <destination>" deprication. 2023-02-03 11:57:50 +03:00
rpl_mdev13831.result MDEV-13831: Assertion on event group missing XID/COMMIT event 2024-12-05 12:08:12 +01:00
rpl_mdev33798.result Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
rpl_mdev_17614.result Merge branch '10.6' into 10.11 2023-12-18 11:19:04 +01:00
rpl_memory_engine_truncate_on_restart.result MDEV-25607: Auto-generated DELETE from HEAP table can break replication 2024-07-05 12:00:09 -06:00
rpl_misc_functions.result Removed "<select expression> INTO <destination>" deprication. 2023-02-03 11:57:50 +03:00
rpl_mix_found_rows.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_mixed2_drop_create_temp_table.result MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-03-18 18:27:27 +01:00
rpl_mixed_binlog_max_cache_size.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_mixed_bit_pk.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_mixed_ddl_dml.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_mixed_drop_create_temp_table.result MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-03-18 18:27:27 +01:00
rpl_mixed_implicit_commit_binlog.result MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-03-18 18:27:27 +01:00
rpl_mixed_mixing_engines.result MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-03-18 18:27:27 +01:00
rpl_mixed_row_innodb.result BUG#51894 Replication failure with SBR on DROP TEMPORARY TABLE inside a 2010-04-20 10:10:43 +01:00
rpl_multi_delete.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_multi_delete2.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_multi_engine.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_multi_update.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_multi_update2.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_multi_update3.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_multi_update4.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_mysql57_stm_temporal_round.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_mysql80_stm_temporal_round.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_mysql_manager_race_condition.result MDEV-33799: mysql_manager_submit Segfault at Startup Still Possible During Recovery 2024-04-03 11:55:18 -06:00
rpl_mysql_upgrade.result Merge 10.5 into 10.6 2023-10-06 14:34:01 +03:00
rpl_mysqlbinlog_slave_consistency.result MDEV-28435: rpl.rpl_mysqlbinlog_slave_consistency fails intermittently on tables comparison 2022-04-28 11:46:08 -06:00
rpl_mysqldump_gtid_slave_pos.result Merge 10.6 into 10.11 2025-01-02 12:39:56 +02:00
rpl_name_const.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_non_direct_mixed_mixing_engines.result MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-03-18 18:27:27 +01:00
rpl_non_direct_row_mixing_engines.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
rpl_non_direct_stm_mixing_engines.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
rpl_nondeterministic_functions.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_not_null_innodb.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_not_null_myisam.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_old_decimal.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_old_master.result Merge 10.6 into 10.11 2024-08-29 07:47:29 +03:00
rpl_old_master_29078.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_optimize.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_packet.result MDEV-33582 Add more warnings to be able to better diagnose network issues 2024-03-05 20:19:49 +02:00
rpl_parallel2.result Revert "MDEV-13915: STOP SLAVE takes very long time on a busy system" 2023-06-06 08:11:38 -06:00
rpl_parallel_29322.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_parallel_analyze.result Merge branch '10.3' into 10.4 2023-01-28 18:22:55 +01:00
rpl_parallel_analyze_table_hang.result MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_autoinc.result Merge 10.4 into 10.5 2023-08-15 18:02:18 +02:00
rpl_parallel_charset.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_parallel_conflicts.result MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_deadlock_corrupt_binlog.result Merge branch '10.4' into 10.5 2022-05-09 22:04:06 +02:00
rpl_parallel_deadlock_victim.result Merge 10.4 into 10.5 2023-08-15 18:02:18 +02:00
rpl_parallel_deadlock_victim2.result Merge 10.4 into 10.5 2023-08-15 18:02:18 +02:00
rpl_parallel_domain.result MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_domain_slave_single_grp.result MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_free_deferred_event.result MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_ftwrl.result MDEV-31509: Lost data with FTWRL and STOP SLAVE 2023-07-12 09:41:32 +02:00
rpl_parallel_gco_wait_kill.result MDEV-515 Reduce InnoDB undo logging for insert into empty table 2021-01-25 18:41:27 +02:00
rpl_parallel_gtid_slave_pos_update_fail.result MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_ignore_error_on_rotate.result MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_ignored_errors.result Merge branch '10.5' into 10.6 2023-12-17 11:20:43 +01:00
rpl_parallel_incorrect_relay_pos.result MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_innodb_lock_conflict.result Fix sporadic failure of rpl.rpl_parallel_innodb_lock_conflict 2025-02-19 11:28:47 +00:00
rpl_parallel_kill.result MDEV-32168: slave_error_param condition is never checked from the wait_for_slave_param.inc 2023-11-16 10:41:11 +01:00
rpl_parallel_mdev6589.result MDEV-28839: remove current_pos where not intentionally being tested 2023-02-13 21:04:52 +00:00
rpl_parallel_missed_error_handling.result Merge branch '10.4' into 10.5 2023-12-02 01:02:50 +01:00
rpl_parallel_mode.result MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_multi_domain_xa.result MDEV-34042: Deadlock kill of XA PREPARE can break replication / rpl.rpl_parallel_multi_domain_xa sporadic failure 2024-05-05 19:01:56 +02:00
rpl_parallel_multilevel.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_parallel_multilevel2.result MDEV-28839: remove current_pos where not intentionally being tested 2023-02-13 21:04:52 +00:00
rpl_parallel_no_log_slave_updates.result MDEV-515 Reduce InnoDB undo logging for insert into empty table 2021-01-25 18:41:27 +02:00
rpl_parallel_optimistic.result Merge 11.0 into 11.1 2024-03-28 12:15:36 +02:00
rpl_parallel_optimistic_error_stop.result MDEV-30780 optimistic parallel slave hangs after hit an error 2023-03-16 18:55:19 +02:00
rpl_parallel_optimistic_nobinlog.result MDEV-21921 Make transaction_isolation and transaction_read_only into system variables 2023-04-12 11:04:29 +10:00
rpl_parallel_optimistic_until.result MDEV-15152 Optimistic parallel slave doesnt cope well with START SLAVE UNTIL 2020-05-26 18:49:43 +03:00
rpl_parallel_optimistic_xa.result MDEV-33582 Add more warnings to be able to better diagnose network issues 2024-03-05 20:19:49 +02:00
rpl_parallel_optimistic_xa_lsu_off.result MDEV-33582 Add more warnings to be able to better diagnose network issues 2024-03-05 20:19:49 +02:00
rpl_parallel_partial_binlog_trans.result MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_partition.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_parallel_record_gtid_wakeup.result MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_retry.result MDEV-33303: slave_parallel_mode=optimistic should not report the mode's specific temporary errors 2024-03-15 15:55:06 +01:00
rpl_parallel_retry_deadlock.result MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_rollback_assert.result MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_sbm.result MDEV-35939: rpl.rpl_parallel_sbm: "Slave_last_event_time is not equal to Master_last_event_time" 2025-01-26 09:17:23 -07:00
rpl_parallel_seq.result MDEV-31779 Server crash in Rows_log_event::update_sequence upon replaying binary log 2024-04-10 19:31:39 +03:00
rpl_parallel_show_binlog_events_purge_logs.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_parallel_single_grpcmt.result MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_slave_bgc_kill.result sporadic failures of binlog_encryption.rpl_parallel_slave_bgc_kill 2024-04-21 01:17:31 +02:00
rpl_parallel_stop_on_con_kill.result MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_stop_slave.result Merge 10.5 into 10.6 2024-03-18 17:07:32 +02:00
rpl_parallel_temptable.result Merge 10.6 into 10.11 2024-03-28 09:16:57 +02:00
rpl_parallel_wrong_binlog_order.result MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_wrong_exec_master_pos.result MDEV-18648: slave_parallel_mode= optimistic default in 10.5 2019-12-23 17:48:01 +05:30
rpl_parallel_xa_same_xid.result MDEV-742 XA PREPAREd transaction survive disconnect/server restart 2020-03-14 22:45:48 +02:00
rpl_partition_archive.result MDEV-5798: Wrong errorcode for missing partition after TRUNCATE PARTITION 2024-12-05 08:17:35 +01:00
rpl_partition_innodb.result Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
rpl_partition_memory.result Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
rpl_partition_myisam.result Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
rpl_password_boundaries.result MDEV-24312 master_host has 60 character limit, increase to 255 bytes 2021-04-20 16:36:56 +02:00
rpl_performance_schema.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_perfschema_applier_config.result MDEV-16437: merge 5.7 P_S replication instrumentation and tables 2021-04-16 09:05:39 +05:30
rpl_perfschema_applier_status.result MDEV-16437: merge 5.7 P_S replication instrumentation and tables 2021-04-16 09:11:48 +05:30
rpl_perfschema_applier_status_by_coordinator.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_perfschema_applier_status_by_worker.result MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_perfschema_connect_config.result Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
rpl_plugin_load.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_ps.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_query_cache.result MDEV-27047: Replication fails to remove affected queries from query cache 2021-11-16 13:58:22 +02:00
rpl_rbr_monitor.result MDEV-7409 On RBR, extend the PROCESSLIST info to include at least the name of the recently used table 2021-02-26 12:27:17 +00:00
rpl_rbr_to_sbr.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
rpl_read_new_relay_log_info.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_read_old_relay_log_info.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_read_only.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_read_only2.result Merge 10.3 into 10.4 2019-11-01 15:23:18 +02:00
rpl_relay_max_extension.result MDEV-8134: The relay-log is not flushed after the slave-relay-log.999999 showed 2021-01-21 13:00:02 +05:30
rpl_relay_space_innodb.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_relay_space_myisam.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_relayrotate.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_relayspace.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_reopen_temp_table.result MDEV-5535: Cannot reopen temporary table 2016-06-10 18:39:43 -04:00
rpl_replicate_do.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_replicate_ignore_db.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_report.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_report_port.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_reset_slave_all_clears_filters.result MDEV-25284: Assertion `info->type == READ_CACHE || info->type == WRITE_CACHE' failed 2021-10-18 10:43:51 -06:00
rpl_reset_slave_fail.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_rewrite_db_sys_vars.result Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
rpl_rewrt_db.result MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-03-18 18:27:27 +01:00
rpl_rotate_logs.result Fix sporadic failure in test rpl.rpl_rotate_logs 2024-08-16 22:27:01 +02:00
rpl_rotate_purge_deadlock.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_001.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_row_4_bytes.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_annotate_do.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_row_annotate_dont.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_row_basic_2myisam.result MDEV-8334: Rename utf8 to utf8mb3 2021-05-19 06:48:36 +02:00
rpl_row_basic_3innodb.result MDEV-8334: Rename utf8 to utf8mb3 2021-05-19 06:48:36 +02:00
rpl_row_basic_8partition.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_row_basic_11bugs.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_row_big_table_id,32bit.rdiff Remove dates from all rdiff files 2025-01-05 16:40:11 +02:00
rpl_row_big_table_id.result Fixed some mtr tests that failed on windows 2024-01-23 13:03:12 +02:00
rpl_row_binlog_max_cache_size.result MDEV-32168: slave_error_param condition is never checked from the wait_for_slave_param.inc 2023-11-28 19:10:42 +01:00
rpl_row_blob_innodb.result MDEV-30985 Replica stops with error on ALTER ONLINE with Geometry Types 2023-08-15 10:16:13 +02:00
rpl_row_blob_myisam.result MDEV-30985 Replica stops with error on ALTER ONLINE with Geometry Types 2023-08-15 10:16:13 +02:00
rpl_row_colSize.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_row_conflicts.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_corruption.result MDEV-32168: slave_error_param condition is never checked from the wait_for_slave_param.inc 2023-11-28 19:10:42 +01:00
rpl_row_create_select.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_row_create_table.result Merge 11.4 into 11.7 2025-01-09 09:41:38 +02:00
rpl_row_delayed_ins.result Changed FLUSH TABLES to not change share version 2018-12-09 22:12:26 +02:00
rpl_row_drop.result MDEV-12459 Get temporary tables visible to the IS.tables for current connection 2023-08-11 19:36:21 +02:00
rpl_row_drop_create_temp_table.result MDEV-26833 Missed statement rollback in case transaction drops or create temporary table 2021-11-05 19:33:28 +02:00
rpl_row_drop_temp_table.result Merge 10.1 into 10.2 2019-07-25 12:14:27 +03:00
rpl_row_end_of_statement_loss.result MDEV-32104 remove deprecated features 2023-09-30 14:43:12 +02:00
rpl_row_err_ignoredtable.result
rpl_row_find_row.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_row_find_row_debug.result MDEV-33582 Add more warnings to be able to better diagnose network issues 2024-03-05 20:19:49 +02:00
rpl_row_flsh_tbls.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_row_func001.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_func002.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_func003.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_idempotency.result MDEV-32168: slave_error_param condition is never checked from the wait_for_slave_param.inc 2023-11-16 10:41:11 +01:00
rpl_row_img_blobs.result MDEV-32589 FULL_NODUP mode for binlog_row_image 2023-11-23 08:28:54 +00:00
rpl_row_img_eng_full_nodup.result MDEV-33049 Assertion `marked_for_write_or_computed()' failed in bool 2024-01-12 08:32:22 +00:00
rpl_row_img_eng_min.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_row_img_eng_noblob.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_row_img_full_nodup.result MDEV-32589 FULL_NODUP mode for binlog_row_image 2023-11-23 08:28:54 +00:00
rpl_row_img_sequence_full.result MDEV-28986: rpl tests sometimes failing on freebsd builders 2022-09-20 15:24:13 -06:00
rpl_row_img_sequence_full_nodup.result MDEV-32589 FULL_NODUP mode for binlog_row_image 2023-11-23 08:28:54 +00:00
rpl_row_img_sequence_min.result MDEV-28986: rpl tests sometimes failing on freebsd builders 2022-09-20 15:24:13 -06:00
rpl_row_img_sequence_noblob.result MDEV-28986: rpl tests sometimes failing on freebsd builders 2022-09-20 15:24:13 -06:00
rpl_row_implicit_commit_binlog.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_row_index_choice.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_inexist_tbl.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_lcase_tblnames.result Merge 10.1 into 10.2 2018-11-06 08:41:48 +02:00
rpl_row_loaddata_concurrent.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_row_loaddata_m.result
rpl_row_log.result Merge 10.1 into 10.2 2017-12-05 14:23:57 +02:00
rpl_row_log_innodb.result Merge 10.1 into 10.2 2017-12-05 14:23:57 +02:00
rpl_row_max_relay_size.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_merge_engine.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_row_mixing_engines.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
rpl_row_multi_query.result
rpl_row_mysqlbinlog.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_row_NOW.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_rec_comp_innodb.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_row_rec_comp_myisam.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_row_reset_slave.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_row_rollback_to_savepoint.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
rpl_row_show_relaylog_events.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
rpl_row_sp001.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_sp002_innodb.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_sp003.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_sp005.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_sp006_InnoDB.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_sp007_innodb.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_sp008.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_sp009.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_sp010.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_sp011.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_sp012.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_spatial.result Merge 10.1 into 10.2 2018-08-21 15:20:34 +03:00
rpl_row_tabledefs_2myisam.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_tabledefs_3innodb.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_tbl_metadata.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_row_to_stmt.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
rpl_row_trig001.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_trig002.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_trig003.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_trig004.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_trigger_multi_db.result MDEV-29894: Calling a function from a different database in a slave side trigger crashes 2023-06-21 12:51:01 -06:00
rpl_row_triggers.result MDEV-21833 Make slave_run_triggers_for_rbr enforce triggers to run on slave, even when there are triggers on the master 2020-03-09 22:16:43 +02:00
rpl_row_trunc_temp.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_type_conv_err_msg.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_row_unsafe_funcs.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_until.result Merge branch '10.6' into 10.11 2023-12-18 11:19:04 +01:00
rpl_row_USER.result reenable tests from engines/funcs 2021-03-10 09:12:57 +01:00
rpl_row_utf16.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_row_utf32.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_row_UUID.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_row_vcol_crash.result MDEV-23033: All slaves crash once in ~24 hours and loop restart with signal 11 2021-01-04 15:06:12 +05:30
rpl_row_view01.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_row_virt.result MDEV-19338 InnoDB: Failing assertion: !cursor->index->is_committed() 2020-07-31 17:32:29 +10:00
rpl_row_wide_table.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_savepoint.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_seconds_behind_master_spike.result Merge branch '10.6' into 10.11 2024-02-01 18:36:14 +01:00
rpl_semi_sync.result MDEV-33145 Add FLUSH GLOBAL STATUS 2024-05-27 12:39:03 +02:00
rpl_semi_sync_after_sync.result MDEV-33145 Add FLUSH GLOBAL STATUS 2024-05-27 12:39:03 +02:00
rpl_semi_sync_after_sync_coord_consistency.result MDEV-35109: Semi-sync Replication stalling Primary using wait point=AFTER_SYNC 2024-11-04 10:45:58 -07:00
rpl_semi_sync_after_sync_row.result MDEV-33145 Add FLUSH GLOBAL STATUS 2024-05-27 12:39:03 +02:00
rpl_semi_sync_cond_var_per_thd.result Testing fix for rpl_semi_sync_cond_var_per_thd failure 2024-10-30 08:32:19 -06:00
rpl_semi_sync_event.result MDEV-32551: "Read semi-sync reply magic number error" warnings on master 2024-01-23 13:03:11 +02:00
rpl_semi_sync_event_after_sync.result MDEV-32551: "Read semi-sync reply magic number error" warnings on master 2024-01-23 13:03:11 +02:00
rpl_semi_sync_fail_over.result Merge remote-tracking branch 'origin/11.2' into 11.4 2024-07-09 21:45:37 +04:00
rpl_semi_sync_gtid_reconnect.result rpl_semi_sync_gtid_reconnect results merge 2019-11-11 21:12:14 +02:00
rpl_semi_sync_master_shutdown.result sporadic failures of rpl.rpl_semi_sync_master_shutdown 2024-04-10 19:38:39 +02:00
rpl_semi_sync_no_missed_ack_after_add_slave.result MDEV-35477: rpl_semi_sync_no_missed_ack_after_add_slave fails after MDEV-35109 2024-11-21 11:30:25 -07:00
rpl_semi_sync_shutdown_await_ack.result MDEV-35350: Consolidate MTR wait_for_pattern_in_file.inc and SEARCH_WAIT in search_pattern_in_file.inc 2024-11-07 13:25:58 -07:00
rpl_semi_sync_skip_repl.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
rpl_semi_sync_slave_compressed_protocol.result MDEV-24773: slave_compressed_protocol doesn't work properly with semi-sync replication 2021-04-26 11:09:39 +05:30
rpl_semi_sync_slave_enabled_consistent.result MDEV-33716: rpl.rpl_semi_sync_slave_enabled_consistent Fails with Error Condition Reached 2024-03-19 14:16:07 -06:00
rpl_semi_sync_slave_reply_fail.result Merge branch '11.2' into 11.3 2024-02-04 16:42:31 +01:00
rpl_semi_sync_wait_no_slave.result MDEV-18096 The server would crash when has configs rpl_semi_sync_master_enabled = OFF rpl_semi_sync_master_wait_no_slave = OFF 2019-04-19 18:48:16 +03:00
rpl_semi_sync_wait_point.result MDEV-30269: Remove rpl_semi_sync_[slave,master] usage in code 2023-03-23 13:39:46 +01:00
rpl_semisync_ali_issues.result Merge branch '11.3' into 11.4 2024-02-15 13:53:21 +01:00
rpl_server_id1.result MDEV-22189: Change error messages inside code to have mariadb instead of 2021-05-24 11:38:13 +05:30
rpl_server_id2.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_server_id_ignore.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_session_var.result MDEV-32551: "Read semi-sync reply magic number error" warnings on master 2024-01-23 13:03:11 +02:00
rpl_session_var2.result MDEV-32551: "Read semi-sync reply magic number error" warnings on master 2024-01-23 13:03:11 +02:00
rpl_set_charset.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_set_null_innodb.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_set_null_myisam.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_set_statement.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_set_statement_default_master.result MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_show_slave_hosts.result MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_show_slave_running.result MDEV-21360 global debug_dbug pre-test value restoration issues 2020-01-15 18:06:24 +01:00
rpl_show_slave_status.result MDEV-35304: Add Connects_Tried and Master_Retry_Count to SSS 2025-02-26 20:37:53 -07:00
rpl_shutdown_sighup.result MDEV-30260: Slave crashed:reload_acl_and_cache during shutdown 2024-04-09 14:25:13 -06:00
rpl_shutdown_wait_semisync_slaves.result MDEV-32168: slave_error_param condition is never checked from the wait_for_slave_param.inc 2023-11-17 19:44:11 +01:00
rpl_shutdown_wait_slaves.result MDEV-32168: slave_error_param condition is never checked from the wait_for_slave_param.inc 2023-11-17 19:44:11 +01:00
rpl_skip_error.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_skip_incident.result MDEV-8429: Change binlog_checksum default to match MySQL 5.6.6+ 2016-05-20 09:46:03 +02:00
rpl_skip_replication.result MDEV-29668 SUPER should not allow actions that have fine-grained dedicated privileges 2023-02-06 14:31:48 +01:00
rpl_slave_alias_replica.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_slave_grp_exec.result SP stack trace 2017-05-29 15:46:29 +04:00
rpl_slave_invalid_external_user.result MDEV-14784: Slave crashes in show_status_array upon running a trigger with 2019-03-27 12:34:03 +05:30
rpl_slave_load_in.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_slave_load_remove_tmpfile.result fix for rpl_slave_load_remove_tmpfile.test 2020-01-16 10:25:01 +01:00
rpl_slave_load_tmpdir_not_exist.result MDEV-32168: slave_error_param condition is never checked from the wait_for_slave_param.inc 2023-11-17 19:44:11 +01:00
rpl_slave_max_statement_time.result MDEV-27161: Add option for SQL thread to limit maximum execution time per query replicated 2022-08-03 20:25:43 +03:00
rpl_slave_restart_long_password.result MDEV-23857: replication master password length 2024-06-18 07:21:18 -06:00
rpl_slave_shutdown_mdev20821.result MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_slave_skip.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_slave_status.result MDEV-32168: slave_error_param condition is never checked from the wait_for_slave_param.inc 2023-11-16 10:41:11 +01:00
rpl_slow_query_log.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_sp.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_sp004.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_sp_effects.result MDEV-7635: Update tests to adapt to the new default sql_mode 2017-02-10 06:30:42 -05:00
rpl_sp_variables.result Update testcase post merge 2017-09-20 00:46:08 +03:00
rpl_spec_variables.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_special_charset.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_sporadic_master.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_sql_thd_start_errno_cleared.result MDEV-32651: Lost Debug_sync signal in rpl_sql_thd_start_errno_cleared 2023-11-01 07:35:07 -06:00
rpl_ssl.result MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_ssl1.result MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_start_alter_1.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_start_alter_2.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_start_alter_3.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_start_alter_4.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_start_alter_5.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_start_alter_6.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_start_alter_7.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_start_alter_8.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_start_alter_bugs.result MDEV-11675 Lag Free Alter On Slave 2022-01-27 21:25:07 +02:00
rpl_start_alter_chain_basic.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_start_alter_ftwrl.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_start_alter_instant.result MDEV-33655 Remove alter_algorithm 2024-05-27 12:39:03 +02:00
rpl_start_alter_mysqlbinlog_1.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_start_alter_mysqlbinlog_2.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_start_alter_optimize.result MDEV-11675. Convert the new session var to bool type and test changes 2022-01-31 22:57:39 +02:00
rpl_start_alter_para_to_seq.result MDEV-11675. Convert the new session var to bool type and test changes 2022-01-31 22:57:39 +02:00
rpl_start_alter_restart_master.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_start_alter_restart_slave.result Merge remote-tracking branch 'origin/11.2' into 11.4 2024-07-09 21:45:37 +04:00
rpl_start_stop_slave.result minor fixes of rpl_start_stop_slave and rpl_slave_grp_exec tests, expanding rpl_gtid_delete_domain for easier later analysis 2020-10-14 18:16:57 +02:00
rpl_stm_000001.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_stm_auto_increment_bug33029.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
rpl_stm_binlog_max_cache_size.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_stm_conflicts.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_stm_drop_create_temp_table.result MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-03-18 18:27:27 +01:00
rpl_stm_EE_err2.result Update errmsg-utf8.txt re my_snprintf suffixes 2025-02-12 10:17:44 +01:00
rpl_stm_flsh_tbls.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_stm_found_rows.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_stm_implicit_commit_binlog.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_stm_innodb.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_stm_lcase_tblnames.result Merge 10.1 into 10.2 2018-11-06 08:41:48 +02:00
rpl_stm_loaddata_concurrent.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_stm_loadfile.result Remove end . from error messages to get them consistent 2016-10-05 01:11:08 +03:00
rpl_stm_log.result Merge 10.1 into 10.2 2017-12-05 14:23:57 +02:00
rpl_stm_maria.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_stm_max_relay_size.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_stm_mix_show_relaylog_events.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
rpl_stm_mixing_engines.result Updated wrong result files 2018-08-14 11:22:05 +03:00
rpl_stm_multi_query.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_stm_no_op.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_stm_relay_ign_space.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_stm_reset_slave.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_stm_sp.result MDEV-11913 Split sp_get_item_value() into methods in Type_handler 2017-02-01 15:36:22 +04:00
rpl_stm_sql_mode.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_stm_start_stop_slave.result Merge branch '10.6' into 10.11 2023-12-18 11:19:04 +01:00
rpl_stm_stop_middle_group.result MDEV-32168: slave_error_param condition is never checked from the wait_for_slave_param.inc 2023-11-16 10:41:11 +01:00
rpl_stm_until.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_stm_user_variables.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_stop_slave.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_stop_slave_error.result MDEV-32892: IO Thread Reports False Error When Stopped During Connecting to Primary 2024-07-08 10:39:17 -06:00
rpl_strict_password_validation.result Merge branch '10.1' into 10.2 2017-02-10 17:01:45 +01:00
rpl_switch_stm_row_mixed.result UUID() function should return UUID, not VARCHAR(36) 2021-10-29 18:29:02 +02:00
rpl_sync.result Merge 10.5 into 10.6 2021-04-21 11:45:00 +03:00
rpl_system_versioning_partitions.result Merge branch '11.4' into 11.7 2025-02-06 16:46:36 +01:00
rpl_table_options.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_temp_table.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_temp_table_mix_row.opt MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-03-18 18:27:27 +01:00
rpl_temp_table_mix_row.result MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-03-18 18:27:27 +01:00
rpl_temporal_format_default_to_default.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_temporal_format_mariadb53_to_mariadb53.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_temporal_format_mariadb53_to_mysql56.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_temporal_format_mariadb53_to_mysql56_dst.result Merge branch '10.1' into 10.2 2017-09-22 02:27:00 +02:00
rpl_temporal_format_mysql56_to_mariadb53.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_temporal_format_mysql56_to_mysql56.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_temporal_mysql56.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_temporal_mysql56_to_mariadb.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
rpl_temporal_mysql56_to_mariadb53.result MDEV-29446 Change SHOW CREATE TABLE to display default collation 2022-09-12 22:10:39 +04:00
rpl_temporal_round.result MDEV-16991 Rounding vs truncation for TIME, DATETIME, TIMESTAMP 2018-11-26 08:10:47 +04:00
rpl_temporary.result MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-03-18 18:27:27 +01:00
rpl_temporary_error2.result MDEV-7635: Part 1 2017-02-10 06:30:42 -05:00
rpl_temporary_error2_skip_all.result MDEV-27512: Assertion !thd->transaction_rollback_request failed in rows_event_stmt_cleanup 2024-04-17 11:14:21 -06:00
rpl_temporary_errors.result MDEV-742 XA PREPAREd transaction survive disconnect/server restart 2020-03-14 22:45:48 +02:00
rpl_test_framework.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_timestamp.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_timezone.result MDEV-7635: Additional test fixes 2017-02-10 06:30:42 -05:00
rpl_tmp_table_and_DDL.result Merge branch '10.3' into 10.4 2019-05-19 20:55:37 +02:00
rpl_tmp_table_and_DDL_innodb.result Post-merge: Update test results 2016-06-30 23:56:18 -04:00
rpl_trans_no_trans.result MDEV-34679 ER_BAD_FIELD uses non-localizable substrings 2024-10-17 21:37:37 +02:00
rpl_trigger.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_trunc_temp.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_truncate_2myisam.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_truncate_3innodb.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_typeconv.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_typeconv_innodb.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_udf.result Improve error message for ER_CANT_FIND_DL_ENTRY 2024-05-27 12:39:03 +02:00
rpl_unsafe_statements.result Merge branch '10.5' into 10.6 2022-05-10 14:01:23 +02:00
rpl_update.result MDEV-13417 UPDATE produces wrong values if an updated column is later used as an update source 2018-02-12 13:14:23 +01:00
rpl_upgrade_master_info.result MDEV-31857 enable --ssl-verify-server-cert by default in the internal client 2024-02-04 22:19:19 +01:00
rpl_user.result MDEV-17753 ALTER USER fail to replicate 2019-01-13 20:59:45 +05:30
rpl_user_variables.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_using_gtid_default.result MDEV-32976: Un-deprecate MASTER_USE_GTID=Current_Pos 2024-03-15 18:18:42 +01:00
rpl_variables.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_variables_stm.result cleanup: get rid of a SQL warning in a test 2018-10-31 16:06:16 +01:00
rpl_view.result Item::print(): remove redundant parentheses 2016-12-12 20:44:41 +01:00
rpl_view_debug.result Merge branch '10.2' into 10.3 2020-01-17 00:46:40 +03:00
rpl_view_multi.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
rpl_xa.result MDEV-35773 ER_PSEUDO_THREAD_ID_OVERWRITE in 11.4 shifts error messages 2025-01-07 09:29:58 -05:00
rpl_xa_2pc_multi_engine.result MDEV-26652: xa transactions binlogged in wrong order 2025-01-30 11:30:33 -07:00
rpl_xa_empty_transaction.result MDEV-33921: Fix rpl_xa_empty_transaction.test 2024-07-17 16:38:26 -06:00
rpl_xa_gap_lock.result MDEV-19801: Change defaults for CHANGE MASTER TO so that GTID-based replication is used by default if master supports it 2022-07-26 13:31:27 -06:00
rpl_xa_gtid_pos_auto_engine.result MDEV-35773 ER_PSEUDO_THREAD_ID_OVERWRITE in 11.4 shifts error messages 2025-01-07 09:29:58 -05:00
rpl_xa_prepare_gtid_fail.result MDEV-31038: rpl.rpl_xa_prepare_gtid_fail clean up 2023-09-13 10:59:26 -06:00
rpl_xa_survive_disconnect.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_xa_survive_disconnect_lsu_off.result MDEV-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04:00
rpl_xa_survive_disconnect_mixed_engines.result MDEV-742 XA PREPAREd transaction survive disconnect/server restart 2020-03-14 22:45:48 +02:00
sec_behind_master-5114.result Merge 10.1 into 10.2 2017-01-05 20:44:26 +02:00
semisync_future-7591.result Merge branch '10.6' into 10.11 2023-12-18 11:19:04 +01:00
semisync_memleak_4066.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
sequence.result Re-record failing SEQUENCE tests 2017-06-14 15:12:32 +03:00
show_status_stop_slave_race-7126.result Merge branch '11.2' into 11.4 2024-05-21 19:38:51 +02:00
slave_abort_blocking_timeout.result MDEV-34857: Implement --slave-abort-blocking-timeout 2024-09-04 11:44:14 +02:00
temporal_row-9560,old2new.rdiff MDEV-9560 Mariadb 10.1 Crashes when replicating from 10.0 2016-02-23 10:46:16 +01:00
temporal_row-9560.result MDEV-6720 - enable connection log in mysqltest by default 2016-03-31 10:11:16 +04:00
tmp_space_usage.result MDEV-9101 Limit size of created disk temporary files and tables 2024-05-27 12:39:04 +02:00
vector.result MDEV-35204 mysqlbinlog --verbose fails on row events with vector type 2024-11-05 14:00:52 -08:00