MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / A

Class A

test/orm/test_deferred.py:2594–2599  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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):

Callers 7

insert_dataMethod · 0.70
test_simple_exprMethod · 0.70
test_reuse_exprMethod · 0.70
test_in_joinedloadMethod · 0.70
insert_dataMethod · 0.70

Calls 2

ColumnClass · 0.90
deferredFunction · 0.90

Tested by 7

insert_dataMethod · 0.56
test_simple_exprMethod · 0.56
test_reuse_exprMethod · 0.56
test_in_joinedloadMethod · 0.56
insert_dataMethod · 0.56