Savepoints not completely disabled with PostgreSQL prior to 8.0.
I am using Django 1.0 beta 1 with PostgreSQL 7.4.
With mod_python, I have the following exception : ProgrammingError: syntax error at or near "SAVEPOINT" at character 1
Savepoints should be disabled with PostgreSQL < 8.0 (Changeset [8317]) but this does not work because it is not disabled in all DatabaseWrapper objects, only the first one. Surely because we are using a class member to store the fact that it has been disabled : self.__class__._version = version
The problem is not present when using manage.py runserver
, surely because only one DatabaseWrapper will be created.
Change History
(7)
Summary: |
Savepoints non completely disabled with PostgreSQL prior to 8.0. → Savepoints not completely disabled with PostgreSQL prior to 8.0.
|
Triage Stage: |
Unreviewed → Accepted
|
Resolution: |
→ fixed
|
Status: |
new → closed
|
I believe this is fixed by [8648]. Please reopen if the problem still occurs (I don't have any way to test this at the moment, but a manual code inspection revealed a problem in the code).