From 4f3fe2af548a6f904452db811d4eb6edb4f81c62 Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Thu, 14 Dec 2023 13:59:08 +0800 Subject: [PATCH] Update index.py --- plugins/mysql/index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/mysql/index.py b/plugins/mysql/index.py index 87329ea90..e11d884fb 100755 --- a/plugins/mysql/index.py +++ b/plugins/mysql/index.py @@ -675,7 +675,7 @@ def my8cmd(version, method): def appCMD(version, action): makeInitRsaKey(version) - if version == '8.0' or version == '5.7': + if float(version) >= 5.7: status = my8cmd(version, action) else: status = myOp(version, action)