| 41 | cs = relationship("C") |
| 42 | |
| 43 | class C(Base): |
| 44 | __tablename__ = "c" |
| 45 | id = Column(Integer, primary_key=True) |
| 46 | b_id = Column(ForeignKey("b.id")) |
| 47 | _sentinel = insert_sentinel() |
| 48 | |
| 49 | partition = select( |
| 50 | B, |
nothing calls this directly
no test coverage detected