| 2210 | b_expr = query_expression() |
| 2211 | |
| 2212 | class C(ComparableEntity, Base): |
| 2213 | __tablename__ = "c" |
| 2214 | id = Column(Integer, primary_key=True) |
| 2215 | x = Column(Integer) |
| 2216 | |
| 2217 | c_expr = query_expression(literal(1)) |
| 2218 | |
| 2219 | class CustomTimeStamp(TypeDecorator): |
| 2220 | cache_ok = False |