summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/build/changelog/unreleased_14/7274.rst2
-rw-r--r--doc/build/changelog/unreleased_14/7283.rst2
-rw-r--r--doc/build/changelog/unreleased_14/7284.rst2
-rw-r--r--lib/sqlalchemy/dialects/postgresql/asyncpg.py5
4 files changed, 6 insertions, 5 deletions
diff --git a/doc/build/changelog/unreleased_14/7274.rst b/doc/build/changelog/unreleased_14/7274.rst
index 7364ae653..08e961a72 100644
--- a/doc/build/changelog/unreleased_14/7274.rst
+++ b/doc/build/changelog/unreleased_14/7274.rst
@@ -1,5 +1,5 @@
.. change::
- :tags: bug, core, regression
+ :tags: bug, engine, regression
:tickets: 7274
:versions: 2.0.0b1
diff --git a/doc/build/changelog/unreleased_14/7283.rst b/doc/build/changelog/unreleased_14/7283.rst
index 0cfd2a491..ce16f0561 100644
--- a/doc/build/changelog/unreleased_14/7283.rst
+++ b/doc/build/changelog/unreleased_14/7283.rst
@@ -1,5 +1,5 @@
.. change::
- :tags: bug, postgresql
+ :tags: bug, postgresql, asyncpg
:tickets: 7283
Changed the asyncpg dialect to bind the :class:`.Float` type to the "float"
diff --git a/doc/build/changelog/unreleased_14/7284.rst b/doc/build/changelog/unreleased_14/7284.rst
index fb05488f5..fbbbafa80 100644
--- a/doc/build/changelog/unreleased_14/7284.rst
+++ b/doc/build/changelog/unreleased_14/7284.rst
@@ -1,5 +1,5 @@
.. change::
- :tags: asyncpg, usecase
+ :tags: postgresql, usecase, asyncpg
:tickets: 7284
:versions: 2.0.0b1
diff --git a/lib/sqlalchemy/dialects/postgresql/asyncpg.py b/lib/sqlalchemy/dialects/postgresql/asyncpg.py
index 548b7ecfb..21f9e3e26 100644
--- a/lib/sqlalchemy/dialects/postgresql/asyncpg.py
+++ b/lib/sqlalchemy/dialects/postgresql/asyncpg.py
@@ -1034,8 +1034,9 @@ class PGDialect_asyncpg(PGDialect):
See https://github.com/MagicStack/asyncpg/issues/623 for reference
on why it's set up this way.
- Also, see https://github.com/sqlalchemy/sqlalchemy/issues/7284 for
- the rationale behind adding self._exclude_type_codecs
+ See #7284 for the rationale behind adding
+ self._exclude_type_codecs
+
"""
if "json" not in self._exclude_type_codecs: