(self)
| 1912 | ) |
| 1913 | |
| 1914 | def test_ticket7045(self): |
| 1915 | # Extra tables used to crash SQL construction on the second use. |
| 1916 | qs = Ranking.objects.extra(tables=["django_site"]) |
| 1917 | qs.query.get_compiler(qs.db).as_sql() |
| 1918 | # test passes if this doesn't raise an exception. |
| 1919 | qs.query.get_compiler(qs.db).as_sql() |
| 1920 | |
| 1921 | def test_ticket9848(self): |
| 1922 | # Make sure that updates which only filter on sub-tables don't |
nothing calls this directly
no test coverage detected