manual.texi change notes cleanup

parent 1d86021c
...@@ -48230,20 +48230,20 @@ Our TODO section contains what we plan to have in 4.0. @xref{TODO MySQL 4.0}. ...@@ -48230,20 +48230,20 @@ Our TODO section contains what we plan to have in 4.0. @xref{TODO MySQL 4.0}.
@itemize @bullet @itemize @bullet
@item @item
Made same changes in multi table updates as in multi table delete Made same changes in multi table updates as in multi table delete.
@item @item
Fixed bug in multi table delete. Fixed bug in multi table delete.
@item @item
Fixed bug in @code{SELECT CONCAT(argument-list) ... GROUP BY 1}. Fixed bug in @code{SELECT CONCAT(argument-list) ... GROUP BY 1}.
@item @item
@code{SELECT .. INSERT} did a full rollback in case of an error. Fixed @code{SELECT .. INSERT} did a full rollback in case of an error. Fixed
so that we only rollback the last statement. so that we only roll back the last statement.
@item @item
Fixed bug with empty expression for boolean fulltext search. Fixed bug with empty expression for boolean fulltext search.
@item @item
Fixed core dump bug in updating fulltext key from/to @code{NULL}. Fixed core dump bug in updating fulltext key from/to @code{NULL}.
@item @item
ODBC compatibility: Added @code{BIT_LENGTH()} ODBC compatibility: Added @code{BIT_LENGTH()}.
@item @item
Fixed core dump bug in @code{GROUP BY BINARY column}. Fixed core dump bug in @code{GROUP BY BINARY column}.
@item @item
...@@ -48262,7 +48262,7 @@ For more information, read @ref{Cast Functions}. ...@@ -48262,7 +48262,7 @@ For more information, read @ref{Cast Functions}.
@code{CREATE ... SELECT} on @code{DATE} and @code{TIME} functions now @code{CREATE ... SELECT} on @code{DATE} and @code{TIME} functions now
create columns of the expected type. create columns of the expected type.
@item @item
Changed order of how keys are created in tables. Changed order in which keys are created in tables.
@item @item
Added a new columns @code{Null} and @code{Index_type} to @code{SHOW INDEX}. Added a new columns @code{Null} and @code{Index_type} to @code{SHOW INDEX}.
@end itemize @end itemize
...@@ -48277,17 +48277,17 @@ Fixed bug when @code{HANDLER} was used with some unsupported table type. ...@@ -48277,17 +48277,17 @@ Fixed bug when @code{HANDLER} was used with some unsupported table type.
@code{mysqldump} now puts @code{ALTER TABLE table_name DISABLE KEYS} and @code{mysqldump} now puts @code{ALTER TABLE table_name DISABLE KEYS} and
@code{ALTER TABLE table_name DISABLE KEYS} in the sql dump. @code{ALTER TABLE table_name DISABLE KEYS} in the sql dump.
@item @item
Added @code{mysql_fix_extensions} script Added @code{mysql_fix_extensions} script.
@item @item
Fixed stack overrun problem @code{LOAD DATA FROM MASTER} on OSF1. Fixed stack overrun problem @code{LOAD DATA FROM MASTER} on OSF1.
@item @item
Fixed shutdown problem on HPUX. Fixed shutdown problem on HP-UX.
@item @item
Added functions @code{des_encrypt()} and @code{des_decrypt()}. Added functions @code{des_encrypt()} and @code{des_decrypt()}.
@item @item
Added statement @code{FLUSH DES_KEY_FILE}. Added statement @code{FLUSH DES_KEY_FILE}.
@item @item
Added mysqld option @code{--des-key-file}. Added @code{mysqld} option @code{--des-key-file}.
@item @item
@code{HEX(string)} now returns the characters in string converted to @code{HEX(string)} now returns the characters in string converted to
hexadecimal. hexadecimal.
...@@ -48299,7 +48299,7 @@ Changed @code{SELECT ... IN SHARE MODE} to ...@@ -48299,7 +48299,7 @@ Changed @code{SELECT ... IN SHARE MODE} to
@item @item
A new query cache to cache results from identical @code{SELECT} queries. A new query cache to cache results from identical @code{SELECT} queries.
@item @item
Fixed core dump bug on 64 bit machines when it got a wrong communication Fixed core dump bug on 64-bit machines when it got an incorrect communication
packet. packet.
@item @item
@code{MATCH ... AGAINST(... IN BOOLEAN MODE)} can now work @code{MATCH ... AGAINST(... IN BOOLEAN MODE)} can now work
...@@ -48317,7 +48317,7 @@ of @code{FULLTEXT} indexes. ...@@ -48317,7 +48317,7 @@ of @code{FULLTEXT} indexes.
Fixed bug in @code{DELETE ... WHERE ... MATCH ...}. Fixed bug in @code{DELETE ... WHERE ... MATCH ...}.
@item @item
Added support for @code{MATCH ... AGAINST(... IN BOOLEAN MODE)}. Added support for @code{MATCH ... AGAINST(... IN BOOLEAN MODE)}.
@strong{Note: you have to rebuild your tables with @strong{Note: you must rebuild your tables with
@code{ALTER TABLE tablename TYPE=MyISAM} to be @code{ALTER TABLE tablename TYPE=MyISAM} to be
able to use boolean fulltext search}. able to use boolean fulltext search}.
@item @item
...@@ -48338,7 +48338,7 @@ Added boolean fulltext search code. It should be considered early alpha. ...@@ -48338,7 +48338,7 @@ Added boolean fulltext search code. It should be considered early alpha.
Extended @code{MODIFY} and @code{CHANGE} in @code{ALTER TABLE} to accept Extended @code{MODIFY} and @code{CHANGE} in @code{ALTER TABLE} to accept
the @code{AFTER} keyword. the @code{AFTER} keyword.
@item @item
Index are now used with @code{ORDER BY} on a whole @code{InnoDB} table. Indexes are now used with @code{ORDER BY} on a whole @code{InnoDB} table.
@end itemize @end itemize
@node News-4.0.0, , News-4.0.1, News-4.0.x @node News-4.0.0, , News-4.0.1, News-4.0.x
...@@ -48393,28 +48393,28 @@ Speed up all internal list handling. ...@@ -48393,28 +48393,28 @@ Speed up all internal list handling.
@item @item
Speed up @code{IS NULL}, @code{ISNULL()} and some other internal primitives. Speed up @code{IS NULL}, @code{ISNULL()} and some other internal primitives.
@item @item
Creating full text indexes are now much faster. Full text index creation now is much faster.
@item @item
Tree-like cache to speed up bulk inserts and Tree-like cache to speed up bulk inserts and
@code{myisam_bulk_insert_tree_size} variable. @code{myisam_bulk_insert_tree_size} variable.
@item @item
Searching on packed (@code{CHAR}/@code{VARCHAR}) keys are now much faster. Searching on packed (@code{CHAR}/@code{VARCHAR}) keys is now much faster.
@item @item
Optimised queries of type: Optimised queries of type:
@code{SELECT DISTINCT * from table_name ORDER by key_part1 LIMIT #} @code{SELECT DISTINCT * from table_name ORDER by key_part1 LIMIT #}.
@item @item
@code{SHOW CREATE TABLE} now shows all table attributes. @code{SHOW CREATE TABLE} now shows all table attributes.
@item @item
@code{ORDER BY ... DESC} can now use keys. @code{ORDER BY ... DESC} can now use keys.
@item @item
@code{LOAD DATA FROM MASTER} "auto-magically" sets up a slave. @code{LOAD DATA FROM MASTER} ``auto-magically'' sets up a slave.
@item @item
Renamed @code{safe_mysqld} to @code{mysqld_safe}. Renamed @code{safe_mysqld} to @code{mysqld_safe}.
@item @item
Added support for symbolic links to @code{MyISAM} tables. Symlink handling is Added support for symbolic links to @code{MyISAM} tables. Symlink handling is
now enabled by default for Windows. now enabled by default for Windows.
@item @item
@code{LOAD DATA FROM MASTER} "auto-magically" sets up a slave. @code{LOAD DATA FROM MASTER} ``auto-magically'' sets up a slave.
@item @item
Added @code{SQL_CALC_FOUND_ROWS} and @code{FOUND_ROWS()}. This makes it Added @code{SQL_CALC_FOUND_ROWS} and @code{FOUND_ROWS()}. This makes it
possible to know how many rows a query would have returned possible to know how many rows a query would have returned
...@@ -48433,15 +48433,15 @@ Added @code{ORDER BY} syntax to @code{UPDATE} and @code{DELETE}. ...@@ -48433,15 +48433,15 @@ Added @code{ORDER BY} syntax to @code{UPDATE} and @code{DELETE}.
Added @code{ALTER TABLE table_name DISABLE KEYS} and Added @code{ALTER TABLE table_name DISABLE KEYS} and
@code{ALTER TABLE table_name ENABLE KEYS} commands. @code{ALTER TABLE table_name ENABLE KEYS} commands.
@item @item
Allow one to use @code{IN} instead of @code{FROM} in @code{SHOW} commands. Allow use of @code{IN} as a synonym for @code{FROM} in @code{SHOW} commands.
@item @item
Implemented ``repair by sort'' for @code{FULLTEXT} indexes. Implemented ``repair by sort'' for @code{FULLTEXT} indexes.
@code{REPAIR TABLE}, @code{ALTER TABLE}, and @code{OPTIMIZE TABLE} @code{REPAIR TABLE}, @code{ALTER TABLE}, and @code{OPTIMIZE TABLE}
for tables with @code{FULLTEXT} indexes are now up to 100 times faster. for tables with @code{FULLTEXT} indexes are now up to 100 times faster.
@item @item
Allow ANSI SQL syntax @code{X'hexadecimal-number'} Allow ANSI SQL syntax @code{X'hexadecimal-number'}.
@item @item
Cleaned up global lock handling for @code{FLUSH TABLES WITH READ LOCK} Cleaned up global lock handling for @code{FLUSH TABLES WITH READ LOCK}.
@item @item
Fixed problem with @code{DATETIME = constant} in @code{WHERE} optimisation. Fixed problem with @code{DATETIME = constant} in @code{WHERE} optimisation.
@item @item
...@@ -48557,13 +48557,13 @@ Restrict InnoDB keys to 500 bytes. ...@@ -48557,13 +48557,13 @@ Restrict InnoDB keys to 500 bytes.
@item @item
InnoDB now supports @code{NULL} in keys. InnoDB now supports @code{NULL} in keys.
@item @item
Fixed shutdown problem on HPUX. (Introduced in 3.23.46) Fixed shutdown problem on HP-UX. (Introduced in 3.23.46)
@item @item
Fixed core-dump bug in replication when using SELECT RELEASE_LOCK(); Fixed core-dump bug in replication when using @code{SELECT RELEASE_LOCK()}.
@item @item
Added new command: @code{DO expression,[expression]} Added new command: @code{DO expression,[expression]}
@item @item
Added @code{slave-skip-errors} option Added @code{slave-skip-errors} option.
@item @item
Added statistics variables for all MySQL commands. (@code{SHOW STATUS} is Added statistics variables for all MySQL commands. (@code{SHOW STATUS} is
now much longer). now much longer).
...@@ -48574,7 +48574,7 @@ Fixed that @code{GROUP BY expr DESC} works. ...@@ -48574,7 +48574,7 @@ Fixed that @code{GROUP BY expr DESC} works.
@item @item
Fixed bug when using @code{t1 LEFT JOIN t2 ON t2.key=constant}. Fixed bug when using @code{t1 LEFT JOIN t2 ON t2.key=constant}.
@item @item
@code{mysql_config} now also work with binary (relocated) distributions. @code{mysql_config} now also works with binary (relocated) distributions.
@end itemize @end itemize
@node News-3.23.46, News-3.23.45, News-3.23.47, News-3.23.x @node News-3.23.46, News-3.23.45, News-3.23.47, News-3.23.x
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