You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BugA problem or regression with an existing featurehas-prAn issue that has a pull request pending that may fix this issue. The pull request may be incomplete
MariaDB does not support system variable 'disabled_storage_engines', so clicking on the 'Engines' link produces an error in the SQL errors log (if enabled):
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
BugA problem or regression with an existing featurehas-prAn issue that has a pull request pending that may fix this issue. The pull request may be incomplete
Describe the bug
MariaDB does not support system variable 'disabled_storage_engines', so clicking on the 'Engines' link produces an error in the SQL errors log (if enabled):
2022-02-02 9:00:52 root[root] @ localhost [] ERROR 1193: Unknown system variable 'disabled_storage_engines' : SELECT @@disabled_storage_enginesTo Reproduce
Steps to reproduce the behavior:
Expected behavior
No error
Server configuration
Client configuration
Additional context
Bug can be fixed by modifying line 122 in file libraries/classes/StorageEngine.php:
from:
if ($dbi->getVersion() >= 50708) {to:
if (!$dbi->isMariaDB() && $dbi->getVersion() >= 50708) {The text was updated successfully, but these errors were encountered: