mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
8 lines
211 B
Text
8 lines
211 B
Text
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;
|