~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/user_locks/tests/r/wait.result

  • Committer: Lee Bieber
  • Date: 2011-01-18 20:05:06 UTC
  • mfrom: (2094.1.6 build)
  • Revision ID: kalebral@gmail.com-20110118200506-r1v72y174j5x7j0i
Merge Brian - fix processlist test, was failing under lcov
Merge Marisa - fix bug 684803: Need to update Drizzledump documentation with migration conversions / caveats
Merge Marisa - fix bug #686641: Need to document removal of multi-table update/delete from Drizzle
Merge Monty - fix bug 567387: quotes now appearing around module name and author in data_dicionary view
Merge Monty - fix bug 658752: Incorrect datadir value being stored
Merge Andrew - fix bug 680872: max-connect-errors appears to be unused 
Merge Stewart - Haildb updates, ANALYZE table as well as improved index statistics

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
SELECT WAIT_UNTIL(@count_barrier, 4);
19
19
WAIT_UNTIL(@count_barrier, 4)
20
20
1
21
 
SELECT USERNAME, INFO FROM DATA_DICTIONARY.PROCESSLIST ORDER BY ID;
 
21
SELECT USERNAME, INFO FROM DATA_DICTIONARY.PROCESSLIST
 
22
WHERE 
 
23
INFO LIKE '%con1"' OR
 
24
INFO LIKE '%con2"' OR
 
25
INFO LIKE '%con3"' OR
 
26
INFO LIKE '%con4"'
 
27
  ORDER BY ID;
22
28
USERNAME        INFO
23
 
root    NULL
24
29
root    SELECT wait(@count_barrier), "con1"
25
30
root    SELECT wait(@count_barrier), "con2"
26
31
root    SELECT wait(@count_barrier), "con3"
27
32
root    SELECT wait(@count_barrier), "con4"
28
 
root    SELECT USERNAME, INFO FROM DATA_DICTIONARY.PROCESSLIST ORDER BY ID
29
33
SELECT signal(@count_barrier);
30
34
signal(@count_barrier)
31
35
1