diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-07-13 10:02:34 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-07-13 10:02:34 -0400 |
commit | 326e3f5dc26f22ca51f4aa2509856d8077e76dec (patch) | |
tree | dc0741b81e49408dea145e4dcb0cf95ef4caa0cc /lib/sqlalchemy/dialects/postgresql/base.py | |
parent | 18dba87757097b87495aed0ca9fc345a040da1f1 (diff) | |
parent | 0a3e5cff337692763be7f7c751c3901d5337a4fc (diff) | |
download | sqlalchemy-326e3f5dc26f22ca51f4aa2509856d8077e76dec.tar.gz |
Merge remote-tracking branch 'origin/pr/6751'
Change-Id: Id8e5d7527eda6cae46e273e787d7dedbc4c02b9e
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/base.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/base.py | 5 |
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. """ |