Source code for pystratum_pgsql.wrapper.PgSqlFunctionsWrapper

from typing import Any, Dict

from pystratum_common.wrapper.FunctionsWrapper import FunctionsWrapper

from pystratum_pgsql.wrapper.PgSqlWrapper import PgSqlWrapper


[docs]class PgSqlFunctionsWrapper(PgSqlWrapper, FunctionsWrapper): """ Wrapper method generator for stored functions. """ # ------------------------------------------------------------------------------------------------------------------ def _write_result_handler(self, routine: Dict[str, Any]) -> None: self._write_line('return self.execute_singleton1({0!s})'.format(self._generate_command(routine)))
# ----------------------------------------------------------------------------------------------------------------------