blob: fa1b16a2a67ee0b6d463cae36782951bd7ea6a9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
import dataclasses
from sqlalchemy import select
from sqlalchemy.orm import composite
from sqlalchemy.orm import DeclarativeBase
from sqlalchemy.orm import Mapped
from sqlalchemy.orm import mapped_column
class Base(DeclarativeBase):
pass
@dataclasses.dataclass
class Point:
def __init__(self, x: int, y: int):
self.x = x
self.y = y
class Vertex(Base):
__tablename__ = "vertices"
id: Mapped[int] = mapped_column(primary_key=True)
x1: Mapped[int]
y1: Mapped[int]
x2: Mapped[int]
y2: Mapped[int]
# inferred from right hand side
start = composite(Point, "x1", "y1")
# taken from left hand side
end: Mapped[Point] = composite(Point, "x2", "y2")
v1 = Vertex(start=Point(3, 4), end=Point(5, 6))
stmt = select(Vertex).where(Vertex.start.in_([Point(3, 4)]))
# EXPECTED_TYPE: Select[Tuple[Vertex]]
reveal_type(stmt)
# EXPECTED_TYPE: composite.Point
reveal_type(v1.start)
# EXPECTED_TYPE: composite.Point
reveal_type(v1.end)
# EXPECTED_TYPE: int
reveal_type(v1.end.y)
|