mirror of
https://github.com/django/django.git
synced 2024-12-01 15:42:04 +01:00
Ensured a connection is established when checking the database version.
Fixed a test broken by 21765c0a
. Refs #18135.
This commit is contained in:
parent
9a3988ca5a
commit
ebabd77291
@ -352,6 +352,18 @@ class BaseDatabaseWrapper(object):
|
||||
def make_debug_cursor(self, cursor):
|
||||
return util.CursorDebugWrapper(cursor, self)
|
||||
|
||||
@contextmanager
|
||||
def temporary_connection(self):
|
||||
# Ensure a connection is established, and avoid leaving a dangling
|
||||
# connection, for operations outside of the request-response cycle.
|
||||
must_close = self.connection is None
|
||||
cursor = self.cursor()
|
||||
try:
|
||||
yield
|
||||
finally:
|
||||
cursor.close()
|
||||
if must_close:
|
||||
self.close()
|
||||
|
||||
class BaseDatabaseFeatures(object):
|
||||
allows_group_by_pk = False
|
||||
|
@ -453,7 +453,8 @@ class DatabaseWrapper(BaseDatabaseWrapper):
|
||||
|
||||
@cached_property
|
||||
def mysql_version(self):
|
||||
server_info = self.connection.get_server_info()
|
||||
with self.temporary_connection():
|
||||
server_info = self.connection.get_server_info()
|
||||
match = server_version_re.match(server_info)
|
||||
if not match:
|
||||
raise Exception('Unable to determine MySQL version from version string %r' % server_info)
|
||||
|
@ -623,8 +623,10 @@ class DatabaseWrapper(BaseDatabaseWrapper):
|
||||
|
||||
@cached_property
|
||||
def oracle_version(self):
|
||||
with self.temporary_connection():
|
||||
version = self.connection.version
|
||||
try:
|
||||
return int(self.connection.version.split('.')[0])
|
||||
return int(version.split('.')[0])
|
||||
except ValueError:
|
||||
return None
|
||||
|
||||
|
@ -152,7 +152,8 @@ class DatabaseWrapper(BaseDatabaseWrapper):
|
||||
|
||||
@cached_property
|
||||
def pg_version(self):
|
||||
return get_version(self.connection)
|
||||
with self.temporary_connection():
|
||||
return get_version(self.connection)
|
||||
|
||||
def get_connection_params(self):
|
||||
settings_dict = self.settings_dict
|
||||
|
@ -195,8 +195,7 @@ class DatabaseOperations(BaseDatabaseOperations):
|
||||
NotImplementedError if this is the database in use.
|
||||
"""
|
||||
if aggregate.sql_function in ('STDDEV_POP', 'VAR_POP'):
|
||||
pg_version = self.connection.pg_version
|
||||
if pg_version >= 80200 and pg_version <= 80204:
|
||||
if 80200 <= self.connection.pg_version <= 80204:
|
||||
raise NotImplementedError('PostgreSQL 8.2 to 8.2.4 is known to have a faulty implementation of %s. Please upgrade your version of PostgreSQL.' % aggregate.sql_function)
|
||||
|
||||
def max_name_length(self):
|
||||
|
Loading…
Reference in New Issue
Block a user