| 1259 | unrelated_data = Column(String(50)) |
| 1260 | |
| 1261 | class Foo(AbstractFoo): |
| 1262 | __tablename__ = "foo" |
| 1263 | column_prop = column_property( |
| 1264 | func.lower(AbstractFoo.unrelated_data) |
| 1265 | ) |
| 1266 | |
| 1267 | assert Foo.data.property.columns[0].type is not AbstractFoo.data.type |
| 1268 |
nothing calls this directly
no test coverage detected