Skip to content

Commit bb78cd2

Browse files
committed
fixed : partition_id is above 16
1 parent 3ca5db7 commit bb78cd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymysqlreplication/tests/test_data_type.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ def test_encoding_utf8(self):
798798
self.assertMultiLineEqual(event.rows[0]["values"]["test"], string)
799799

800800
def test_partition_id(self):
801-
if not self.isMySQL80AndMore():
801+
if not self.isMySQL8016AndMore():
802802
self.skipTest("Not supported in this version of MySQL")
803803
create_query = "CREATE TABLE test (id INTEGER) \
804804
PARTITION BY RANGE (id) ( \
@@ -963,7 +963,7 @@ def create_and_insert_value(self, create_query, insert_query):
963963
return event
964964

965965
def test_partition_id(self):
966-
if not self.isMySQL80AndMore():
966+
if not self.isMySQL8016AndMore():
967967
self.skipTest("Not supported in this version of MySQL")
968968
create_query = "CREATE TABLE test (id INTEGER) \
969969
PARTITION BY RANGE (id) ( \

0 commit comments

Comments
 (0)