1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-05 12:42:17 +03:00
Files
mariadb/mysql-test/r/ssl-big.result
2016-03-31 10:11:16 +04:00

9 lines
211 B
Plaintext

DROP TABLE IF EXISTS t1, t2;
connect ssl_con,localhost,root,,,,,SSL;
create table t1 (a int);
disconnect ssl_con;
connect ssl_con,localhost,root,,,,,SSL;
drop table t1;
connection default;
disconnect ssl_con;