1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
User Defined Locks
===================
A user can create a "lock" which is scoped to their user space. Multiple
session of the user can see the lock.
SELECT GET_LOCK();
SELECT GET_LOCKS();
SELECT RELEASE_LOCK();
SELECT RELEASE_LOCK();
SELECT RELEASE_LOCKS();
SELECT is_free_lock();
SELECT is_used_lock();
If a session should exit, whatever locks it was holding will be deleted.
Please note, get_lock() was designed to be compatible with MySQL. If you
hold any locks when calling get_lock() they will be released. For this
reason you may want to consider calling get_locks() instead.
Information on all barriers can be found in the DATA_DICTIONARY.USER_LOCKS
table;
|