1
drop table if exists t1,t2;
16
online_backup_progress
27
time_zone_transition_type
31
connect(localhost,root,z,test2,MASTER_PORT,MASTER_SOCKET);
32
ERROR 28000: Access denied for user 'root'@'localhost' (using password: YES)
33
connect(localhost,root,z,test,MASTER_PORT,MASTER_SOCKET);
34
ERROR 28000: Access denied for user 'root'@'localhost' (using password: YES)
35
grant ALL on *.* to test@localhost identified by "gambling";
36
grant ALL on *.* to test@127.0.0.1 identified by "gambling";
51
online_backup_progress
62
time_zone_transition_type
66
connect(localhost,test,,test2,MASTER_PORT,MASTER_SOCKET);
67
ERROR 28000: Access denied for user 'test'@'localhost' (using password: NO)
68
connect(localhost,test,,"",MASTER_PORT,MASTER_SOCKET);
69
ERROR 28000: Access denied for user 'test'@'localhost' (using password: NO)
70
connect(localhost,test,zorro,test2,MASTER_PORT,MASTER_SOCKET);
71
ERROR 28000: Access denied for user 'test'@'localhost' (using password: YES)
72
connect(localhost,test,zorro,test,MASTER_PORT,MASTER_SOCKET);
73
ERROR 28000: Access denied for user 'test'@'localhost' (using password: YES)
74
update mysql.user set password=old_password("gambling2") where user=_binary"test";
77
set password='gambling3';
78
ERROR HY000: Password hash should be a 41-digit hexadecimal number
79
set password=old_password('gambling3');
94
online_backup_progress
102
time_zone_leap_second
105
time_zone_transition_type
109
connect(localhost,test,,test2,MASTER_PORT,MASTER_SOCKET);
110
ERROR 28000: Access denied for user 'test'@'localhost' (using password: NO)
111
connect(localhost,test,,test,MASTER_PORT,MASTER_SOCKET);
112
ERROR 28000: Access denied for user 'test'@'localhost' (using password: NO)
113
connect(localhost,test,zorro,test2,MASTER_PORT,MASTER_SOCKET);
114
ERROR 28000: Access denied for user 'test'@'localhost' (using password: YES)
115
connect(localhost,test,zorro,test,MASTER_PORT,MASTER_SOCKET);
116
ERROR 28000: Access denied for user 'test'@'localhost' (using password: YES)
117
delete from mysql.user where user=_binary"test";
119
create table t1 (id integer not null auto_increment primary key);
120
create temporary table t2(id integer not null auto_increment primary key);
122
delete from t1 where id like @id;
124
# ------------------------------------------------------------------
125
# -- End of 4.1 tests
126
# ------------------------------------------------------------------
127
# ------------------------------------------------------------------
128
# -- End of 5.1 tests
129
# ------------------------------------------------------------------