(self, expr_fn: Any, *q: Query[Any])
| 2122 | return self |
| 2123 | |
| 2124 | def _set_op(self, expr_fn: Any, *q: Query[Any]) -> Self: |
| 2125 | list_of_queries = (self,) + q |
| 2126 | return self._from_selectable(expr_fn(*(list_of_queries)).subquery()) |
| 2127 | |
| 2128 | def union(self, *q: Query[Any]) -> Self: |
| 2129 | """Produce a UNION of this Query against one or more queries. |
no test coverage detected