| 3442 | Base = cls.DeclarativeBasic |
| 3443 | |
| 3444 | class A(Base): |
| 3445 | __tablename__ = "a" |
| 3446 | |
| 3447 | id = Column(Integer, primary_key=True) |
| 3448 | data = Column(String) |
| 3449 | bs = relationship("B", backref="a") |
| 3450 | data_syn = synonym("data") |
| 3451 | |
| 3452 | b_data = association_proxy("bs", "data_syn") |
| 3453 | |
| 3454 | class B(Base): |
| 3455 | __tablename__ = "b" |
nothing calls this directly
no test coverage detected