diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2021-03-07 18:11:41 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2021-03-07 18:11:41 +0000 |
commit | 76b33bb435f1f55111cd68cde9b7cb735c748bcd (patch) | |
tree | b8b231c00567e5783be1a7a685066cfb041cce6d /lib/sqlalchemy/dialects/postgresql | |
parent | 1344fc8086d0d9f7c7d7310a8ba245d594de577d (diff) | |
parent | 8cf7a7f664c177a8a7299186af338c6a23768da0 (diff) | |
download | sqlalchemy-76b33bb435f1f55111cd68cde9b7cb735c748bcd.tar.gz |
Merge "Add supported database version for internal dialects"
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/base.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index d34d8dd17..aea5ca17c 100644 --- a/lib/sqlalchemy/dialects/postgresql/base.py +++ b/lib/sqlalchemy/dialects/postgresql/base.py @@ -8,6 +8,9 @@ r""" .. dialect:: postgresql :name: PostgreSQL + :full_support: 9.6, 10, 11, 12 + :normal_support: 9.6+ + :best_effort: 8+ .. _postgresql_sequences: |