Alterações na distribuição 3.22.7 (Sep 1998: Beta)
Added LIMIT
clause for the DELETE
statement.
- You can now use the
/*! ... */
syntax to hide MySQL-specific keywords when you write portable code. MariaDB will parse the code inside the comments as if the surrounding/*!
and*/
comment characters didn't exist. OPTIMIZE TABLE tbl_name
can now be used to reclaim disk space after many deletes. Currently, this usesALTER TABLE
to regenerate the table, but in the future it will use an integratedisamchk
for more speed.- Upgraded
libtool
to get the configure more portable. - Fixed slow
UPDATE
andDELETE
operations when usingDATETIME
orDATE
keys. - Changed optimiser to make it better at deciding when to do a full join and when using keys.
- You can now use
mysqladmin proc
to display information about your own threads. Only users with thePROCESS
privilege can get information about all threads. (In 4.0.2 one needs theSUPER
privilege for this.) - Added handling of formats
YYMMDD
,YYYYMMDD
,YYMMDDHHMMSS
for numbers when usingDATETIME
andTIMESTAMP
types. (Formerly these formats only worked with strings.) - Added connect option
CLIENT_IGNORE_SPACE
to allow use of spaces after function names and before '(
' (Powerbuilder requires this). This will make all function names reserved words. - Added the
--log-long-format
option tomysqld
to enable timestamps and INSERT_IDs in the update log. - Added
--where
option tomysqldump
(patch by Jim Faucette). - The lexical analyser now uses
perfect hashing
for faster parsing of SQL statements.