mariadb/mysql-test/suite/rpl/r
Monty c0bd9cdf13 MDEV-36290: Improved support of replication between tables of different structure
One can have data loss in multi-master setups when 1) both masters
update the same table, 2) ALTER TABLE is run on one master which
re-arranges the column ordering, and 3) transactions are binlogged
in ROW binlog_format.

This is because the slave assumes that all columns are in the same
order on the master and slave and all columns on the master also
exists on the slave. This happens even if binlog_row_metadata=FULL is
used.  If this is not the case, this will lead to silent data loss.

A new option for slave_type_conversions bit field,
ERROR_IF_MISSING_FIELD, has been added, along with a new error,
ER_SLAVE_INCOMPATIBLE_TABLE_DEF. This allows the user to define if
the slave should abort replication if it is missing some field that
existed on the master. The option is off by default to keep things
compatible with earlier versions.
If a field is missing on the slave and log_warnings >= 1, a warning
will be logged to the error log.

This patch fixes this, when binlog_row_metadata=FULL is used on the
master, by mapping fields with identical names on the master and slave.
If slave has fields that does not exist in the row event, these will
be set to their default value.

The main idea is that we added two conversion tables:
m_tabledef.master_to_slave_map[master_column_index] -> slave_column_index
and m_tabledef.master_to_slave_error[master_column_index] which contains
an error number if the master_column does not exist on the slave or
it is not possible to convert the master data to the slave column.
master_to_slave_error[#] contains 0 if the column exists and is compatible.

General code changes:
- Instead of looping over row fields in the order of slave table
  we are instead looping over fields in the order of the binary log.
- We are using table->write_set to know which fields should be updated
  on the slave. This is reflected in unpack_row
- We are calling TABLE::mark_columns_per_binlog_row_image() to ensure
  that rpl_write_set is properly set. This is needed if the slave also
  is doing binary logging.
- Before replication aborted if the master and slave tables were too
  different.  Now replication is only aborted if the row actually uses
  columns that does not exists on the slave (and ERROR_IF_MISSING_FIELD
  is used) or uses columns that cannot be converted.
  - Instead of giving errors in compatible_with(), used when table is
    accessed by first the row event, we are instead giving errors
    when we examine a row event and notice that it is accessing
    a not existing or not compatible field.

Other code changes:
- Removed conv_table argument from compatible_with() and store it
  directly in RPL_TABLE_LIST->m_conv_table
- table_def::compatible_with() returns now 1 on error (not 0).
- Remove m_width and skip arguments from prepare_record() as we are
  now using table->write_set() to check which elements need a default
  value.
- Moved DBUG_ENTER() to it's proper place (after variable
  declarations) in a few functions.
- Some changes in unpack_row():
  - Replaced null_mask and null_ptr with an indexed bit check for
    simplicity.
  - Removed check of rgi == null and table_found which never worked.
  - Updated comments to reflect current code.
  - Indentation changes as the code now uses 'continue' instead of
    'if-else' in the main loop.
  - The code to throw away 'extra master fields' is not needed as we
    are now looping over fields in binary log, not over fields in
    slave table.
- Simplified get_table_data(TABLE *table_arg) by returning found
  table_list.
- Errors for row events are now initialized in compatible_with(),
  checked in check_wrong_column_usage() and reported in
  give_compatibility_error().

Note for Review:
 - MDEV-36892 is not addressed, so the clause and associated code from
   the 10.6 patch is removed:

   """
  - Store a table's original write_set in cond_set, so we can later
    cross-reference it when automatically populating fields (i.e. so we
    know not to override a replicated value).
   """

