mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
9 lines
264 B
Text
9 lines
264 B
Text
|
CREATE TABLE t1 (t int(1));
|
||
|
SET GLOBAL require_secure_transport=ON;
|
||
|
ERROR 28000: Access denied for user 'root'@'localhost' (using password: NO)
|
||
|
connection default;
|
||
|
SET GLOBAL require_secure_transport=OFF;
|
||
|
disconnect without_ssl;
|
||
|
connection default;
|
||
|
DROP TABLE t1;
|