~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2010-12-16 03:55:56 UTC
  • mfrom: (1996.1.2 build-n-staging)
  • Revision ID: brian@tangent.org-20101216035556-dwkzlwvs45lhdnqe
1) Rename of tables to meet common naming.
2) moved "crash" to be in a debug plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
SELECT GET_LOCK("mine");
2
2
GET_LOCK("mine")
3
3
1
4
 
SELECT USER_NAME, USER_LOCK_NAME FROM DATA_DICTIONARY.USER_LOCKS ORDER BY USER_LOCK_NAME, USER_NAME;
 
4
SELECT USER_NAME, USER_LOCK_NAME FROM DATA_DICTIONARY.USER_DEFINED_LOCKS ORDER BY USER_LOCK_NAME, USER_NAME;
5
5
USER_NAME       USER_LOCK_NAME
6
6
root    mine
7
7
EXECUTE "SELECT GET_LOCK('mine', 20); SELECT 1;" CONCURRENT;