Execute a sql.FunctionElement object.
(
self,
func: FunctionElement[Any],
distilled_parameters: _CoreMultiExecuteParams,
execution_options: CoreExecuteOptionsParameter,
)
| 1452 | ) |
| 1453 | |
| 1454 | def _execute_function( |
| 1455 | self, |
| 1456 | func: FunctionElement[Any], |
| 1457 | distilled_parameters: _CoreMultiExecuteParams, |
| 1458 | execution_options: CoreExecuteOptionsParameter, |
| 1459 | ) -> CursorResult[Unpack[TupleAny]]: |
| 1460 | """Execute a sql.FunctionElement object.""" |
| 1461 | |
| 1462 | return self._execute_clauseelement( |
| 1463 | func.select(), distilled_parameters, execution_options |
| 1464 | ) |
| 1465 | |
| 1466 | def _execute_default( |
| 1467 | self, |
no test coverage detected