~ubuntu-branches/ubuntu/lucid/mysql-dfsg-5.1/lucid-security

« back to all changes in this revision

Viewing changes to mysql-test/r/mysqlslap.result

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 22:33:55 UTC
  • mto: (1.2.1) (37.1.1 lucid-security)
  • mto: This revision was merged to the branch mainline in revision 36.
  • Revision ID: package-import@ubuntu.com-20120222223355-ku1tb4r70osci6v2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
225
225
DROP PROCEDURE IF EXISTS p1;
226
226
CREATE PROCEDURE p1() SELECT 1;
227
227
DROP PROCEDURE p1;
 
228
#
 
229
# Bug #11765157 - 58090: mysqlslap drops schema specified in
 
230
#                 create_schema if auto-generate-sql also set.
 
231
#
 
232
# 'bug58090' database should not be present.
 
233
SHOW DATABASES;
 
234
Database
 
235
information_schema
 
236
mtr
 
237
mysql
 
238
test
 
239
# 'bug58090' database should be present.
 
240
SHOW DATABASES;
 
241
Database
 
242
information_schema
 
243
bug58090
 
244
mtr
 
245
mysql
 
246
test
 
247
DROP DATABASE bug58090;