Alterações na distribuição 4.0.1 (23 Dec 2001)
Added system
command to MariaDB
.
- Fixed bug when
HANDLER
was used with some unsupported table type. mysqldump
now putsALTER TABLE tbl_name DISABLE KEYS
andALTER TABLE tbl_name ENABLE KEYS
in the sql dump.- Added
mysql_fix_extensions
script. - Fixed stack overrun problem with
LOAD DATA FROM MASTER
on OSF/1. - Fixed shutdown problem on HP-UX.
- Added
DES_ENCRYPT()
andDES_DECRYPT()
functions. - Added
FLUSH DES_KEY_FILE
statement. - Added
--des-key-file
option tomysqld
. HEX(string)
now returns the characters instring
converted to hexadecimal.- Fixed problem with
GRANT
when usinglower_case_table_names=1
. - Changed
SELECT ... IN SHARE MODE
toSELECT ... LOCK IN SHARE MODE
(as in MariaDB 3.23). - A new query cache to cache results from identical
SELECT
queries. - Fixed core dump bug on 64-bit machines when it got an incorrect communication packet.
MATCH ... AGAINST(... IN BOOLEAN MODE)
can now work withoutFULLTEXT
index.- Fixed slave to replicate from 3.23 master.
- Miscellaneous replication fixes/cleanup.
- Got shutdown to work on Mac OS X.
- Added
myisam/ft_dump
utility for low-level inspection ofFULLTEXT
indexes. - Fixed bug in
DELETE ... WHERE ... MATCH ...
. - Added support for
MATCH ... AGAINST(... IN BOOLEAN MODE)
. Note: you must rebuild your tables withALTER TABLE tablename TYPE=MyISAM
to be able to use boolean full-text search. LOCATE()
andINSTR()
are now case-sensitive if either argument is a binary string.- Changed
RAND()
initialisation so thatRAND(N)
andRAND(N+1)
are more distinct. - Fixed core dump bug in
UPDATE ... ORDER BY
. - In 3.23,
INSERT INTO ... SELECT
always hadIGNORE
enabled. Now MariaDB will stop (and possibly roll back) by default in case of an error unless you specifyIGNORE
. - Ignore
DATA DIRECTORY
andINDEX DIRECTORY
directives on Windows. - Added boolean full-text search code. It should be considered early alpha.
- Extended
MODIFY
andCHANGE
inALTER TABLE
to accept theFIRST
andAFTER
keywords. - Indexes are now used with
ORDER BY
on a wholeInnoDB
table.