Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small fixes to PlatformHelper.php #218

Closed
wants to merge 3 commits into from
Closed

Conversation

yivi
Copy link
Contributor

@yivi yivi commented Sep 10, 2024

  • Conditional checks for existence of 'getNativeConnection' method, but then it doesn't call that method at all, and attempts to call directly $connection->getServerVersion(), which would fail because that method is private.
  • fix getMariaDbMysqlVersionNumber(), because sometimes $versionString may not have a patch version, in which case $versionParts will be [].

yivi and others added 2 commits September 10, 2024 13:14
Conditional checks for existence of 'getNativeConnection' method, but then it doesn't call that method at all, and attempts to call directly `$connection->getServerVersion()`, which would fail because that method is private.
…may not have a patch version, in which case $versionParts will be `[]`.
@yivi yivi changed the title Use 'getNativeConnection' on PlatformHelper.php Small fixes to PlatformHelper.php Sep 10, 2024
@@ -104,11 +104,11 @@ public static function getOracleMysqlVersionNumber(string $versionString): strin
public static function getMariaDbMysqlVersionNumber(string $versionString): string
{
preg_match(
'#^(?:5\.5\.5-)?(mariadb-)?(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)#i',
'#^(?:5\.5\.5-)?(mariadb-)?(?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))?#i',
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, I assume you're right even if this regex comes from doctrine/dbal itself: https://github.com/doctrine/dbal/blob/7a8252418689feb860ea8dfeab66d64a56a64df8/src/Driver/AbstractMySQLDriver.php#L96

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just got the error when I was running tests.
CleanShot 2024-09-10 at 14 09 09@2x

$versionString, as reported by a local postrgres running in a container, was "13.16"

That string matches what I'd expect when checking postgres releases:
https://www.postgresql.org/docs/release/

Maybe the problem is that this function was called to parse a postgres version, and it should be reserved for a MariaDb version.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When I changed the regex I was able to run my project's tests again.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, on further inspection, I think the problem is that this version-parsing is being called when not needed. I believe the problem may come from isJsonSupported().

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right, isJsonSupported() seems to be the culprit, will post a fix soon.
Would you mind dumping $version after

$version = self::getServerVersion($connection);

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, I hadn't understood you got the version that way ;)

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#219 should fix your issues

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, that works. thx.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will release it asap

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

…nString may not have a patch version, in which case $versionParts will be `[]`."

This reverts commit 3e27a78.
@yivi yivi closed this Sep 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants