@@ -123,15 +123,12 @@ class Query(BaseExpression):
123
123
can_reuse : set [str ] | None = ...,
124
124
allow_joins : bool = ...,
125
125
split_subq : bool = ...,
126
- reuse_with_filtered_relation : bool = ...,
127
126
check_filterable : bool = ...,
127
+ update_join_types : bool = ...,
128
128
) -> tuple [WhereNode , Iterable [str ]]: ...
129
129
def add_filter (self , filter_clause : tuple [str , Any ]) -> None : ...
130
130
def add_q (self , q_object : Q ) -> None : ...
131
131
def build_where (self , filter_expr : Q | Expression | dict [str , str ] | tuple [str , Any ]) -> WhereNode : ...
132
- def build_filtered_relation_q (
133
- self , q_object : Q , reuse : set [str ], branch_negated : bool = ..., current_negated : bool = ...
134
- ) -> WhereNode : ...
135
132
def add_filtered_relation (self , filtered_relation : FilteredRelation , alias : str ) -> None : ...
136
133
def setup_joins (
137
134
self ,
@@ -140,7 +137,6 @@ class Query(BaseExpression):
140
137
alias : str ,
141
138
can_reuse : set [str ] | None = ...,
142
139
allow_many : bool = ...,
143
- reuse_with_filtered_relation : bool = ...,
144
140
) -> JoinInfo : ...
145
141
def trim_joins (
146
142
self , targets : tuple [Field , ...], joins : list [str ], path : list [PathInfo ]
@@ -201,7 +197,9 @@ class Query(BaseExpression):
201
197
def build_lookup (self , lookups : Sequence [str ], lhs : Expression | Query , rhs : Any ) -> Lookup : ...
202
198
def try_transform (self , lhs : Expression | Query , name : str ) -> Transform : ...
203
199
def join (
204
- self , join : BaseTable | Join , reuse : str | None = ..., reuse_with_filtered_relation : bool = ...
200
+ self ,
201
+ join : BaseTable | Join ,
202
+ reuse : str | None = ...,
205
203
) -> str : ...
206
204
207
205
class JoinPromoter :
0 commit comments