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

Security recommendation version check bug - reg #814

Merged
merged 1 commit into from
Jan 14, 2025

Conversation

MASTERGOKUL
Copy link
Contributor

The version check info print says
"Skipped due to unsupported feature for MySQL 8.0+"

which means that the check should pass only if the version greater than or equal to v8.0
but the existing check leads to fails if the version is greater than or equal to v8.0

changed the code
mysql_version_le(8.0)
to
mysql_version_ge(8.0)

working properly for the version lesser than 8.0

@jmrenouard jmrenouard merged commit 7a2d821 into major:master Jan 14, 2025
2 checks passed
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