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 4358583 commit 50c84d2Copy full SHA for 50c84d2
pymysqlreplication/tests/test_basic.py
@@ -318,7 +318,8 @@ def test_fetch_column_names_from_schema(self):
318
319
# Reset and replay events
320
self.resetBinLog()
321
- self.execute("SET SESSION binlog_row_metadata = 'MINIMAL'")
+ if self.isMySQL80AndMore():
322
+ self.execute("SET SESSION binlog_row_metadata = 'MINIMAL'")
323
self.execute("INSERT INTO test_column_cache (data) VALUES('World')")
324
self.execute("COMMIT")
325
0 commit comments