We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92d3e66 commit 964a89fCopy full SHA for 964a89f
pymysqlreplication/tests/base.py
@@ -67,7 +67,7 @@ def isMySQL80AndMore(self):
67
68
def isMariaDB(self):
69
if self.__is_mariaDB is None:
70
- self.__is_mariaDB = "MariaDB" in self.execute("SELECT VERSION()").fetchone()
+ self.__is_mariaDB = "MariaDB" in self.execute("SELECT VERSION()").fetchone()[0]
71
return self.__is_mariaDB
72
73
@property
0 commit comments