~ubuntu-branches/ubuntu/maverick/mysql-5.1/maverick-proposed

« back to all changes in this revision

Viewing changes to mysql-test/t/mysqlslap.test

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 14:16:05 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: package-import@ubuntu.com-20120222141605-nxlu9yzc6attylc2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
--exec $MYSQL_SLAP --create-schema=test --delimiter=";" --query="CALL p1; SELECT 1;" --silent 2>&1 
54
54
 
55
55
DROP PROCEDURE p1;
 
56
 
 
57
 
 
58
--echo #
 
59
--echo # Bug #11765157 - 58090: mysqlslap drops schema specified in
 
60
--echo #                 create_schema if auto-generate-sql also set.
 
61
--echo #
 
62
 
 
63
--exec $MYSQL_SLAP --silent --create-schema=bug58090 --concurrency=5 --iterations=20 --auto-generate-sql
 
64
--echo # 'bug58090' database should not be present.
 
65
SHOW DATABASES;
 
66
--exec $MYSQL_SLAP --silent --create-schema=bug58090 --no-drop --auto-generate-sql
 
67
--echo # 'bug58090' database should be present.
 
68
SHOW DATABASES;
 
69
DROP DATABASE bug58090;
 
70