return a callable that will process a bulk INSERT value
(self, key: str)
| 905 | return [(cast("_DMLColumnArgument", self.__clause_element__()), value)] |
| 906 | |
| 907 | def _bulk_dml_setter(self, key: str) -> Optional[Callable[..., Any]]: |
| 908 | """return a callable that will process a bulk INSERT value""" |
| 909 | |
| 910 | return None |
| 911 | |
| 912 | def adapt_to_entity( |
| 913 | self, adapt_to_entity: AliasedInsp[Any] |
no outgoing calls
no test coverage detected