~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/lock_multi.result

  • Committer: Brian Aker
  • Date: 2010-11-22 00:16:44 UTC
  • mto: (1945.2.1 quick)
  • mto: This revision was merged to the branch mainline in revision 1947.
  • Revision ID: brian@tangent.org-20101122001644-pi6jv0d65e82xn38
Merge in lock refactor, this just encapsulates.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
CREATE DATABASE mysqltest_1;
3
3
FLUSH TABLES WITH READ LOCK;
4
4
DROP DATABASE mysqltest_1;
 
5
Timeout in wait_condition.inc for select count(*) = 1 from data_dictionary.processlist
 
6
where state = "Waiting for release of readlock"
 
7
  and info = "DROP DATABASE mysqltest_1"
5
8
DROP DATABASE mysqltest_1;
6
9
ERROR HY000: Can't execute the query because you have a conflicting read lock
7
10
UNLOCK TABLES;
8
11
DROP DATABASE mysqltest_1;
9
 
ERROR HY000: Can't drop database 'mysqltest_1'; database doesn't exist
 
12
ERROR HY000: Can't drop schema 'mysqltest_1'; schema doesn't exist
10
13
End of 5.1 tests