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_namecan now be used to reclaim disk space after many deletes. Currently, this usesALTER TABLEto regenerate the table, but in the future it will use an integratedisamchkfor more speed.- Upgraded
libtoolto get the configure more portable. - Fixed slow
UPDATEandDELETEoperations when usingDATETIMEorDATEkeys. - Changed optimiser to make it better at deciding when to do a full join and when using keys.
- You can now use
mysqladmin procto display information about your own threads. Only users with thePROCESSprivilege can get information about all threads. (In 4.0.2 one needs theSUPERprivilege for this.) - Added handling of formats
YYMMDD,YYYYMMDD,YYMMDDHHMMSSfor numbers when usingDATETIMEandTIMESTAMPtypes. (Formerly these formats only worked with strings.) - Added connect option
CLIENT_IGNORE_SPACEto allow use of spaces after function names and before '(' (Powerbuilder requires this). This will make all function names reserved words. - Added the
--log-long-formatoption tomysqldto enable timestamps and INSERT_IDs in the update log. - Added
--whereoption tomysqldump(patch by Jim Faucette). - The lexical analyser now uses
perfect hashing
for faster parsing of SQL statements.