dialect makes use of await_() to invoke operations on the DBAPI.
(self)
| 1683 | |
| 1684 | @property |
| 1685 | def async_dialect(self): |
| 1686 | """dialect makes use of await_() to invoke operations on the DBAPI.""" |
| 1687 | |
| 1688 | return self.asyncio + only_on( |
| 1689 | LambdaPredicate( |
| 1690 | lambda config: config.db.dialect.is_async, |
| 1691 | "Async dialect required", |
| 1692 | ) |
| 1693 | ) |
| 1694 | |
| 1695 | @property |
| 1696 | def async_dialect_with_await_close(self): |
nothing calls this directly
no test coverage detected