We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41db0e0 commit fa4e867Copy full SHA for fa4e867
1 file changed
plugins/dbms/mysql/fingerprint.py
@@ -177,6 +177,14 @@ def checkDbms(self):
177
178
return False
179
180
+ result = inject.checkBooleanExpression("ROUNDMAGIC(NULL) IS NULL")
181
+
182
+ if result:
183
+ warnMsg = "the back-end DBMS is not %s" % DBMS.MYSQL
184
+ logger.warn(warnMsg)
185
186
+ return False
187
188
# reading information_schema on some platforms is causing annoying timeout exits
189
# Reference: http://bugs.mysql.com/bug.php?id=15855
190
0 commit comments