From 0a3e5cff337692763be7f7c751c3901d5337a4fc Mon Sep 17 00:00:00 2001 From: Tony Locke Date: Mon, 12 Jul 2021 17:39:52 +0100 Subject: [PATCH] Correct docs: pg8000 supports PostgreSQL UUID --- lib/sqlalchemy/dialects/postgresql/base.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index 123e6f0fa8..76fc09f9de 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. """ -- 2.47.2