| 33 | |
| 34 | |
| 35 | class A(Base): |
| 36 | __tablename__ = "a" |
| 37 | |
| 38 | id: Mapped[int] = mapped_column(primary_key=True) |
| 39 | data: Mapped[str] |
| 40 | |
| 41 | def __repr__(self): |
| 42 | id_, data = self.id, self.data |
| 43 | return f"A({id_=}, {data=})" |
| 44 | |
| 45 | |
| 46 | async def run_out_of_band(async_sessionmaker, statement, merge_results=True): |
no test coverage detected