From: Henry Cai Date: Sun, 17 May 2026 20:02:37 +0000 (-0700) Subject: remove redundant deserializer assignment from asyncpg dialect (#13287) X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=120a967505efb4a50a9134bf45b8e88aebb9f483;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git remove redundant deserializer assignment from asyncpg dialect (#13287) --- diff --git a/lib/sqlalchemy/dialects/postgresql/asyncpg.py b/lib/sqlalchemy/dialects/postgresql/asyncpg.py index 33aa9a9de9..4d3a3ba045 100644 --- a/lib/sqlalchemy/dialects/postgresql/asyncpg.py +++ b/lib/sqlalchemy/dialects/postgresql/asyncpg.py @@ -1255,7 +1255,6 @@ class PGDialect_asyncpg(PGDialect): """ asyncpg_connection = conn._connection - deserializer = self._json_deserializer or _py_json.loads def _jsonb_encoder(str_value): # \x01 is the prefix for jsonb used by PostgreSQL.