(
self,
connection: Connection,
distilled_params: _CoreMultiExecuteParams,
execution_options: CoreExecuteOptionsParameter,
)
| 3704 | ) |
| 3705 | |
| 3706 | def _execute_on_scalar( |
| 3707 | self, |
| 3708 | connection: Connection, |
| 3709 | distilled_params: _CoreMultiExecuteParams, |
| 3710 | execution_options: CoreExecuteOptionsParameter, |
| 3711 | ) -> Any: |
| 3712 | return connection._execute_default( |
| 3713 | self, distilled_params, execution_options |
| 3714 | ) |
| 3715 | |
| 3716 | |
| 3717 | class ColumnDefault(DefaultGenerator, ABC): |
no test coverage detected