mariadb/mysql-test/main/connect_debug.result

21 lines
855 B
Text
Raw Normal View History

2018-04-30 23:06:09 +02:00
set @old_dbug=@@global.debug_dbug;
set global debug_dbug='+d,auth_disconnect';
create user 'bad' identified by 'worse';
set global debug_dbug=@old_dbug;
drop user bad;
set global debug_dbug='+d,auth_invalid_plugin';
create user 'bad' identified by 'worse';
2019-07-26 07:03:39 +02:00
ERROR 1045 (28000): Plugin foo/bar could not be loaded: invalid plugin name
set global debug_dbug=@old_dbug;
drop user bad;
set global debug_dbug='+d,increase_srv_handshake_scramble_len';
connect(localhost,root,,test,MASTER_MYPORT,MYSQL_TMP_DIR/mysqld.1.sock);
2020-01-20 16:15:05 +01:00
connect con1,localhost,root;
ERROR HY000: received malformed packet
set global debug_dbug=@old_dbug;
set global debug_dbug='+d,poison_srv_handshake_scramble_len';
connect(localhost,root,,test,MASTER_MYPORT,MYSQL_TMP_DIR/mysqld.1.sock);
2020-01-20 16:15:05 +01:00
connect con2,localhost,root;
ERROR HY000: received malformed packet
set global debug_dbug=@old_dbug;