summaryrefslogtreecommitdiff
path: root/mysql-test/r/connect.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/connect.result')
-rw-r--r--mysql-test/r/connect.result19
1 files changed, 17 insertions, 2 deletions
diff --git a/mysql-test/r/connect.result b/mysql-test/r/connect.result
index 09eaf9855b0..b41303137ab 100644
--- a/mysql-test/r/connect.result
+++ b/mysql-test/r/connect.result
@@ -1,23 +1,28 @@
drop table if exists t1,t2;
show tables;
Tables_in_mysql
+column_stats
columns_priv
db
event
func
general_log
+gtid_slave_pos
help_category
help_keyword
help_relation
help_topic
host
+index_stats
ndb_binlog_index
plugin
proc
procs_priv
proxies_priv
+roles_mapping
servers
slow_log
+table_stats
tables_priv
time_zone
time_zone_leap_second
@@ -35,23 +40,28 @@ grant ALL on *.* to test@localhost identified by "gambling";
grant ALL on *.* to test@127.0.0.1 identified by "gambling";
show tables;
Tables_in_mysql
+column_stats
columns_priv
db
event
func
general_log
+gtid_slave_pos
help_category
help_keyword
help_relation
help_topic
host
+index_stats
ndb_binlog_index
plugin
proc
procs_priv
proxies_priv
+roles_mapping
servers
slow_log
+table_stats
tables_priv
time_zone
time_zone_leap_second
@@ -77,23 +87,28 @@ ERROR HY000: Password hash should be a 41-digit hexadecimal number
set password=old_password('gambling3');
show tables;
Tables_in_mysql
+column_stats
columns_priv
db
event
func
general_log
+gtid_slave_pos
help_category
help_keyword
help_relation
help_topic
host
+index_stats
ndb_binlog_index
plugin
proc
procs_priv
proxies_priv
+roles_mapping
servers
slow_log
+table_stats
tables_priv
time_zone
time_zone_leap_second
@@ -229,9 +244,9 @@ Connection on extra port 2 ok
# -- Bug#49752: 2469.126.2 unintentionally breaks authentication
# against MySQL 5.1 server
#
-GRANT ALL ON test.* TO 'Azundris12345678'@'localhost' IDENTIFIED BY 'test123';
+GRANT ALL ON test.* TO 'O1234567890123456789012345678901234567890123456789012345678901234567890123456789'@'localhost' IDENTIFIED BY 'test123';
FLUSH PRIVILEGES;
-DROP USER 'Azundris12345678'@'localhost';
+DROP USER 'O1234567890123456789012345678901234567890123456789012345678901234567890123456789'@'localhost';
FLUSH PRIVILEGES;
#
# -- End of Bug#49752