Howard changed some formatting and grammar

parent 73443703
...@@ -3,3 +3,4 @@ monty@narttu.mysql.fi ...@@ -3,3 +3,4 @@ monty@narttu.mysql.fi
mwagner@work.mysql.com mwagner@work.mysql.com
sasha@mysql.sashanet.com sasha@mysql.sashanet.com
serg@serg.mysql.com serg@serg.mysql.com
yfaktoro@nslinuxw2.bedford.progress.com
...@@ -148,8 +148,7 @@ version see the relevant distribution. ...@@ -148,8 +148,7 @@ version see the relevant distribution.
* Function Index:: SQL command, type and function index * Function Index:: SQL command, type and function index
* Concept Index:: Concept Index * Concept Index:: Concept Index
@detailmenu @detailmenu --- The Detailed Node Listing ---
--- The Detailed Node Listing ---
General Information About MySQL General Information About MySQL
...@@ -9038,7 +9037,7 @@ The @code{mysql.server} script uses the following variables: ...@@ -9038,7 +9037,7 @@ The @code{mysql.server} script uses the following variables:
@findex command-line options @findex command-line options
@cindex options, command-line @cindex options, command-line
@node Command-line options, Option files, Automatic start, Post-installation @node Command-line options, Option files, Automatic start, Post-installation
@subsection mysqld command-line options @subsection Command-line Options
@code{mysqld} accepts the following command-line options: @code{mysqld} accepts the following command-line options:
...@@ -20004,7 +20003,8 @@ DELAYED}. If the queue becomes full, any client that does @code{INSERT ...@@ -20004,7 +20003,8 @@ DELAYED}. If the queue becomes full, any client that does @code{INSERT
DELAYED} will wait until there is room in the queue again. DELAYED} will wait until there is room in the queue again.
@item @code{flush} @item @code{flush}
This is @code{ON} if you started @code{mysqld} with @code{--flush}. This is @code{ON} if you have started @strong{MySQL} with the @code{--flush}
option.
@item @code{flush_time} @item @code{flush_time}
If this is set to a non-zero value, then every @code{flush_time} seconds all If this is set to a non-zero value, then every @code{flush_time} seconds all
...@@ -40945,8 +40945,8 @@ The @code{mysql_real_connect()} call is changed to: ...@@ -40945,8 +40945,8 @@ The @code{mysql_real_connect()} call is changed to:
@example @example
mysql_real_connect(MYSQL *mysql, const char *host, const char *user, mysql_real_connect(MYSQL *mysql, const char *host, const char *user,
const char *passwd, const char *db, uint port, const char *passwd, const char *db, uint port,
const char *unix_socket, uint client_flag) const char *unix_socket, uint client_flag)
@end example @end example
@item @item
Each connection is handled by its own thread, rather than by the Each connection is handled by its own thread, rather than by the
...@@ -42073,7 +42073,7 @@ Fixed bug that you couldn't use @code{tbl_name.field_name} in @code{UPDATE}. ...@@ -42073,7 +42073,7 @@ Fixed bug that you couldn't use @code{tbl_name.field_name} in @code{UPDATE}.
Fixed @code{SELECT DISTINCT} when using 'hidden group'. For example: Fixed @code{SELECT DISTINCT} when using 'hidden group'. For example:
@example @example
mysql> SELECT DISTINCT MOD(some_field,10) FROM test mysql> SELECT DISTINCT MOD(some_field,10) FROM test
GROUP BY some_field; GROUP BY some_field;
@end example @end example
Note: @code{some_field} is normally in the @code{SELECT} part. ANSI SQL should Note: @code{some_field} is normally in the @code{SELECT} part. ANSI SQL should
require it. require it.
...@@ -42146,8 +42146,8 @@ New range optimizer that can resolve ranges when some keypart prefix is ...@@ -42146,8 +42146,8 @@ New range optimizer that can resolve ranges when some keypart prefix is
constant. Example: constant. Example:
@example @example
mysql> SELECT * FROM tbl_name mysql> SELECT * FROM tbl_name
WHERE key_part_1="customer" WHERE key_part_1="customer"
AND key_part_2>=10 AND key_part_2<=10; AND key_part_2>=10 AND key_part_2<=10;
@end example @end example
@end itemize @end itemize
...@@ -42587,7 +42587,7 @@ lookups. The column that is used should be a constant for each group because ...@@ -42587,7 +42587,7 @@ lookups. The column that is used should be a constant for each group because
the value is calculated only once for the first row that is found for a group. the value is calculated only once for the first row that is found for a group.
@example @example
mysql> SELECT id,lookup.text,sum(*) FROM test,lookup mysql> SELECT id,lookup.text,sum(*) FROM test,lookup
WHERE test.id=lookup.id GROUP BY id; WHERE test.id=lookup.id GROUP BY id;
@end example @end example
@item @item
Fixed bug in @code{SUM(function)} (could cause a core dump). Fixed bug in @code{SUM(function)} (could cause a core dump).
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