| 2201 | my_expr = query_expression(default_expr=literal(15)) |
| 2202 | |
| 2203 | class B(ComparableEntity, Base): |
| 2204 | __tablename__ = "b" |
| 2205 | id = Column(Integer, primary_key=True) |
| 2206 | a_id = Column(ForeignKey("a.id")) |
| 2207 | p = Column(Integer) |
| 2208 | q = Column(Integer) |
| 2209 | |
| 2210 | b_expr = query_expression() |
| 2211 | |
| 2212 | class C(ComparableEntity, Base): |
| 2213 | __tablename__ = "c" |
nothing calls this directly
no test coverage detected