Commit cf6f5197 authored by unknown's avatar unknown

Style cleanups.

parent 26b607a7
...@@ -2655,10 +2655,10 @@ directory. ...@@ -2655,10 +2655,10 @@ directory.
This has a few implications: This has a few implications:
@cindex database names, case sensitivity @cindex database names, case-sensitivity
@cindex table names, case sensitivity @cindex table names, case-sensitivity
@cindex case sensitivity, of database names @cindex case-sensitivity, of database names
@cindex case sensitivity, of table names @cindex case-sensitivity, of table names
@itemize @minus @itemize @minus
...@@ -8203,7 +8203,7 @@ you need to rebuild them with @code{ALTER TABLE table_name TYPE=MyISAM}, ...@@ -8203,7 +8203,7 @@ you need to rebuild them with @code{ALTER TABLE table_name TYPE=MyISAM},
@strong{even} if they are of @code{MyISAM} type. @strong{even} if they are of @code{MyISAM} type.
@item @item
@code{LOCATE()} and @code{INSTR()} are case-sensitive if one of the @code{LOCATE()} and @code{INSTR()} are case-sensitive if one of the
arguments is a binary string. Otherwise they are case insensitive. arguments is a binary string. Otherwise they are case-insensitive.
@item @item
@code{STRCMP()} now uses the current character set when doing comparisons, @code{STRCMP()} now uses the current character set when doing comparisons,
which means that the default comparison behavior now is case-insensitive. which means that the default comparison behavior now is case-insensitive.
...@@ -15345,7 +15345,7 @@ table entry with @code{Host}, @code{User}, and @code{Db} fields of ...@@ -15345,7 +15345,7 @@ table entry with @code{Host}, @code{User}, and @code{Db} fields of
tables contain scope fields indicating tables or table/column combinations tables contain scope fields indicating tables or table/column combinations
to which each entry applies. to which each entry applies.
@cindex case sensitivity, in access checking @cindex case-sensitivity, in access checking
For access-checking purposes, comparisons of @code{Host} values are For access-checking purposes, comparisons of @code{Host} values are
case-insensitive. @code{User}, @code{Password}, @code{Db}, and case-insensitive. @code{User}, @code{Password}, @code{Db}, and
@code{Table_name} values are case-sensitive. @code{Table_name} values are case-sensitive.
...@@ -17179,7 +17179,7 @@ unless the limits are granted to them. These limits can be granted ...@@ -17179,7 +17179,7 @@ unless the limits are granted to them. These limits can be granted
@strong{only} via global @code{GRANT (*.*)}, using this syntax: @strong{only} via global @code{GRANT (*.*)}, using this syntax:
@example @example
GRANT ... WITH MAX_QUERIES_PER_HOUR N1 GRANT ... WITH MAX_QUERIES_PER_HOUR N1
MAX_UPDATES_PER_HOUR N2 MAX_UPDATES_PER_HOUR N2
MAX_CONNECTIONS_PER_HOUR N3; MAX_CONNECTIONS_PER_HOUR N3;
@end example @end example
...@@ -27979,7 +27979,7 @@ may find it useful to refer to the various indexes. ...@@ -27979,7 +27979,7 @@ may find it useful to refer to the various indexes.
@menu @menu
* Literals:: Literals: How to Write Strings and Numbers * Literals:: Literals: How to Write Strings and Numbers
* Legal names:: Database, Table, Index, Column, and Alias Names * Legal names:: Database, Table, Index, Column, and Alias Names
* Name case sensitivity:: Case Sensitivity in Names * Name case sensitivity:: Case-Sensitivity in Names
* Variables:: User Variables * Variables:: User Variables
* Comments:: Comment Syntax * Comments:: Comment Syntax
* Reserved words:: Is MySQL Picky About Reserved Words? * Reserved words:: Is MySQL Picky About Reserved Words?
...@@ -28347,14 +28347,14 @@ programs prefix table names with a @samp{.} character. ...@@ -28347,14 +28347,14 @@ programs prefix table names with a @samp{.} character.
@cindex names, case-sensitivity @cindex names, case-sensitivity
@cindex case-sensitivity, in names @cindex case-sensitivity, in names
@cindex database names, case sensitivity @cindex database names, case-sensitivity
@cindex table names, case sensitivity @cindex table names, case-sensitivity
@cindex column names, case sensitivity @cindex column names, case-sensitivity
@cindex alias names, case sensitivity @cindex alias names, case-sensitivity
In MySQL, databases and tables correspond to directories and files In MySQL, databases and tables correspond to directories and files
within those directories. Consequently, the case sensitivity of the within those directories. Consequently, the case-sensitivity of the
underlying operating system determines the case sensitivity of database and underlying operating system determines the case-sensitivity of database and
table names. This means database and table names are case-insensitive in table names. This means database and table names are case-insensitive in
Windows, and case-sensitive in most varieties of Unix (Mac OS X being an Windows, and case-sensitive in most varieties of Unix (Mac OS X being an
exception). exception).
...@@ -31036,7 +31036,7 @@ mysql> SELECT LOCATE('xbar', 'foobar'); ...@@ -31036,7 +31036,7 @@ mysql> SELECT LOCATE('xbar', 'foobar');
@end example @end example
This function is multi-byte safe. In MySQL 3.23 this function is case This function is multi-byte safe. In MySQL 3.23 this function is case
sensitive, while in 4.0 it's only case sensitive if either argument is sensitive, while in 4.0 it's only case-sensitive if either argument is
a binary string. a binary string.
@findex LOCATE() @findex LOCATE()
...@@ -31051,7 +31051,7 @@ mysql> SELECT LOCATE('bar', 'foobarbar',5); ...@@ -31051,7 +31051,7 @@ mysql> SELECT LOCATE('bar', 'foobarbar',5);
@end example @end example
This function is multi-byte safe. In MySQL 3.23 this function is case This function is multi-byte safe. In MySQL 3.23 this function is case
sensitive, while in 4.0 it's only case sensitive if either argument is sensitive, while in 4.0 it's only case-sensitive if either argument is
a binary string. a binary string.
@findex INSTR() @findex INSTR()
...@@ -31068,7 +31068,7 @@ mysql> SELECT INSTR('xbar', 'foobar'); ...@@ -31068,7 +31068,7 @@ mysql> SELECT INSTR('xbar', 'foobar');
@end example @end example
This function is multi-byte safe. In MySQL 3.23 this function is case This function is multi-byte safe. In MySQL 3.23 this function is case
sensitive, while in 4.0 it's only case sensitive if either argument is sensitive, while in 4.0 it's only case-sensitive if either argument is
a binary string. a binary string.
@findex LPAD() @findex LPAD()
...@@ -31425,7 +31425,7 @@ a binary string. This only affects comparisons. ...@@ -31425,7 +31425,7 @@ a binary string. This only affects comparisons.
@menu @menu
* String comparison functions:: String Comparison Functions * String comparison functions:: String Comparison Functions
* Case Sensitivity Operators:: Case Sensitivity * Case Sensitivity Operators:: Case-Sensitivity
@end menu @end menu
@node String comparison functions, Case Sensitivity Operators, String functions, String functions @node String comparison functions, Case Sensitivity Operators, String functions, String functions
...@@ -31434,8 +31434,8 @@ a binary string. This only affects comparisons. ...@@ -31434,8 +31434,8 @@ a binary string. This only affects comparisons.
@findex string comparison functions @findex string comparison functions
@findex functions, string comparison @findex functions, string comparison
@cindex case sensitivity, in string comparisons @cindex case-sensitivity, in string comparisons
@cindex string comparisons, case sensitivity @cindex string comparisons, case-sensitivity
Normally, if any expression in a string comparison is case-sensitive, the Normally, if any expression in a string comparison is case-sensitive, the
comparison is performed in case-sensitive fashion. comparison is performed in case-sensitive fashion.
...@@ -31591,7 +31591,7 @@ positive floating-point number. Zero relevance means no similarity. ...@@ -31591,7 +31591,7 @@ positive floating-point number. Zero relevance means no similarity.
@end table @end table
@node Case Sensitivity Operators, , String comparison functions, String functions @node Case Sensitivity Operators, , String comparison functions, String functions
@subsubsection Case Sensitivity @subsubsection Case-Sensitivity
@findex casts @findex casts
...@@ -47530,7 +47530,7 @@ the server runs, for example, in @code{safe_mysqld} or @code{mysql.server}. ...@@ -47530,7 +47530,7 @@ the server runs, for example, in @code{safe_mysqld} or @code{mysql.server}.
@menu @menu
* Case sensitivity:: Case Sensitivity in Searches * Case sensitivity:: Case-Sensitivity in Searches
* Using DATE:: Problems Using @code{DATE} Columns * Using DATE:: Problems Using @code{DATE} Columns
* Problems with NULL:: Problems with @code{NULL} Values * Problems with NULL:: Problems with @code{NULL} Values
* Problems with alias:: Problems with @code{alias} * Problems with alias:: Problems with @code{alias}
...@@ -47540,9 +47540,9 @@ the server runs, for example, in @code{safe_mysqld} or @code{mysql.server}. ...@@ -47540,9 +47540,9 @@ the server runs, for example, in @code{safe_mysqld} or @code{mysql.server}.
@end menu @end menu
@node Case sensitivity, Using DATE, Query Issues, Query Issues @node Case sensitivity, Using DATE, Query Issues, Query Issues
@appendixsubsec Case Sensitivity in Searches @appendixsubsec Case-Sensitivity in Searches
@cindex case sensitivity, in searches @cindex case-sensitivity, in searches
@cindex searching, and case-sensitivity @cindex searching, and case-sensitivity
@cindex Chinese @cindex Chinese
@cindex Big5 Chinese character encoding @cindex Big5 Chinese character encoding
...@@ -49666,8 +49666,8 @@ Added @code{--no-beep} and @code{--prompt} options to @code{mysql} command-line ...@@ -49666,8 +49666,8 @@ Added @code{--no-beep} and @code{--prompt} options to @code{mysql} command-line
@item @item
New feature: management of user resources. New feature: management of user resources.
@example @example
GRANT ... WITH MAX_QUERIES_PER_HOUR N1 GRANT ... WITH MAX_QUERIES_PER_HOUR N1
MAX_UPDATES_PER_HOUR N2 MAX_UPDATES_PER_HOUR N2
MAX_CONNECTIONS_PER_HOUR N3; MAX_CONNECTIONS_PER_HOUR N3;
@end example @end example
@xref{User resources}. @xref{User resources}.
...@@ -50007,7 +50007,7 @@ Fixed the @code{FLOAT(X+1,X)} is not converted to @code{FLOAT(X+2,X)}. ...@@ -50007,7 +50007,7 @@ Fixed the @code{FLOAT(X+1,X)} is not converted to @code{FLOAT(X+2,X)}.
(This also affected @code{DECIMAL}, @code{DOUBLE} and @code{REAL} types) (This also affected @code{DECIMAL}, @code{DOUBLE} and @code{REAL} types)
@item @item
Fixed the result from @code{IF()} is case in-sensitive if the 2 and Fixed the result from @code{IF()} is case in-sensitive if the 2 and
third arguments are case sensitive. third arguments are case-sensitive.
@item @item
Fixed core dump problem on OSF in @code{gethostbyname_r}. Fixed core dump problem on OSF in @code{gethostbyname_r}.
@item @item
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment