Alterações na distribuição 3.23.33 (09 Feb 2001)
Fixed DNS lookups not to use the same mutex as the hostname cache. This will enable known hosts to be quickly resolved even if a DNS lookup takes a long time.
- Added
--character-sets-diroption tomyisampack. - Removed warnings when running
REPAIR TABLE ... EXTENDED. - Fixed a bug that caused a core dump when using
GROUP BYon an alias, where the alias was the same as an existing column name. - Added
SEQUENCE()as an example UDF function. - Changed
mysql_install_dbto useBINARYforCHARcolumns in the privilege tables. - Changed
TRUNCATE tbl_nametoTRUNCATE TABLE tbl_nameto use the same syntax as Oracle. Until 4.0 we will also allowTRUNCATE tbl_nameto not crash old code. - Fixed
no found rows
bug inMyISAMtables when aBLOBwas first part of a multi-part key. - Fixed bug where
CASEdidn't work withGROUP BY. - Added
--sort-recoveroption tomyisamchk. myisamchk -SandOPTIMIZE TABLEnow work on Windows.- Fixed bug when using
DISTINCTon results from functions that referred to a group function, like:SELECT a, DISTINCT SEC_TO_TIME(SUM(a)) FROM tbl_name GROUP BY a, b;
- Fixed buffer overrun in
libmysqlclientlibrary. Fixed bug in handlingSTOPevent afterROTATEevent in replication. - Fixed another buffer overrun in
DROP DATABASE. - Added
Table_locks_immediateandTable_locks_waitedstatus variables. - Fixed bug in replication that broke slave server start with existing
master.info. This fixes a bug introduced in 3.23.32. - Added
SET SQL_SLAVE_SKIP_COUNTER=ncommand to recover from replication glitches without a full database copy. - Added
max_binlog_sizevariable; the binary log will be rotated automatically when the size crosses the limit. - Added
Last_Error,Last_Errno, andSlave_skip_countervariables toSHOW SLAVE STATUS. - Fixed bug in
MASTER_POS_WAIT()function. - Execute core dump handler on
SIGILL, andSIGBUSin addition toSIGSEGV. - On x86 Linux, print the current query and thread (connection) id, if available, in the core dump handler.
- Fixed several timing bugs in the test suite.
- Extended
mysqltestto take care of the timing issues in the test suite. ALTER TABLEcan now be used to change the definition for aMERGEtable.- Fixed creation of
MERGEtables on Windows. - Portability fixes for OpenBSD and OS/2.
- Added
--temp-pooloption tomysqld. Using this option will cause most temporary files created to use a small set of names, rather than a unique name for each new file. This is to work around a problem in the Linux kernel dealing with creating a bunch of new files with different names. With the old behaviour, Linux seems to 'leak' memory, as it's being allocated to the directory entry cache instead of the disk cache.