Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
a88c8630
Commit
a88c8630
authored
Jun 29, 2002
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge paul@work.mysql.com:/home/bk/mysql-4.0
into teton.kitebird.com:/home/paul/mysql-4.0
parents
663bc26d
44074bcd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
12 deletions
+19
-12
Docs/manual.texi
Docs/manual.texi
+19
-12
No files found.
Docs/manual.texi
View file @
a88c8630
...
...
@@ -49582,34 +49582,41 @@ Added binary XOR.
The one that with a query like :
select 11 ^ 3;
@example
SELECT 11 ^ 3;
@end example
returns 8.
Based on
the code originated by Hartmut Holzgraefe <hartmut@six.de>
.
Based on
code contributed by Hartmut Holzgraefe @email{hartmut@@six.de}
.
@item
Added logical XOR.
The one that with a query like:
select 1 XOR 1;
@example
SELECT 1 XOR 1;
@end example
returns 0;
Based on
the code originated by Hartmut Holzgraefe <hartmut@six.de>
.
Based on
code contributed by Hartmut Holzgraefe @email{hartmut@@six.de}
.
@item
Add function CHEDK_LOCK("lock_name").
This function checks if the lock of the certain name is available or not.
This function does not attempt to take a look.
Add function @code{CHECK_LOCK("lock_name")}.
This function returns a value indicating whether or not the lock with the
given name is available.
It does not attempt to acquire a lock.
It is used like this:
SELECT CHECK_LOCK("some_lock");
@example
SELECT CHECK_LOCK("some_lock");
@end example
it will return 1 if the lock is held by a process (including by
itself), 0 if it is currently not held by anyone and NULL on
erro
rs.
Based on
the code originated by Hartmut Holzgraefe <hartmut@six.de>
.
@code{CHECK_LOCK()} returns 1 if the lock is available,
0 if the lock is held by any process (including the current process),
and @code{NULL} if an error occu
rs.
Based on
code contributed by Hartmut Holzgraefe @email{hartmut@@six.de}
.
@item
Removed @code{mysql_ssl_clear()}, as this was not needed.
@item
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment