diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2002-06-29 16:32:45 +0300 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2002-06-29 16:32:45 +0300 |
commit | 76ca4855590367371f8ec56db5fe089b73935475 (patch) | |
tree | 151c617f5ebb82d7bcee4f2fcc47d94f260f85e8 /Docs | |
parent | 6e5952d087b8686242e28850ce958df0b00499d7 (diff) | |
parent | b936b25d79b1b98ecb9528048dc4bb431f1d9c58 (diff) | |
download | mariadb-git-76ca4855590367371f8ec56db5fe089b73935475.tar.gz |
Merge sinisa@work.mysql.com:/home/bk/mysql-4.0
into sinisa.nasamreza.org:/mnt/work/mysql-4.0
Docs/manual.texi:
Auto merged
Diffstat (limited to 'Docs')
-rw-r--r-- | Docs/manual.texi | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi index a2a12f6c16f..59cca2d6242 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -49578,6 +49578,39 @@ Our TODO section contains what we plan to have in 4.0. @xref{TODO MySQL 4.0}. @itemize @bullet @item +Added binary XOR. + +The one that with a query like : + +select 11 ^ 3; + +returns 8. + +Based on the code originated by Hartmut Holzgraefe <hartmut@six.de>. +@item + +Added logical XOR. + +The one that with a query like: + +select 1 XOR 1; + +returns 0; + +Based on the code originated by Hartmut Holzgraefe <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. +It is used like this: + + SELECT CHECK_LOCK("some_lock"); + +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 +errors. +Based on the code originated by Hartmut Holzgraefe <hartmut@six.de>. +@item Removed @code{mysql_ssl_clear()}, as this was not needed. @item @code{DECIMAL} and @code{NUMERIC} types can now read exponential numbers. |