Alterações na distribuição 3.22.9
SET SQL_LOG_UPDATE=0
caused a lockup of the server.
- New SQL command:
FLUSH [ TABLES | HOSTS | LOGS | PRIVILEGES ] [, ...]
- New SQL command:
KILL
thread_id
. - Added casts and changed include files to make MariaDB easier to compile on AIX and DEC OSF/1 4.x
- Fixed conversion problem when using
ALTER TABLE
from aINT
to a shortCHAR()
column. - Added
SELECT HIGH_PRIORITY
; this will get a lock for theSELECT
even if there is a thread waiting for anotherSELECT
to get aWRITE LOCK
. - Moved
wild_compare()
to string class to be able to useLIKE
onBLOB
/TEXT
columns with\0
. - Added
ESCAPE
option toLIKE
. - Added a lot more output to
mysqladmin debug
. - You can now start
mysqld
on Windows with the--flush
option. This will flush all tables to disk after each update. This makes things much safer on the Windows platforms but also much slower.