Author: gwilson
Date: 2007-10-14 00:53:56 -0500 (Sun, 14 Oct 2007)
New Revision: 6507

Modified:
   django/trunk/django/db/backends/postgresql/operations.py
Log:
Fixed #5710 -- Fixed a missing table name quoting in the postgresql backend, 
thanks [EMAIL PROTECTED]


Modified: django/trunk/django/db/backends/postgresql/operations.py
===================================================================
--- django/trunk/django/db/backends/postgresql/operations.py    2007-10-14 
04:17:02 UTC (rev 6506)
+++ django/trunk/django/db/backends/postgresql/operations.py    2007-10-14 
05:53:56 UTC (rev 6507)
@@ -100,5 +100,5 @@
                     style.SQL_FIELD(qn('id')),
                     style.SQL_KEYWORD('IS NOT'),
                     style.SQL_KEYWORD('FROM'),
-                    style.SQL_TABLE(f.m2m_db_table())))
+                    style.SQL_TABLE(qn(f.m2m_db_table()))))
         return output


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to