Good news: As you read this, you can very soon start downloading the first version of MySQL 5.5 from http://dev.mysql.com/downloads/.
Some things are the same as before, others are different. Let’s start by looking at the version string, SELECT VERSION();
mysql> SELECT VERSION(); +--------------+ | version() | +--------------+ | 5.5.0-m2-log | +--------------+ 1 row in set (0.00 sec) mysql>
And let’s look at the highlights of the release notes, or better still, MySQL 5.5 in a nutshell in the manual on http://dev.mysql.com/doc/refman/5.5/en/mysql-nutshell.html. Top of the list is …
[Read more]