~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/lock_multi.test

  • Committer: Padraig O'Sullivan
  • Date: 2009-08-08 04:22:33 UTC
  • mto: (1115.3.4 captain)
  • mto: This revision was merged to the branch mainline in revision 1117.
  • Revision ID: osullivan.padraig@gmail.com-20090808042233-q0z88zc490z3f3r7
Renamed the Command class to be Statement. Renamed the command directory to
statement and also the command header file to statement. Updated various
source files to reflect this renaming.

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