Commit fc02370c authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #10289 -- Corrected typo that produced oversensitive rejection of...

Fixed #10289 -- Corrected typo that produced oversensitive rejection of Postgres versions. Thanks to Ian Kelly for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9845 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent e83f81de
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -158,5 +158,5 @@ class DatabaseOperations(BaseDatabaseOperations):
        NotImplementedError if this is the database in use.
        """
        if aggregate.sql_function == 'STDDEV_POP' or aggregate.sql_function == 'VAR_POP':
            if self.postgres_version[0] == 8 and self.postgres_version[1] == 2 and self.postgres_version[1] <= 4:
            if self.postgres_version[0] == 8 and self.postgres_version[1] == 2 and self.postgres_version[2] <= 4:
                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)