MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / PointData

Class PointData

test/ext/test_associationproxy.py:2515–2526  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2513 )
2514
2515 class PointData(ComparableEntity, cls.DeclarativeBasic):
2516 __tablename__ = "point"
2517
2518 id = Column(
2519 Integer, primary_key=True, test_needs_autoincrement=True
2520 )
2521 graph_id = Column(ForeignKey("graph.id"))
2522
2523 x1 = Column(Integer)
2524 y1 = Column(Integer)
2525
2526 point = composite(Point, x1, y1)
2527
2528 return Point, Graph, PointData
2529

Callers 3

GraphClass · 0.85
test_appendMethod · 0.85
test_accessMethod · 0.85

Calls 3

ColumnClass · 0.90
ForeignKeyClass · 0.90
compositeFunction · 0.90

Tested by 2

test_appendMethod · 0.68
test_accessMethod · 0.68