(self, expr_fn: Any, *q: Query[Any])
| 2152 | return self |
| 2153 | |
| 2154 | def _set_op(self, expr_fn: Any, *q: Query[Any]) -> Self: |
| 2155 | list_of_queries = (self,) + q |
| 2156 | return self._from_selectable(expr_fn(*(list_of_queries)).subquery()) |
| 2157 | |
| 2158 | def union(self, *q: Query[Any]) -> Self: |
| 2159 | """Produce a UNION of this Query against one or more queries. |
no test coverage detected