| 1260 | |
| 1261 | def test_joined_table_propagation(self): |
| 1262 | class CommonMixin: |
| 1263 | @declared_attr |
| 1264 | def __tablename__(cls): |
| 1265 | return cls.__name__.lower() |
| 1266 | |
| 1267 | __table_args__ = {"mysql_engine": "InnoDB"} |
| 1268 | timestamp = mapped_column(Integer) |
| 1269 | id = Column(Integer, primary_key=True) |
| 1270 | |
| 1271 | class Generic(Base, CommonMixin): |
| 1272 | discriminator = Column("python_type", String(50)) |
nothing calls this directly
no test coverage detected