Adding support for Drizzle (MySQL fork)

This commit is contained in:
Miroslav Stampar
2020-02-03 11:46:03 +01:00
parent 9d6c931faa
commit 8649021b78
4 changed files with 5 additions and 2 deletions

View File

@@ -92,6 +92,8 @@ class Fingerprint(GenericFingerprint):
fork = FORK.MARIADB
elif inject.checkBooleanExpression("VERSION() LIKE '%TiDB%'"):
fork = FORK.TIDB
elif inject.checkBooleanExpression("@@VERSION_COMMENT LIKE '%drizzle%'"):
fork = FORK.DRIZZLE
elif inject.checkBooleanExpression("@@VERSION_COMMENT LIKE '%Percona%'"):
fork = FORK.PERCONA
else: