1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

MDEV-33834 post-merge

* move TLS version into the "object" column
* show that TLS version follows db name
* correctly check for have_ssl
This commit is contained in:
Sergei Golubchik
2025-03-19 21:33:46 +01:00
parent 2b464774f2
commit c1f2b5a141
4 changed files with 33 additions and 27 deletions

View File

@@ -214,10 +214,10 @@ DROP USER plug;
DROP USER plug_dest;
CREATE USER ssl_user1@localhost require SSL;
connect (conssl1,localhost,ssl_user1,,,,,SSL);
GRANT ALL ON sa_db TO ssl_user1@localhost;
connect (conssl1,localhost,ssl_user1,,sa_db,,,SSL);
--let $ssl_version = query_get_value(SHOW STATUS LIKE 'Ssl_version', Value, 1)
--replace_column 2 CIPHER_NAME
SHOW STATUS LIKE 'Ssl_cipher';
select variable_value > '' as 'have_ssl' from information_schema.session_status where variable_name='ssl_cipher';
disconnect conssl1;
connection default;
--sleep 2