~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/user_limits.test

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
connect (mcph2, localhost, mysqltest_1,,);
73
73
connection mcph2;
74
74
select * from t1;
75
 
--replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK
 
75
--replace_result $MASTER_MYPORT DRIZZLE_PORT $MASTER_MYSOCK DRIZZLE_SOCK
76
76
--error 1226
77
77
connect (mcph3, localhost, mysqltest_1,,);
78
78
# Old connection is still ok
81
81
# counters are not thrown away if there are no connections for this user.
82
82
disconnect mcph1;
83
83
disconnect mcph2;
84
 
--replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK
 
84
--replace_result $MASTER_MYPORT DRIZZLE_PORT $MASTER_MYSOCK DRIZZLE_SOCK
85
85
--error 1226
86
86
connect (mcph3, localhost, mysqltest_1,,);
87
87
# Cleanup
99
99
connect (muc2, localhost, mysqltest_1,,);
100
100
connection muc2;
101
101
select * from t1;
102
 
--replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK
 
102
--replace_result $MASTER_MYPORT DRIZZLE_PORT $MASTER_MYSOCK DRIZZLE_SOCK
103
103
--error 1226
104
104
connect (muc3, localhost, mysqltest_1,,);
105
105
# Closing of one of connections should help
113
113
connect (muc4, localhost, mysqltest_1,,);
114
114
connection muc4;
115
115
select * from t1;
116
 
--replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK
 
116
--replace_result $MASTER_MYPORT DRIZZLE_PORT $MASTER_MYSOCK DRIZZLE_SOCK
117
117
--error 1226
118
118
connect (muc5, localhost, mysqltest_1,,);
119
119
# Clean up
142
142
connect (muca2, localhost, mysqltest_1,,);
143
143
connection muca2;
144
144
select * from t1;
145
 
--replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK
 
145
--replace_result $MASTER_MYPORT DRIZZLE_PORT $MASTER_MYSOCK DRIZZLE_SOCK
146
146
--error 1203
147
147
connect (muca3, localhost, mysqltest_1,,);
148
148
# Now we are testing that per-account limit prevails over gloabl limit
152
152
connect (muca3, localhost, mysqltest_1,,);
153
153
connection muca3;
154
154
select @@session.max_user_connections, @@global.max_user_connections;
155
 
--replace_result $MASTER_MYPORT MYSQL_PORT $MASTER_MYSOCK MYSQL_SOCK
 
155
--replace_result $MASTER_MYPORT DRIZZLE_PORT $MASTER_MYSOCK DRIZZLE_SOCK
156
156
--error 1226
157
157
connect (muca4, localhost, mysqltest_1,,);
158
158
# Cleanup