From 6a2165816394ab4bb259f6171e82417e098e97a6 Mon Sep 17 00:00:00 2001 From: Florian Apolloner Date: Tue, 6 Dec 2022 11:37:25 +0100 Subject: [PATCH] Refs #33308 -- Modernized database wrapper in the PostgreSQL backend. - Used connection.info instead of connection.get_parameter_status() and connection.server_info which don't exist in psycopg 3. - Set encoding using the client_encoding connection parameter instead of connection.set_client_encoding() that doesn't exist in psycopg 3. - Used the dbname connection parameter instead of deprecated alias - database. --- django/db/backends/postgresql/base.py | 11 +++++------ tests/backends/postgresql/tests.py | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/django/db/backends/postgresql/base.py b/django/db/backends/postgresql/base.py index 2758c402ab..995510bcb2 100644 --- a/django/db/backends/postgresql/base.py +++ b/django/db/backends/postgresql/base.py @@ -186,16 +186,16 @@ class DatabaseWrapper(BaseDatabaseWrapper): self.ops.max_name_length(), ) ) - conn_params = {} + conn_params = {"client_encoding": "UTF8"} if settings_dict["NAME"]: conn_params = { - "database": settings_dict["NAME"], + "dbname": settings_dict["NAME"], **settings_dict["OPTIONS"], } elif settings_dict["NAME"] is None: # Connect to the default 'postgres' db. settings_dict.get("OPTIONS", {}).pop("service", None) - conn_params = {"database": "postgres", **settings_dict["OPTIONS"]} + conn_params = {"dbname": "postgres", **settings_dict["OPTIONS"]} else: conn_params = {**settings_dict["OPTIONS"]} @@ -239,7 +239,7 @@ class DatabaseWrapper(BaseDatabaseWrapper): def ensure_timezone(self): if self.connection is None: return False - conn_timezone_name = self.connection.get_parameter_status("TimeZone") + conn_timezone_name = self.connection.info.parameter_status("TimeZone") timezone_name = self.timezone_name if timezone_name and conn_timezone_name != timezone_name: with self.connection.cursor() as cursor: @@ -249,7 +249,6 @@ class DatabaseWrapper(BaseDatabaseWrapper): def init_connection_state(self): super().init_connection_state() - self.connection.set_client_encoding("UTF8") timezone_changed = self.ensure_timezone() if timezone_changed: @@ -365,7 +364,7 @@ class DatabaseWrapper(BaseDatabaseWrapper): @cached_property def pg_version(self): with self.temporary_connection(): - return self.connection.server_version + return self.connection.info.server_version def make_debug_cursor(self, cursor): return CursorDebugWrapper(cursor, self) diff --git a/tests/backends/postgresql/tests.py b/tests/backends/postgresql/tests.py index e28acef2c0..f056162454 100644 --- a/tests/backends/postgresql/tests.py +++ b/tests/backends/postgresql/tests.py @@ -164,7 +164,7 @@ class Tests(TestCase): settings["NAME"] = None settings["OPTIONS"] = {"service": "django_test"} params = DatabaseWrapper(settings).get_connection_params() - self.assertEqual(params["database"], "postgres") + self.assertEqual(params["dbname"], "postgres") self.assertNotIn("service", params) def test_connect_and_rollback(self):