~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/lock_multi.test

  • Committer: Brian Aker
  • Date: 2009-11-12 16:13:04 UTC
  • mfrom: (1211.1.7 staging)
  • Revision ID: brian@gaz-20091112161304-opamiauv36fg0n6u
Rollup of Brian, Padraig, and Stewart patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
# When fixed: Reject dropping db because of the read lock.
26
26
connection con1;
27
27
let $wait_condition=
28
 
  select count(*) = 1 from data_dictionary.processlist
 
28
  select count(*) = 1 from information_schema.processlist
29
29
  where state = "Waiting for release of readlock"
30
30
  and info = "DROP DATABASE mysqltest_1";
31
31
--source include/wait_condition.inc