Ticket #7148: sql_where_typo_r7511.patch

File sql_where_typo_r7511.patch, 547 bytes (added by George Vilches, 16 years ago)
  • django/db/models/sql/where.py

     
    1818    Used to represent the SQL where-clause.
    1919
    2020    The class is tied to the Query class that created it (in order to create
    21     the corret SQL).
     21    the correct SQL).
    2222
    2323    The children in this tree are usually either Q-like objects or lists of
    2424    [table_alias, field_name, field_class, lookup_type, value]. However, a
Back to Top