| 2592 | Base = cls.DeclarativeBasic |
| 2593 | |
| 2594 | class A(ComparableEntity, Base): |
| 2595 | __tablename__ = "a" |
| 2596 | id = Column(Integer, primary_key=True) |
| 2597 | x = Column(Integer) |
| 2598 | y = deferred(Column(Integer)) |
| 2599 | z = deferred(Column(Integer), raiseload=True) |
| 2600 | |
| 2601 | @classmethod |
| 2602 | def insert_data(cls, connection): |