| 26 | |
| 27 | |
| 28 | class B(Base): |
| 29 | __tablename__ = "b" |
| 30 | id: Mapped[int] = mapped_column(primary_key=True) |
| 31 | a_id: Mapped[int] = mapped_column(ForeignKey("a.id")) |
| 32 | data: Mapped[str] |
| 33 | a: Mapped[A] = relationship() |
| 34 | |
| 35 | |
| 36 | def test_9669_and() -> None: |
nothing calls this directly
no test coverage detected