MCPcopy
hub / github.com/django/django / unref_alias

Method unref_alias

django/db/models/sql/query.py:930–932  ·  view source on GitHub ↗

Decreases the reference count for this alias.

(self, alias, amount=1)

Source from the content-addressed store, hash-verified

928 self.alias_refcount[alias] += 1
929
930 def unref_alias(self, alias, amount=1):
931 """Decreases the reference count for this alias."""
932 self.alias_refcount[alias] -= amount
933
934 def promote_joins(self, aliases):
935 """

Callers 4

combineMethod · 0.95
reset_refcountsMethod · 0.95
trim_joinsMethod · 0.95
trim_startMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected