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