(self, parent, strategy_key)
| 201 | __slots__ = "columns", "is_composite" |
| 202 | |
| 203 | def __init__(self, parent, strategy_key): |
| 204 | super().__init__(parent, strategy_key) |
| 205 | self.columns = self.parent_property.columns |
| 206 | self.is_composite = hasattr(self.parent_property, "composite_class") |
| 207 | |
| 208 | def setup_query( |
| 209 | self, |