Ticket #6571: fill_table_cache.patch
File fill_table_cache.patch, 450 bytes (added by , 17 years ago) |
---|
-
django/db/models/query.py
853 853 """ 854 854 855 855 # If we've got a max_depth set and we've exceeded that depth, bail now. 856 if max_depth and cur_depth > max_depth:856 if max_depth and cur_depth >= max_depth: 857 857 return None 858 858 859 859 qn = connection.ops.quote_name