Skip to content

Commit

Permalink
Merge branch '4.0.x' into 4.1.x
Browse files Browse the repository at this point in the history
* 4.0.x:
  Fix documentation of supported MariaDB releases (#6407)
  • Loading branch information
derrabus committed May 16, 2024
2 parents 002a4d9 + 0b77350 commit 919bbf1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
11 changes: 6 additions & 5 deletions docs/en/reference/platforms.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,16 @@ can be found as follows:
MySQL
^^^^^

- ``MySQLPlatform`` for version 5.7 (5.7.9 GA) and above.
- ``MySQL80Platform`` for version 8.0 (8.0 GA) and above.
- ``MySQL84Platform`` for version 8.4 (8.4 GA) and above.
- ``MySQLPlatform`` for version 5.7.9 and above.
- ``MySQL80Platform`` for version 8.0 and above.
- ``MySQL84Platform`` for version 8.4 and above.

MariaDB
^^^^^

- ``MariaDBPlatform`` for version 10.4 (10.4.3 GA) and above.
- ``MariaDB1052Platform`` for version 10.5 (10.5.2 GA) and above.
- ``MariaDBPlatform`` for version 10.4.3 and above.
- ``MariaDb1052Platform`` for version 10.5.2 and above.
- ``MariaDb1060Platform`` for version 10.6 and above.

Oracle
^^^^^^
Expand Down
2 changes: 1 addition & 1 deletion src/Platforms/MariaDB1052Platform.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Doctrine\DBAL\Schema\TableDiff;

/**
* Provides the behavior, features and SQL dialect of the MariaDB 10.5 (10.5.2 GA) database platform.
* Provides the behavior, features and SQL dialect of the MariaDB 10.5 database platform.
*
* @deprecated This class will be removed once support for MariaDB 10.4 is dropped.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Platforms/MariaDB1060Platform.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Doctrine\DBAL\SQL\Builder\SelectSQLBuilder;

/**
* Provides the behavior, features and SQL dialect of the MariaDB 10.6 (10.6.0 GA) database platform.
* Provides the behavior, features and SQL dialect of the MariaDB 10.6 database platform.
*/
class MariaDB1060Platform extends MariaDB1052Platform
{
Expand Down
2 changes: 1 addition & 1 deletion src/Platforms/MySQL80Platform.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Doctrine\DBAL\SQL\Builder\SelectSQLBuilder;

/**
* Provides the behavior, features and SQL dialect of the MySQL 8.0 (8.0 GA) database platform.
* Provides the behavior, features and SQL dialect of the MySQL 8.0 database platform.
*
* @deprecated This class will be removed once support for MySQL 5.7 is dropped.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Platforms/MySQL84Platform.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Doctrine\DBAL\Platforms\Keywords\MySQL84Keywords;

/**
* Provides the behavior, features and SQL dialect of the MySQL 8.4 (8.4 GA) database platform.
* Provides the behavior, features and SQL dialect of the MySQL 8.4 database platform.
*/
class MySQL84Platform extends MySQL80Platform
{
Expand Down

0 comments on commit 919bbf1

Please sign in to comment.