Ticket #5710: operations_py.patch

File operations_py.patch, 552 bytes (added by davep@…, 17 years ago)

Patch against revision 6468 to fix postgresql m2m loaddata problem

  • django/db/backends/postgresql/operations.py

     
    100100                    style.SQL_FIELD(qn('id')),
    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
Back to Top