MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _execute_function

Method _execute_function

lib/sqlalchemy/engine/base.py:1454–1464  ·  view source on GitHub ↗

Execute a sql.FunctionElement object.

(
        self,
        func: FunctionElement[Any],
        distilled_parameters: _CoreMultiExecuteParams,
        execution_options: CoreExecuteOptionsParameter,
    )

Source from the content-addressed store, hash-verified

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,

Callers 1

Calls 2

selectMethod · 0.45

Tested by

no test coverage detected