Last active
February 27, 2026 00:50
-
-
Save sombraguerrero/7108f5c793347ce7b7c9dba6707a5dd0 to your computer and use it in GitHub Desktop.
MySql/MariaDB Environment Query
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT CONCAT(@@version_comment, ' ', @@VERSION) AS serverVersion, | |
| COALESCE( | |
| (SELECT GLOBAL_VALUE | |
| FROM information_schema.SYSTEM_VARIABLES | |
| WHERE VARIABLE_NAME = 'block_encryption_mode'), 'N/A') AS algo; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment