Release Notes for MariaDB Xpand 5.3.22
This page is part of MariaDB's Documentation.
The parent of this page is: Release Notes for MariaDB Xpand 5.3
Topics on this page:
Overview
MariaDB Xpand is a distributed SQL database. This release of MariaDB Xpand is a maintenance release.
MariaDB Xpand 5.3.22 was released on 2022-07-14.
Notable Changes
statd.py
can now accept the database user password from an environment variable. (XPT-320)Providing the password via an environment variable can be more secure than providing it using the
--password
command-line option, because the command-line option appears in the output ofps
.When the
-E
command-line option is specified, the database user password is read from theXPAND_SQL_PASSWD
environment variable:$ export XPAND_SQL_PASSWD='USER_PASSWORD' $ /opt/clustrix/bin/statd.py --host 'HOSTNAME' --user 'USER_NAME' -E
Issues Fixed
Can result in data loss
When an
UPDATE
is executed on a table that has aTIMESTAMP
orDATETIME
column defined withON UPDATE NOW()
, the column's value is not updated to the current timestamp if the table also has a trigger defined withBEFORE UPDATE .. FOR EACH ROW
. (XPT-416)Starting with this release, Xpand updates columns defined with
ON UPDATE NOW()
when the table also has a trigger defined withBEFORE UPDATE .. FOR EACH ROW
.