Tag Archives: MariaDB 10.9
The MariaDB Foundation is pleased to announce the availability of MariaDB 10.11.3, MariaDB 10.6.13, MariaDB 10.5.20, MariaDB 10.4.29 and MariaDB 10.3.39, the latest stable releases in their respective long-term series (maintained for five years from their first GA release dates), as well as MariaDB 10.10.4, MariaDB 10.9.6 and MariaDB 10.8.8, the latest Generally Available releases in their respective short-term series (maintained for one year).
See the release notes and changelogs for details.
Release Notes Changelog What is MariaDB 10.11?
…
The MariaDB Foundation is pleased to announce the availability of MariaDB 10.10.3, MariaDB 10.9.5, MariaDB 10.8.7 and MariaDB 10.7.8, the latest Generally Available releases in their respective short-term series (maintained for one year from their first GA release dates), as well as MariaDB 10.6.12, MariaDB 10.5.19, MariaDB 10.4.28 and MariaDB 10.3.38, the latest stable releases in their respective long-term series (maintained for five years).
See the release notes and changelogs for details.
Release Notes Changelog What is MariaDB 10.10?
…
The MariaDB Foundation is pleased to announce the availability of MariaDB 10.9.4, MariaDB 10.8.6 and MariaDB 10.7.7, the latest Generally Available releases in their respective short-term series (maintained for one year from their first GA release dates), as well as MariaDB 10.6.11, MariaDB 10.5.18, MariaDB 10.4.27 and MariaDB 10.3.37, the latest stable release in their respective long-term series (maintained for five years).
See the release notes and changelogs for details.
Release Notes Changelog What is MariaDB 10.9?
…
The MariaDB Foundation is pleased to announce the availability of MariaDB 10.9.3, MariaDB 10.8.5 and MariaDB 10.7.6, the latest Generally Available releases in their respective short-term support series (maintained for one year from their first GA release dates), as well as MariaDB 10.6.10 the latest stable release in the 10.6 long-term support series (maintained for five years).
These releases fix critical regressions found in the previous releases. See the release notes and changelogs for details.
Release Notes Changelog What is MariaDB 10.9?
…
Continue reading “MariaDB 10.9.3, 10.8.5, 10.7.6 and 10.6.10 now available”
The MariaDB Foundation is pleased to announce the availability of MariaDB 10.10.1, the first release candidate in the MariaDB 10.10 series, and MariaDB 10.9.2 the first generally available release in the MariaDB 10.9 series. These are both short-term support series, maintained for one year after GA.
See the release notes and changelogs for details.
Release Notes Changelog What is MariaDB 10.10?
Release Notes Changelog What is MariaDB 10.9?
…
Continue reading “MariaDB 10.10.1 RC and 10.9.2 GA now available”
The MariaDB Foundation is pleased to announce the availability of MariaDB 10.8.4 and MariaDB 10.7.5, the latest Generally Available releases in their respective short-term support series (maintained for one year from their first GA release dates), as well as MariaDB 10.6.9, MariaDB 10.5.17, MariaDB 10.4.26, MariaDB 10.3.36 the latest stable releases in their respective long-term support series (maintained for five years).
See the release notes and changelogs for details. Note that repo mirrors may take some time to sync.
Release Notes Changelog What is MariaDB 10.8?
…
Continue reading “MariaDB 10.8.4, 10.7.5, 10.6.9, 10.5.17, 10.4.26 and 10.3.36 now available”
The MariaDB Foundation is pleased to announce the availability of MariaDB 10.9.1, the first Release Candidate (RC) in the MariaDB 10.9 series, MariaDB 10.8.3, the first Generally Available (GA) release in the MariaDB 10.8 series, MariaDB 10.7.4, the second Generally Available release in the MariaDB 10.7 series (all maintained for one year from their first GA release dates), as well as MariaDB 10.6.8, MariaDB 10.5.16, MariaDB 10.4.25, MariaDB 10.3.35 and MariaDB 10.2.44, the latest stable releases in their respective series. …
SHOW ANALYZE
If you ever had to do query performance troubleshooting with MariaDB, you should be
familiar with MariaDB’s ANALYZE for statements feature. It does what EXPLAIN ANALYZE does in some other database systems: ANALYZE query runs the query and produces EXPLAIN output, amended with the data from the query execution:
FROM orders, customer
WHERE
customer.c_custkey = orders.o_custkey AND
customer.c_acctbal < 0 AND
orders.o_totalprice > 200*1000
+—-+————-+———-+——+—————+————-+———+——————–+——–+——–+———-+————+————-+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | r_rows | filtered | r_filtered | Extra |
+—-+————-+———-+——+—————+————-+———+——————–+——–+——–+———-+————+————-+
| 1 | SIMPLE | customer | ALL | PRIMARY,…
…
Continue reading “10.9 preview feature: SHOW ANALYZE and EXPLAIN FOR CONNECTION support”