| 2183 | Base = cls.DeclarativeBasic |
| 2184 | |
| 2185 | class A(ComparableEntity, Base): |
| 2186 | __tablename__ = "a" |
| 2187 | id = Column(Integer, primary_key=True) |
| 2188 | x = Column(Integer) |
| 2189 | y = Column(Integer) |
| 2190 | |
| 2191 | my_expr = query_expression() |
| 2192 | |
| 2193 | bs = relationship("B", order_by="B.id") |
| 2194 | |
| 2195 | class A_default(ComparableEntity, Base): |
| 2196 | __tablename__ = "a_default" |
nothing calls this directly
no test coverage detected