MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / B

Class B

test/orm/test_cache_key.py:1185–1190  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1183 bs = relationship("B")
1184
1185 class B(ComparableMixin, Base):
1186 __tablename__ = "b"
1187 id = Column(Integer, Identity(), primary_key=True)
1188 a_id = Column(ForeignKey("a.id"))
1189 boolean = query_expression()
1190 data = Column(String(30))
1191
1192 @classmethod
1193 def insert_data(cls, connection):

Callers 2

insert_dataMethod · 0.70
goMethod · 0.70

Calls 5

ColumnClass · 0.90
IdentityClass · 0.90
ForeignKeyClass · 0.90
query_expressionFunction · 0.90
StringClass · 0.90

Tested by 2

insert_dataMethod · 0.56
goMethod · 0.56