Skip to content

Commit cd2b77e

Browse files
authored
Merge pull request #7608 from TCeason/ISSUE-7569/support_mysql_connect_8030
feat(test): support mysql-connector-python 8.0.30
2 parents f08a15e + 4fdfd88 commit cd2b77e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/logictest/mysql_runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212

1313
class StringConverter(MySQLConverter):
1414

15-
def _DATETIME_to_python(self, value, dsc=None):
15+
def _datetime_to_python(self, value, dsc=None):
1616
if not value:
1717
return None
18-
return MySQLConverter._STRING_to_python(self, value)
18+
return MySQLConverter._string_to_python(self, value)
1919

2020

2121
class TestMySQL(logictest.SuiteRunner, ABC):

0 commit comments

Comments
 (0)