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
7e77d5b6
Commit
7e77d5b6
authored
Jul 01, 2002
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Manual fixups for 4.0.2.
parent
417c53ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
Docs/manual.texi
Docs/manual.texi
+15
-15
No files found.
Docs/manual.texi
View file @
7e77d5b6
...
...
@@ -14137,9 +14137,9 @@ IP address to bind to.
Directory where character sets are. @xref{Character sets}.
@item --chroot=path
Chroot @code{mysqld} daemon during startup. Recommended security measure. It will
s
omewhat limit @code{LOAD DATA INFILE} and @code{SELECT ... INTO OUTFILE}
though.
Put @code{mysqld} daemon in chroot environment at startup. Recommended
s
ecurity measure. It somewhat limits @code{LOAD DATA INFILE} and
@code{SELECT ... INTO OUTFILE}
though.
@item --core-file
Write a core file if @code{mysqld} dies. For some systems you must also
...
...
@@ -30738,7 +30738,7 @@ mysql> SELECT 1 && NULL;
-> NULL
@end example
@findex XOR logical
@findex XOR
,
logical
@item XOR
Logical XOR. For non-@code{NULL} operands, evaluates to @code{1} if only one
of the operators is non-zero.
...
...
@@ -32824,7 +32824,7 @@ The result is an unsigned 64-bit integer.
@findex & (bitwise AND)
@findex AND, bitwise
@item &
Bitwise AND
:
Bitwise AND
@example
mysql> SELECT 29 & 15;
-> 13
...
...
@@ -32839,10 +32839,8 @@ Bitwise XOR
@example
mysql> SELECT 1 ^ 1;
-> 0
mysql> SELECT 1 ^ 0;
-> 1
mysql> SELECT 11 ^ 3;
-> 8
@end example
...
...
@@ -33267,9 +33265,10 @@ The @code{DO} statement is convinient to use with @code{RELEASE_LOCK()}.
@findex IS_FREE_LOCK()
@item IS_FREE_LOCK(str)
Checks if the the lock named @code{str} is free (not locked) to use.
Returns @code{1} no one is using the lock, @code{0} if the lock is in use and
@code{NULL} on errors (like wrong arguments).
Checks if the the lock named @code{str} is free to use (i.e., not locked).
Returns @code{1} if the lock is free (no one is using the lock),
@code{0} if the lock is in use, and
@code{NULL} on errors (like incorrect arguments).
@findex BENCHMARK()
@item BENCHMARK(count,expr)
...
...
@@ -49610,18 +49609,19 @@ Our TODO section contains what we plan to have in 4.0. @xref{TODO MySQL 4.0}.
@itemize @bullet
@item
Execute @code{chroot()}, if requested, directly after options has ben
parsed.
Changed @code{--chroot=path} option to execute @code{chroot()} immediately
after all options have been
parsed.
@item
Don't allow database names that contains @
code
{\}.
Don't allow database names that contains @
samp
{\}.
@item
@code{lower_case_table_names} now also affects created and dropped databases.
@item
Added operators @code{XOR} and @code{^} (bitwise @code{XOR}).
Added @code{XOR} operator (logical and bitwise @code{XOR}) with @code{^}
as a synonym.
Added function @code{IS_FREE_LOCK("lock_name")}.
Based on code contributed by Hartmut Holzgraefe @email{hartmut@@six.de}.
@item
Removed @code{mysql_ssl_clear()}, as
this
was not needed.
Removed @code{mysql_ssl_clear()}, as
it
was not needed.
@item
@code{DECIMAL} and @code{NUMERIC} types can now read exponential numbers.
@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