mirror of
https://github.com/mariadb-corporation/mariadb-connector-python.git
synced 2025-08-03 19:20:35 +00:00
Travis: Added Python-3.12
This commit is contained in:
@ -1539,6 +1539,10 @@ class TestCursor(unittest.TestCase):
|
||||
|
||||
def test_conpy270(self):
|
||||
connection = create_connection()
|
||||
x = connection.server_version_info
|
||||
if x < (10, 7, 0) or is_mysql():
|
||||
self.skipTest("Skip (MySQL and MariaDB < 10.7)")
|
||||
|
||||
cursor = connection.cursor()
|
||||
|
||||
cursor.execute("create or replace table t1 (a uuid)")
|
||||
|
Reference in New Issue
Block a user