~jobinau/drizzle/bug_654164

« back to all changes in this revision

Viewing changes to plugin/utility_dictionary/tests/t/global_read_lock.test

  • Committer: Brian Aker
  • Date: 2010-11-27 18:27:58 UTC
  • mfrom: (1948.2.15 catalogs)
  • Revision ID: brian@tangent.org-20101127182758-dmlrboyhsazqa1tm
Merge in additiona fixes, includes a number of bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
SELECT GLOBAL_READ_LOCK();
 
3
FLUSH TABLES WITH READ LOCK;
 
4
SELECT GLOBAL_READ_LOCK();
 
5
SELECT GLOBAL_READ_LOCK() + 1;
 
6
UNLOCK TABLES;
 
7
SELECT GLOBAL_READ_LOCK();
 
8
SELECT GLOBAL_READ_LOCK() + 1;