Alterações na distribuição 3.22.1 (Jun 1998: Alpha)
Added new C API function mysql_ping()
.
- Added new API functions
mysql_init()
andmysql_options()
. You now MUST callmysql_init()
before you callmysql_real_connect()
. You don't have to callmysql_init()
if you only usemysql_connect()
. - Added
mysql_options(...,MYSQL_OPT_CONNECT_TIMEOUT,...)
so you can set a timeout for connecting to a server. - Added
--timeout
option tomysqladmin
, as a test ofmysql_options()
. - Added
AFTER column
andFIRST
options toALTER TABLE ... ADD columns
. This makes it possible to add a new column at some specific location within a row in an existing table. WEEK()
now takes an optional argument to allow handling of weeks when the week starts on Monday (some European countries). By default,WEEK()
assumes the week starts on Sunday.TIME
columns weren't stored properly (bug in MariaDB Version 3.22.0).UPDATE
now returns information about how many rows were matched and updated, and how manywarnings
occurred when doing the update.- Fixed incorrect result from
FORMAT(-100,2)
. ENUM
andSET
columns were compared in binary (case-sensitive) fashion; changed to be case-insensitive.