Get the non-SQL options which will take effect during execution. .. seealso:: :meth:`_query.Query.execution_options` :meth:`_sql.Select.get_execution_options` - v2 comparable method.
(self)
| 1708 | return fn(self) |
| 1709 | |
| 1710 | def get_execution_options(self) -> _ImmutableExecuteOptions: |
| 1711 | """Get the non-SQL options which will take effect during execution. |
| 1712 | |
| 1713 | .. seealso:: |
| 1714 | |
| 1715 | :meth:`_query.Query.execution_options` |
| 1716 | |
| 1717 | :meth:`_sql.Select.get_execution_options` - v2 comparable method. |
| 1718 | |
| 1719 | """ |
| 1720 | return self._execution_options |
| 1721 | |
| 1722 | @overload |
| 1723 | def execution_options( |
no outgoing calls