Django

Code

Changeset 6507

Show
Ignore:
Timestamp:
10/14/07 00:53:56 (9 months ago)
Author:
gwilson
Message:

Fixed #5710 -- Fixed a missing table name quoting in the postgresql backend, thanks davep@atomicdroplet.com.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/db/backends/postgresql/operations.py

    r6012 r6507  
    101101                    style.SQL_KEYWORD('IS NOT'), 
    102102                    style.SQL_KEYWORD('FROM'), 
    103                     style.SQL_TABLE(f.m2m_db_table()))) 
     103                    style.SQL_TABLE(qn(f.m2m_db_table())))) 
    104104        return output