(
self,
dialect: Dialect,
*,
compiled_cache: Optional[CompiledCacheType],
column_keys: List[str],
for_executemany: bool = False,
schema_translate_map: Optional[SchemaTranslateMapType] = None,
**kw: Any,
)
| 1358 | __visit_name__: str |
| 1359 | |
| 1360 | def _compile_w_cache( |
| 1361 | self, |
| 1362 | dialect: Dialect, |
| 1363 | *, |
| 1364 | compiled_cache: Optional[CompiledCacheType], |
| 1365 | column_keys: List[str], |
| 1366 | for_executemany: bool = False, |
| 1367 | schema_translate_map: Optional[SchemaTranslateMapType] = None, |
| 1368 | **kw: Any, |
| 1369 | ) -> tuple[ |
| 1370 | Compiled, |
| 1371 | Sequence[BindParameter[Any]] | None, |
| 1372 | _CoreSingleExecuteParams | None, |
| 1373 | CacheStats, |
| 1374 | ]: ... |
| 1375 | |
| 1376 | def _execute_on_connection( |
| 1377 | self, |
no outgoing calls
no test coverage detected