CURRENT_TEST: binlog_encryption.encryption_combo
mysqltest: At line 115: failed in 'select master_pos_wait('master-bin.000005', 1579, 300, '')': 2013: Lost connection to server during query

The result from queries just before the failure was:
< snip >
INSERT INTO table2_to_encrypt SELECT NULL,NOW(),b FROM table2_to_encrypt;
NOT FOUND /table2_to_encrypt/ in master-bin.0*
#####################################################
# Part 3: restart master again without encryption
#####################################################
connection default;
connection server_1;
CREATE TABLE table3_no_encryption (
pk INT AUTO_INCREMENT PRIMARY KEY,
ts TIMESTAMP NULL,
b BLOB
) ENGINE=MyISAM;
INSERT INTO table3_no_encryption VALUES (NULL,NOW(),'data_no_encryption');
INSERT INTO table3_no_encryption SELECT NULL,NOW(),b FROM table3_no_encryption;
INSERT INTO table3_no_encryption SELECT NULL,NOW(),b FROM table3_no_encryption;
#####################################################
# Check: resume replication and check that it works
#####################################################
connection server_2;
include/start_slave.inc

More results from queries before failure can be found in /dev/shm/var/1/log/encryption_combo.log
CURRENT_TEST: binlog_encryption.encryption_combo
mysqltest: At line 115: failed in 'select master_pos_wait('master-bin.000005', 1579, 300, '')': 2013: Lost connection to server during query

The result from queries just before the failure was:
< snip >
INSERT INTO table2_to_encrypt SELECT NULL,NOW(),b FROM table2_to_encrypt;
NOT FOUND /table2_to_encrypt/ in master-bin.0*
#####################################################
# Part 3: restart master again without encryption
#####################################################
connection default;
connection server_1;
CREATE TABLE table3_no_encryption (
pk INT AUTO_INCREMENT PRIMARY KEY,
ts TIMESTAMP NULL,
b BLOB
) ENGINE=MyISAM;
INSERT INTO table3_no_encryption VALUES (NULL,NOW(),'data_no_encryption');
INSERT INTO table3_no_encryption SELECT NULL,NOW(),b FROM table3_no_encryption;
INSERT INTO table3_no_encryption SELECT NULL,NOW(),b FROM table3_no_encryption;
#####################################################
# Check: resume replication and check that it works
#####################################################
connection server_2;
include/start_slave.inc

More results from queries before failure can be found in /dev/shm/var/1/log/encryption_combo.log
CURRENT_TEST: binlog_encryption.multisource
mysqltest: In included file "./suite/rpl/include/multisource.inc": 
included from /home/buildbot/buildbot/build/mariadb-10.6.22/mysql-test/suite/binlog_encryption/multisource.test at line 2:
At line 104: failed in 'select master_pos_wait('master-bin.000001', 1102, 300, 'master1')': 2013: Lost connection to server during query

The result from queries just before the failure was:
< snip >
# Checking SHOW ALL SLAVES STATUS
#
Connection_name = 'master1'
Master_Port = 'MYPORT_1'
Relay_Log_File = 'mysqld-relay-bin-master1.000002'
Slave_IO_Running = 'Yes'
Slave_SQL_Running = 'Yes'
Last_Errno = '0'
Last_SQL_Errno = '0'
Slave_heartbeat_period = '60.000'
#
connection master1;
drop database if exists db1;
create database db1;
use db1;
create table t1 (i int auto_increment, f1 varchar(16), primary key pk (i,f1)) engine=MyISAM;
Warnings:
Warning	1280	Name 'pk' ignored for PRIMARY key.
insert into t1 (f1) values ('one'),('two');
connection slave;

More results from queries before failure can be found in /dev/shm/var/1/log/multisource.log
CURRENT_TEST: binlog_encryption.multisource
mysqltest: In included file "./suite/rpl/include/multisource.inc": 
included from /home/buildbot/buildbot/build/mariadb-10.6.22/mysql-test/suite/binlog_encryption/multisource.test at line 2:
At line 104: failed in 'select master_pos_wait('master-bin.000001', 1102, 300, 'master1')': 2013: Lost connection to server during query

The result from queries just before the failure was:
< snip >
# Checking SHOW ALL SLAVES STATUS
#
Connection_name = 'master1'
Master_Port = 'MYPORT_1'
Relay_Log_File = 'mysqld-relay-bin-master1.000002'
Slave_IO_Running = 'Yes'
Slave_SQL_Running = 'Yes'
Last_Errno = '0'
Last_SQL_Errno = '0'
Slave_heartbeat_period = '60.000'
#
connection master1;
drop database if exists db1;
create database db1;
use db1;
create table t1 (i int auto_increment, f1 varchar(16), primary key pk (i,f1)) engine=MyISAM;
Warnings:
Warning	1280	Name 'pk' ignored for PRIMARY key.
insert into t1 (f1) values ('one'),('two');
connection slave;

More results from queries before failure can be found in /dev/shm/var/1/log/multisource.log
CURRENT_TEST: binlog_encryption.rpl_special_charset
mysqltest: In included file "./suite/rpl/t/rpl_special_charset.test": 
included from /home/buildbot/buildbot/build/mariadb-10.6.22/mysql-test/suite/binlog_encryption/rpl_special_charset.test at line 2:
At line 26: failed in 'select master_pos_wait('master-bin.000001', 1067, 300, '')': 2013: Lost connection to server during query

The result from queries just before the failure was:
include/master-slave.inc
[connection master]
call mtr.add_suppression("'utf16' can not be used as client character set");
CREATE TABLE t1(i VARCHAR(20));
INSERT INTO t1 VALUES (0xFFFF);
CURRENT_TEST: binlog_encryption.encrypted_master
