summaryrefslogtreecommitdiff
path: root/mysql-test/r/ssl_cipher.result
blob: d94ffa4e04b4e8535bbe89cc650ca53b8297101c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# BUG#11760210 - SSL_CIPHER_LIST NOT SET OR RETURNED FOR "SHOW STATUS LIKE 'SSL_CIPHER_LIST'"
#
connect  ssl_con,localhost,root,,,,,SSL;
select variable_value into @a from information_schema.session_status where variable_name like 'SSL_CIPHER';
select length(@a) > 0;
length(@a) > 0
1
select length(VARIABLE_VALUE) > 0  from information_schema.session_status where variable_name like 'SSL_CIPHER_LIST';
length(VARIABLE_VALUE) > 0
1
select position(@a in VARIABLE_VALUE) > 0  from information_schema.session_status where variable_name like 'SSL_CIPHER_LIST';
position(@a in VARIABLE_VALUE) > 0
1
connection default;
disconnect ssl_con;