(self)
| 1997 | return count |
| 1998 | |
| 1999 | def __await__(self) -> Generator[Any, Any, int]: |
| 2000 | self._choose_db_if_not_chosen(True) |
| 2001 | queries = self._make_queries() |
| 2002 | return self._execute_many(queries).__await__() |
| 2003 | |
| 2004 | def sql(self, params_inline=False) -> str: |
| 2005 | self._choose_db_if_not_chosen() |
nothing calls this directly
no test coverage detected