Details
-
Bug
-
Status: Open (View Workflow)
-
Major
-
Resolution: Unresolved
-
11.5.2
-
None
-
OpenSUSE Tumbleweed
Description
We're trying to bump the openssl version in Factory to from 3.1.7 to 3.2.3.
A test has been failing:
Here is the log snippet of the test:
[ 4766s] main.init_connect w1 [ fail ]
|
[ 4766s] Test ended at 2024-11-05 23:58:15 |
[ 4766s]
|
[ 4766s] CURRENT_TEST: main.init_connect
|
[ 4766s] mysqltest: At line 50: query 'select @a' failed with wrong errno <Unknown> (2026): 'TLS/SSL error: Connection reset by peer (104)', instead of <Unknown> (2013)... |
[ 4766s]
|
[ 4766s] The result from queries just before the failure was:
|
[ 4766s] < snip >
|
[ 4766s] @a |
[ 4766s] NULL
|
[ 4766s] connection con0;
|
[ 4766s] set global init_connect="drop table if exists t1; create table t1(a char(10));\ |
[ 4766s] insert into t1 values ('\0');insert into t1 values('abc')"; |
[ 4766s] create user 'user_1'@'localhost'; |
[ 4766s] GRANT DROP,CREATE,SELECT,INSERT ON test.* TO 'user_1'@'localhost'; |
[ 4766s] connect con4,localhost,user_1,,test;
|
[ 4766s] connection con4;
|
[ 4766s] select hex(a) from t1;
|
[ 4766s] hex(a)
|
[ 4766s] 00 |
[ 4766s] 616263 |
[ 4766s] connection con0;
|
[ 4766s] set GLOBAL init_connect="adsfsdfsdfs"; |
[ 4766s] connect con5,localhost,user_1,,test;
|
[ 4766s] connection con5;
|
[ 4766s] select @a; |
[ 4766s] ERROR 08S01: Aborted connection to db: 'test' user: 'user_1' host: 'localhost' (init_connect command failed) |
[ 4766s] select @a; |
[ 4766s]
|
[ 4766s] More results from queries before failure can be found in /home/abuild/rpmbuild/BUILD/mariadb-11.5.2/build/mysql-test/var/1/log/init_connect.log |
[ 4766s]
|
[ 4766s] - saving '/home/abuild/rpmbuild/BUILD/mariadb-11.5.2/build/mysql-test/var/1/log/main.init_connect/' to '/home/abuild/rpmbuild/BUILD/mariadb-11.5.2/build/mysql-test/var/log/main.init_connect/' |
[ 4766s]
|
[ 4766s] Retrying test main.init_connect, attempt(2/3)... |
[ 4766s]
|
[ 4766s] ***Warnings generated in error logs during shutdown after running tests: main.init_connect
|
[ 4766s]
|
[ 4766s] 2024-11-05 23:58:15 10 [Warning] You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'adsfsdfsdfs' at line 1 |
[ 4766s]
|
I am not sure where to continue digging, as the test suite infra seem rather complex and I'm not super familiar with the mariadb codebase. Quite a few things changed between the SSL versions. Any suggestions?