diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2023-03-05 20:29:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2023-03-05 20:29:27 +0000 |
commit | e3e99f7fe3339b26487a7e03c0d1acd9a83e2d70 (patch) | |
tree | 3b6780744aa754f85f38765485a624e385e77a67 /lib/sqlalchemy/dialects/mssql/pymssql.py | |
parent | 94c8d4e2e3f31042fdc5dfd5f942494a3a81bdce (diff) | |
parent | b38fb59fe484d6e4e5992c9b2dc9b9f7724f016a (diff) | |
download | sqlalchemy-e3e99f7fe3339b26487a7e03c0d1acd9a83e2d70.tar.gz |
Merge "audition pymssql once more; retire sane_rowcount_returning" into main
Diffstat (limited to 'lib/sqlalchemy/dialects/mssql/pymssql.py')
-rw-r--r-- | lib/sqlalchemy/dialects/mssql/pymssql.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/dialects/mssql/pymssql.py b/lib/sqlalchemy/dialects/mssql/pymssql.py index 699f61714..3823db91b 100644 --- a/lib/sqlalchemy/dialects/mssql/pymssql.py +++ b/lib/sqlalchemy/dialects/mssql/pymssql.py @@ -16,10 +16,9 @@ pymssql is a Python module that provides a Python DBAPI interface around `FreeTDS <https://www.freetds.org/>`_. -.. note:: +.. versionchanged:: 2.0.5 - pymssql is currently not included in SQLAlchemy's continuous integration - (CI) testing. + pymssql was restored to SQLAlchemy's continuous integration testing """ # noqa @@ -51,6 +50,7 @@ class MSIdentifierPreparer_pymssql(MSIdentifierPreparer): class MSDialect_pymssql(MSDialect): supports_statement_cache = True supports_native_decimal = True + supports_native_uuid = True driver = "pymssql" preparer = MSIdentifierPreparer_pymssql |