Co-authored-by: Brandon Nesterenko <brandon.nesterenko@mariadb.com>
2025-08-11 16:12:07 -06: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-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-04-28 12:59:38 +03:00
create_or_replace_mix2.result MDEV-36566 SELECT create_temporary_table_binlog_formats should show exactly what it is SET to 2025-04-30 12:33:24 +02:00
create_or_replace_row.result MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-04-28 12:59:38 +03:00
create_or_replace_statement.result MDEV-36099 Ensure that creation and usage of temporary tables in replication is predictable 2025-04-28 12:59:38 +03: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 Fix sporadic failure of rpl.parallel_backup_xa_debug 2025-03-13 18:58:12 +01: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
rbr_lsu_off.result MDEV-33957 UPDATE fails on replica replicating blob virtual column in NOBLOB mode when replica logging is off 2025-07-01 11:02:06 +03: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_convert_partition.result MDEV-36906: RBR crashes upon DML after CONVERT PARTITION 2025-07-22 11:30:39 -06: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 Fix typos in mysql-test/ 2025-04-29 13:53:16 +10: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-28933: Per-table unique FOREIGN KEY constraint names 2025-07-08 12:30:27 +03: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
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 Bug#37117875 test case 2025-07-25 16:04:10 +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 unify "partitioning cannot do X" error messages 2020-03-31 17:42:34 +02:00
rpl_create_select_row.result MDEV-35207 ignored error at binlogging by CREATE-TABLE-SELECT leads to assert 2025-04-03 19:00:02 +03: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 Fix typos in mysql-test/ 2025-04-29 13:53:16 +10: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 Merge branch '10.11' into 11.4 2025-07-28 19:40:10 +02: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-36566 SELECT create_temporary_table_binlog_formats should show exactly what it is SET to 2025-04-30 12:33:24 +02: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-36290: Improved support of replication between tables of different structure 2025-08-11 16:12:07 -06: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-36290: Improved support of replication between tables of different structure 2025-08-11 16:12:07 -06:00
rpl_extra_col_slave_rebinlog.result MDEV-36290: Improved support of replication between tables of different structure 2025-08-11 16:12:07 -06: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 2025-03-27 08:01:47 +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-36566 SELECT create_temporary_table_binlog_formats should show exactly what it is SET to 2025-04-30 12:33:24 +02: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 Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_gtid_glle_no_terminate.result MDEV-4991: GTID binlog indexing 2024-01-27 12:09:54 +01:00
rpl_gtid_grouping.result Fix typos in mysql-test/ 2025-04-29 13:53:16 +10: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 Fix typos in mysql-test/ 2025-04-29 13:53:16 +10: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-19123 Change default charset from latin1 to utf8mb4 2024-07-11 10:21:07 +04: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-29499 Improving the 'Can't execute init_slave query' error message with the actual failure 2025-06-13 15:28:38 -06: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-07-17 09:18:18 +02: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-07-17 09:18:18 +02: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 Merge remote-tracking branch 'github/bb-11.4-release' into bb-11.8-serg 2025-04-27 19:40:00 +02:00
rpl_master_slave_mismatched_columns_basic.result MDEV-36290: Improved support of replication between tables of different structure 2025-08-11 16:12:07 -06:00
rpl_master_slave_mismatched_columns_full.result MDEV-36290: Improved support of replication between tables of different structure 2025-08-11 16:12:07 -06: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-36566 SELECT create_temporary_table_binlog_formats should show exactly what it is SET to 2025-04-30 12:33:24 +02: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-04-28 12:59:38 +03:00
rpl_mixed_implicit_commit_binlog.result Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_mixed_mixing_engines.result MDEV-36566 SELECT create_temporary_table_binlog_formats should show exactly what it is SET to 2025-04-30 12:33:24 +02:00
rpl_mixed_row_innodb.result
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 Fix typos in mysql-test/ 2025-04-29 13:53:16 +10: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 MDEV-7611 mysqldump --dump-slave always starts stopped slave 2025-07-10 18:31:36 -06:00
rpl_name_const.result Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_non_direct_mixed_mixing_engines.result MDEV-36566 SELECT create_temporary_table_binlog_formats should show exactly what it is SET to 2025-04-30 12:33:24 +02: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 MDEV-36290: Improved support of replication between tables of different structure 2025-08-11 16:12:07 -06: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-35570 parallel slave ALTER-SEQUENCE attempted to binlog out-of-order 2025-07-07 13:00:18 +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 Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_partition_innodb.result Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_partition_memory.result Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_partition_myisam.result Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_password_boundaries.result MDEV-35617: DROP USER should leave no active session for that user 2025-07-16 09:14:33 +07: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 Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
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 MDEV-35617: DROP USER should leave no active session for that user 2025-07-16 09:14:33 +07: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_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 cleanup: disconnect before DROP USER 2025-07-16 09:14:33 +07: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-04-28 12:59:38 +03: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 MDEV-36425 Extend read_only to also block share locks and super user 2025-04-28 12:59:39 +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 Fix typos in mysql-test/ 2025-04-29 13:53:16 +10: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 Fix typos in mysql-test/ 2025-04-29 13:53:16 +10: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 cleanup: disconnect before DROP USER 2025-07-16 09:14:33 +07: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 Add MDEV-25999 & MDEV-36840 to MDEV-16091’s test 2025-07-07 14:03:49 -06: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 Merge branch '10.11' into 11.4 2025-07-28 19:40:10 +02: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_disable_with_slave.result MDEV-37102: Fix Test by Waiting for the State 2025-07-04 16:40:44 -06: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_ssl_stop.result Merge branch '10.11' into 11.4 2025-04-26 10:53:02 +02: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 Fix typos in mysql-test/ 2025-04-29 13:53:16 +10: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-35617: DROP USER should leave no active session for that user 2025-07-16 09:14:33 +07: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-35617: DROP USER should leave no active session for that user 2025-07-16 09:14:33 +07: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-35617: DROP USER should leave no active session for that user 2025-07-16 09:14:33 +07: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 cleanup: disconnect before DROP USER 2025-07-16 09:14:33 +07: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-35617: DROP USER should leave no active session for that user 2025-07-16 09:14:33 +07:00
rpl_ssl1.result MDEV-35617: DROP USER should leave no active session for that user 2025-07-16 09:14:33 +07: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-04-28 12:59:38 +03: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 Fix typos in mysql-test/ 2025-04-29 13:53:16 +10: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 Fix typos in mysql-test/ 2025-04-29 13:53:16 +10: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 Fix typos in mysql-test/ 2025-04-29 13:53:16 +10:00
rpl_system_versioning_partitions.result Fix typos in mysql-test/ 2025-04-29 13:53:16 +10: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-04-28 12:59:38 +03:00
rpl_temp_table_mix_row.result Fix typos in mysql-test/ 2025-04-29 13:53:16 +10: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 cleanup: disconnect before DROP USER 2025-07-16 09:14:33 +07: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 consistent error messages, no <angle quoting> 2025-04-18 09:41:23 +02: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 fix incorrect merge 15700f54c2 2025-04-18 09:41:24 +02: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 fix incorrect merge 15700f54c2 2025-04-18 09:41:24 +02: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