summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql/base.py
diff options
context:
space:
mode:
authorTony Locke <tlocke@tlocke.org.uk>2021-07-12 17:39:52 +0100
committerTony Locke <tlocke@tlocke.org.uk>2021-07-12 18:36:40 +0100
commit0a3e5cff337692763be7f7c751c3901d5337a4fc (patch)
treea608d4cf2de6ecf31c1da30ade2f849a287a80c6 /lib/sqlalchemy/dialects/postgresql/base.py
parent6f39cd53033bc232e3ffec10c5e0a91b5d4a2785 (diff)
downloadsqlalchemy-0a3e5cff337692763be7f7c751c3901d5337a4fc.tar.gz
Correct docs: pg8000 supports PostgreSQL UUID
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/base.py')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/base.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py
index 123e6f0fa..76fc09f9d 100644
--- a/lib/sqlalchemy/dialects/postgresql/base.py
+++ b/lib/sqlalchemy/dialects/postgresql/base.py
@@ -1686,8 +1686,9 @@ class UUID(sqltypes.TypeEngine):
data either as natively returned by the DBAPI
or as Python uuid objects.
- The UUID type may not be supported on all DBAPIs.
- It is known to work on psycopg2 and not pg8000.
+ The UUID type is currently known to work within the prominent DBAPI
+ drivers supported by SQLAlchemy including psycopg2, pg8000 and
+ asyncpg. Support for other DBAPI drivers may be incomplete or non-present.
"""